body{
background:#0D0D0D;
color:#fff;
font-family:Poppins;
}
body {
    padding-top: 90px; /* navbar height ke according */
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.navbar{
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
}

.btn-gold{
background:#C8A96A;
color:#000;
padding:12px 28px;
border:none;
}

.card{
background:#1A1A1A;
border:1px solid #C8A96A30;
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

body{
font-family:'Poppins',sans-serif;
background:#0d0d0d;
color:white;
}

.brand-logo{
font-family:'Playfair Display',serif;
font-size:28px;
color:#C8A96A !important;
}

.premium-navbar{
background:#000;
padding:15px 0;
position:fixed;
top:0;
width:100%;
z-index:9999;
}

.navbar-nav .nav-link{
color:#C8A96A !important;
margin-right:20px;
font-weight:500;
}

.navbar-nav .nav-link:hover{
color:#ffffff !important;
}

.navbar-brand{
color:#C8A96A !important;
font-size:26px;
font-family:'Playfair Display',serif;
}

.btn-gold{
background:#C8A96A;
color:#000;
padding:10px 22px;
border-radius:30px;
font-weight:500;
}

.btn-gold:hover{
background:#b89554;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/assests/images/home_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay for luxury feel */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

/* Content */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 20px;
}

/* Buttons */
.hero-buttons .btn {
    padding: 12px 25px;
    background: #c9a96e;
    color: #000;
    text-decoration: none;
    margin: 5px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    border: 1px solid #c9a96e;
    color: #c9a96e;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

.content-wrapper {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

/* SECTION WRAPPER */
.blur-bg-section {
    position: relative;
    padding: 100px 20px;
    background: #fff;
    overflow: hidden;
}

/* PNG BLUR IMAGE */
.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('/assests/images/blur_bg.jpeg') no-repeat center;
    background-size: contain;

    opacity: 0.3; /* subtle */
    z-index: 0;
}

/* CONTENT ABOVE */
.blur-bg-section .content {
    position: relative;
    z-index: 2;
}

.blur-bg-section .section-title,
.blur-bg-section .section-subtitle {
    text-align: center;
}

.blur-bg-section .container {
    text-align: center;
    color: #000;
}


/* GRID */
.cafe-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

}

/* CARDS */
.cafe-card {
    background: #fff;
    padding: 30px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    transform: translateY(40px);
    opacity: 0;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

/* CLICK / PRESS EFFECT */
.cafe-card:active {
    transform: scale(0.96);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* HOVER EFFECT */
.cafe-card:hover {
    transform: translateY(-8px); /* halka upar */
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.cafe-card.show{
    transform: translateY(0);
    opacity: 1;
}

.cafe-card:nth-child(2){
    transition-delay: 0.2s;
}

.cafe-card:nth-child(3){
    transition-delay: 0.4s;
}

/*safe white section*/
blur-bg-section{
    background:#fff;
    padding:100px 20px;
    position:relative;
}

/*text-fix*/
.blur-bg-section .section-tittle{
    color:#111;
}

.blur-bg-section .section-subtittle{
    color:#666;
}

/*cards*/
.blur-bg-section .cafe-card{
    background:#fff;
    color:#111;
    border-radius:12px;
    padding:25px;
}

/* PREMIUM TOUCH */
.gold {
    border: 2px solid #c9a96e;
}

.premium {
    border: 2px solid #000;
}

/* base smooth */
.cafe-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

/* hover animation */
.cafe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.cafe-card h3,
.cafe-card p {
    transition: 0.3s ease;
}

.cafe-card:hover h3 {
    color: #C8A96A;
}

/* title spacing */
.food-section .section-title {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
    color:#000;
}

/* subtitle spacing */
.food-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
    color:#000;
}

.food-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* button center */
.food-btn {
    text-align: center;
    margin-top: 40px;
}

/* button hover */
.food-btn .btn-gold {
    transition: 0.3s;
}

.food-btn .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200,169,106,0.3);
}

/* ===== SECTION ===== */
.food-section {
    background: #fff;
    padding: 100px 20px;
}

/* ===== GRID ===== */
.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== CARD ===== */
.food-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;

    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition: all 0.35s ease;
}

/* HOVER */
.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* TEXT */
.food-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
}

.food-card p {
    color: #666;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .food-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SECTION ===== */
.hospitality-section {
    background: #fff;
    padding: 100px 20px;
}

/* FLEX LAYOUT */
.hospitality-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT SIDE */
.hospitality-left {
    max-width: 500px;
}

.hospitality-left h2 {
    font-size: 36px;
    color: #111;
    margin-bottom: 15px;
}

.hospitality-left p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.coming-text {
    color: #C8A96A;
    font-weight: 500;
}

/* RIGHT SIDE (SERVICES PILLS) */
.hospitality-right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 500px;
}

/* PILLS */
.service-pill {
    padding: 12px 18px;
    border-radius: 30px;
    background: #f5f5f5;
    color: #111;
    font-size: 14px;
    border: 1px solid #eee;

    transition: all 0.3s ease;
}

/* HOVER */
.service-pill:hover {
    background: #C8A96A;
    color: #000;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hospitality-flex {
        flex-direction: column;
        text-align: center;
    }

    .hospitality-right {
        justify-content: center;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #111, #000);
    padding: 100px 20px;
    text-align: center;
}

/* BOX */
.cta-box {
    max-width: 700px;
    margin: auto;
}

/* TEXT */
.cta-section h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline-dark {
    padding: 12px 25px;
    border: 1px solid #C8A96A;
    color: #C8A96A;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    background: #C8A96A;
    color: #000;
    transform: translateY(-3px);
}

/* GOLD BUTTON HOVER */
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200,169,106,0.3);
}

.cafe-categories {
    background: #fff;
}

/* BLOCK */
.cafe-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 10%;
}

/* REVERSE LAYOUT */
.reverse {
    flex-direction: row-reverse;
}

/* TEXT */
.cafe-content {
    max-width: 500px;
}

.cafe-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #111;
}

.cafe-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cafe-content ul {
    list-style: none;
    padding: 0;
}

.cafe-content ul li {
    margin-bottom: 8px;
    color: #444;
}

/* IMAGE */
.cafe-image img {
    width: 420px;
    border-radius: 16px;
    transition: 0.4s ease;
}

/* HOVER */
.cafe-block:hover img {
    transform: scale(1.05);
}

/* SILVER */
.silver-block {
    background: #fafafa;
}

/* GOLD */
.gold-block {
    background: #fff;
}

.gold-block h2 {
    color: #C8A96A;
}

/* PREMIUM */
.premium-block {
    background: linear-gradient(135deg, #111, #000);
}

.premium-block h2,
.premium-block p,
.premium-block li {
    color: #fff;
}

.premium-block ul li {
    color: #C8A96A; /* gold color */
    font-weight: 500;
}

.premium-block ul li {
    color: #C8A96A;
    text-shadow: 0 0 8px rgba(200,169,106,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cafe-block {
        flex-direction: column;
        text-align: center;
    }

    .cafe-image img {
        width: 100%;
    }
}

/* HERO */
.food-hero {
    background: #f8f8f8;
    padding: 120px 20px 80px;
    text-align: center;
}

.food-hero h1 {
    font-size: 42px;
    color: #111;
}

.food-hero p {
    color: #666;
    margin-top: 10px;
}

/* ABOUT */
.food-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 0;
}

.food-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.food-text ul {
    list-style: none;
    padding: 0;
}

.food-text ul li {
    margin-bottom: 8px;
    color: #444;
}

.food-img img {
    width: 400px;
    border-radius: 16px;
}

/* PRODUCTS */
.food-products {
    background: #fff;
    padding: 80px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    color:#444;
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* CTA */
.food-cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.food-cta h2 {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .food-flex{
        flex-direction: column;
    }

    .product-grid{
        grid-template-columns:1fr;
    }
}



.food-text ul li {
    color: #C8A96A;   /* gold */
    font-weight: 500;
}


/* SECTION */
.coming-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #111, #000);
    text-align: center;
}

/* CONTAINER */
.coming-container {
    max-width: 700px;
}

/* HEADING */
.coming-section h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
}

/* SUBTEXT */
.coming-subtitle {
    color: #bbb;
    margin-bottom: 25px;
}

/* BADGE */
.coming-badge {
    display: inline-block;
    background: #C8A96A;
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* SERVICES TAGS */
.coming-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.coming-services span {
    padding: 10px 16px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #333;
    transition: 0.3s;
}

/* HOVER */
.coming-services span:hover {
    background: #C8A96A;
    color: #000;
}

/* BUTTON */
.coming-section .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200,169,106,0.3);
}

/* ===== HERO FIX ===== */

.about-hero {
    background: #000; /* dark match */
    text-align: center;
    padding: 140px 20px 80px; /* ↑ TOP बढ़ाया (important) */
}

/* HEADING CENTER */
.about-hero h1 {
    font-size: 42px;
    color: #fff;
    text-align: center;
}

/* SUBTEXT CENTER */
.about-hero p {
    color: #aaa;
    text-align: center;
    max-width: 700px;
    margin: 10px auto 0;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 10%;
}

/* LEFT TEXT */
.about-text {
    flex: 1;
}

/* RIGHT IMAGE */
.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
}

.about-image img {
    transition: 0.4s;
}

.about-image img:hover {
    transform: scale(1.05);
}
@media(max-width:768px){
    .about-flex{
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        text-align: center;
    }
}

.about-founders {
    background: #111;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}


/* TEXT */
.founder-card h3 {
    margin-bottom: 5px;
}



/* SECTION TITLE */
.about-founders .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.founder-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* updated spacing */
    flex-wrap: wrap;
    margin-top: 40px;
}

/* CARD */
.founder-card {
    background: #1a1a1a;
    padding: 30px 25px;
    border-radius: 16px;
    width: 260px;
    text-align: center; /* center text */
    transition: 0.4s;
    border: 1px solid #222;
}

/* HOVER */
.founder-card:hover {
    transform: translateY(-10px);
    border-color: #C8A96A;
}

/* AVATAR (INITIALS) */
.founder-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    font-weight: 600;

    background: linear-gradient(135deg, #C8A96A, #b89554);
    color: #000;
}

/* TEXT */
.founder-card h3 {
    margin-bottom: 5px;
}

.founder-card p {
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .founder-grid{
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}

/* VISION */
.about-vision {
    text-align: center;
    padding: 80px 20px;
}

.vision-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.vision-points div {
    padding: 10px 20px;
    border: 1px solid #C8A96A;
    border-radius: 30px;
    color: #C8A96A;
}

/* EXPERIENCE */
.about-experience {
    background: #f9f9f9;
    color:#000;
}

/* EXPERIENCE */
.about-experience {
    background: #f9f9f9;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-flex{
        flex-direction: column;
        text-align: center;
    }

    .founder-grid{
        flex-direction: column;
    }
}

.contact-section {
    padding: 120px 20px;
    background: #f8f8f8;
}

/* GRID */
.contact-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #666;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

/* FORM */
.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 350px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    color:#000;
}

.contact-form textarea {
    height: 120px;
}

/* BUTTON */
.contact-form button {
    width: 100%;
}

.contact-hero {
    height: 350px;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=1600') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.contact-section {
    padding: 120px 20px;
    background: #f5f5f5;
    color: #111; /* 🔥 main fix */
}

.contact-info h2 {
    color: #111;
}

.contact-info p {
    color: #444;
}

.contact-info ul li {
    color: #333;
}

.contact-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.contact-hero-content h1 {
    font-size: 42px;
}

.contact-hero-content p {
    color: #ddd;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-grid{
        flex-direction: column;
    }

    .contact-form form{
        width: 100%;
    }
}

.site-footer{
background:#0f0f0f;
color:#ccc;
padding:80px 0 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding:0 20px;
}

.footer-logo{
color:#c9a35c;
font-size:28px;
margin-bottom:10px;
}

.footer-col h4{
color:white;
margin-bottom:15px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
font-size:14px;
}

.footer-col ul li a{
color:#ccc;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#c9a35c;
}

.footer-bottom{
text-align:center;
margin-top:50px;
border-top:1px solid #222;
padding-top:15px;
font-size:14px;
}