/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= GLOBAL ================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f8f6f2;
    color: #222;
}

/* ================= NAVBAR ================= */

.navbar{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px 7%;
    background: rgba(10,15,25,0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= LOGO ================= */

.logo a{
    text-decoration: none;
    color: white;
    font-size: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.logo span{
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    margin-top: 8px;
    color: #d4af37;
    font-family: 'Poppins', sans-serif;
}

/* ================= NAV LINKS ================= */

.nav-links{
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a{
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-links li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.nav-links li a:hover{
    color: #d4af37;
}

.nav-links li a:hover::after{
    width: 100%;
}

/* ================= BUTTONS ================= */

.nav-right{
    display: flex;
    align-items: center;
    gap: 16px;
}

.login{
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 12px 24px;
    border-radius: 14px;
    transition: 0.3s;
}

.login:hover{
    background: rgba(255,255,255,0.08);
}

.book-btn{
    text-decoration: none;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f2d57c
    );
    color: black;
    padding: 13px 28px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.book-btn:hover{
    transform: translateY(-3px);
}

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

.hero{
    width: 100%;
    height: 100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("assets/images/421.png");

    background-size: cover;
    background-position: center;

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

    text-align: center;
    padding: 0 20px;
}

.hero-text{
    max-width: 900px;
    color: white;
}

.hero-subtitle{
    font-size: 50px;
    color: #d4af37;
    font-family: cursive;
}

.hero-text h1{
    font-size: 88px;
    line-height: 1;
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
}

.hero-divider{
    width: 160px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto;
}

.hero-text p{
    font-size: 22px;
    color: #f1f1f1;
    margin-bottom: 35px;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f3d77c
    );
    color: black;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.hero-btn:hover{
    transform: translateY(-3px);
}

/* ================= ABOUT ================= */

.about{
    padding: 120px 8%;
    background: #f8f6f2;
}

.about-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h5{
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 18px;
}

.about-text h2{
    font-size: 70px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.about-text p{
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.about-btn{
    display: inline-block;
    text-decoration: none;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 14px 32px;
    border-radius: 10px;
    transition: 0.3s;
}

.about-btn:hover{
    background: #d4af37;
    color: white;
}

.about-images{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.4s;
}

.about-images img:hover{
    transform: scale(1.03);
}

/* ================= AMENITIES ================= */

.amenities{
    padding: 100px 8%;
    background: white;
    text-align: center;
}

.section-title{
    font-size: 65px;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.section-subtitle{
    color: #777;
    margin-bottom: 60px;
}

.amenities-grid{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.amenity-card{
    background: #fafafa;
    padding: 40px 20px;
    border-radius: 20px;
    transition: 0.4s;
}

.amenity-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ================= GALLERY ================= */

.gallery-section{
    width: 100%;
    padding: 100px 7%;
    background: #f8f6f2;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 28px;
}

.gallery-item{
    width: 100%;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: black;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.gallery-item img,
.video-card video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.30)
    );
    z-index: 1;
}

.gallery-item:hover{
    transform: translateY(-8px);
}

.gallery-item:hover img,
.gallery-item:hover video{
    transform: scale(1.08);
}

/* ================= BOOKING PAGE ================= */

.booking-page{
    background: #111;
}

/* HERO SECTION */

.booking-hero{

    width: 100%;
    min-height: 100vh;

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

    padding: 140px 7% 80px;

    background:
    linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    ),
    url("assets/images/421.png");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* MAIN CONTAINER */

.booking-wrapper{

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

/* LEFT SIDE TEXT */

.booking-left{
    color: white;
}

.booking-left h5{
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 12px;
}

.booking-left h1{

    font-size: 82px;

    line-height: 0.95;

    margin-bottom: 24px;

    font-family: 'Cormorant Garamond', serif;

    color: white;
}

.booking-left p{

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.88);

    margin-bottom: 28px;
}

.booking-features{
    list-style: none;
}

.booking-features li{

    margin-bottom: 16px;

    color: white;

    font-size: 17px;
}

/* RIGHT SIDE FORM */

.booking-card-modern{

    width: 100%;

    max-width: 650px;

    margin-left: auto;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 30px;

    padding: 45px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.booking-card-modern h2{

    font-size: 54px;

    color: white;

    text-align: center;

    margin-bottom: 12px;

    font-family: 'Cormorant Garamond', serif;
}

.booking-subtitle{

    text-align: center;

    color: rgba(255,255,255,0.8);

    margin-bottom: 35px;
}

.booking-form{
    width: 100%;
}

.form-row{
    display: flex;
    gap: 20px;
}

.form-group{
    width: 100%;
    margin-bottom: 22px;
}

.form-group label{

    display: block;

    color: white;

    margin-bottom: 10px;

    font-size: 14px;

    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea{

    width: 100%;

    padding: 17px 18px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 14px;

    background: rgba(255,255,255,0.08);

    color: white;

    font-size: 15px;

    outline: none;

    transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: rgba(255,255,255,0.65);
}

.form-group select option{
    color: black;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color: #d4af37;

    background: rgba(255,255,255,0.12);

    box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.book-btn-modern{

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #d4af37,
        #f3d77c
    );

    color: black;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.4s ease;

    letter-spacing: 1px;
}

.book-btn-modern:hover{

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* ================= CTA ================= */

.cta{
    padding: 120px 8%;
    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("assets/images/017.jpeg");

    background-size: cover;
    background-position: center;

    text-align: center;
    color: white;
}

.cta h2{
    font-size: 72px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.cta p{
    font-size: 20px;
    margin-bottom: 35px;
}

/* ================= FOOTER ================= */

.main-footer{
    background: #0e1713;
    color: white;
    padding: 80px 8% 30px;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 50px;
}

.footer-column h3{
    margin-bottom: 25px;
    font-size: 24px;
}

.footer-column p,
.footer-column a{
    color: #cccccc;
    text-decoration: none;
    line-height: 2;
}

.footer-column ul{
    list-style: none;
}

.footer-bottom{
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    color: #aaa;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .hero-text h1{
        font-size: 72px;
    }

    .booking-left h1{
        font-size: 64px;
    }

    .amenities-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .footer-container{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:992px){

    .about-container,
    .booking-wrapper{
        grid-template-columns: 1fr;
    }

    .booking-left{
        text-align: center;
    }

    .booking-card-modern{
        margin: auto;
    }

    .hero-text h1{
        font-size: 60px;
    }
}

@media(max-width:768px){

    .navbar{
        padding: 18px 5%;
    }

    .nav-container{
        flex-direction: column;
        gap: 20px;
    }

    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .nav-right{
        flex-direction: column;
    }

    .hero-text h1,
    .booking-left h1{
        font-size: 48px;
    }

    .about-text h2,
    .section-title,
    .cta h2{
        font-size: 46px;
    }

    .amenities-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .footer-container{
        grid-template-columns: 1fr;
    }

    .form-row{
        flex-direction: column;
        gap: 0;
    }

    .booking-card-modern{
        padding: 35px 25px;
    }
}

@media(max-width:480px){

    .hero-text h1,
    .booking-left h1{
        font-size: 38px;
    }

    .booking-card-modern h2{
        font-size: 36px;
    }

    .gallery-item{
        height: 220px;
    }

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

    .logo a{
        font-size: 30px;
    }
}

/* ================= NEW ROOMS PAGE ================= */

.rooms-hero-new{

    width: 100%;
    height: 100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.60),
        rgba(0,0,0,0.60)
    ),
    url("assets/images/017.jpeg");

    background-size: cover;
    background-position: center;

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

    text-align: center;

    position: relative;
}

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

.rooms-hero-content-new{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.rooms-hero-content-new h4{

    color: #d4a437;

    font-size: 28px;

    margin-bottom: 15px;

    letter-spacing: 2px;
}

.rooms-hero-content-new h1{

    font-size: 90px;

    line-height: 1;

    margin-bottom: 25px;

    font-family: 'Cormorant Garamond', serif;
}

.rooms-hero-content-new p{

    font-size: 22px;

    color: #f1f1f1;
}

/* SECTION */

.room-category-section{

    padding: 110px 7%;

    background: #f8f6f2;
}

.dark-section{
    background: #111915;
}

/* HEADING */

.category-heading{
    text-align: center;
    margin-bottom: 60px;
}

.category-tag{

    display: inline-block;

    background: #d4a437;

    color: white;

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 14px;

    margin-bottom: 20px;
}

.category-heading h2{

    font-size: 65px;

    margin-bottom: 20px;

    font-family: 'Cormorant Garamond', serif;
}

.category-heading p{

    font-size: 18px;

    color: #666;

    max-width: 750px;

    margin: auto;

    line-height: 1.8;
}

.dark-section .category-heading h2,
.dark-section .category-heading p{
    color: white;
}

/* IMAGE GRID */

.room-gallery-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 28px;

    margin-bottom: 60px;
}

.room-image-card{

    height: 380px;

    overflow: hidden;

    border-radius: 30px;

    position: relative;

    box-shadow: 0 15px 35px rgba(0,0,0,0.18);

    cursor: pointer;
}

.room-image-card img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.room-image-card:hover img{

    transform: scale(1.08);
}

/* INFO BOX */

.room-info-box{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    background: white;

    padding: 45px;

    border-radius: 30px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.dark-section .room-info-box{
    background: #1a241f;
}

.room-info-left{
    flex: 1;
}

.room-info-left h3{

    font-size: 42px;

    margin-bottom: 20px;

    font-family: 'Cormorant Garamond', serif;
}

.dark-section .room-info-left h3{
    color: white;
}

.room-info-left p{

    font-size: 17px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 25px;
}

.dark-section .room-info-left p{
    color: #cccccc;
}

/* FEATURES */

.feature-list{

    display: flex;

    flex-wrap: wrap;

    gap: 16px;
}

.feature-list span{

    background: rgba(212,164,55,0.12);

    color: #d4a437;

    padding: 12px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 500;
}

/* PRICE */

.room-info-right{

    min-width: 250px;

    text-align: center;
}

.room-info-right h2{

    font-size: 62px;

    color: #d4a437;

    margin-bottom: 10px;
}

.room-info-right p{

    color: #777;

    margin-bottom: 25px;

    font-size: 18px;
}

.dark-section .room-info-right p{
    color: #ccc;
}

/* BUTTON */

.room-book-btn{

    display: inline-block;

    text-decoration: none;

    background: #d4a437;

    color: white;

    padding: 16px 32px;

    border-radius: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}

.room-book-btn:hover{

    background: #bb8d27;

    transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .room-gallery-grid{
        grid-template-columns: 1fr 1fr;
    }

    .room-info-box{
        flex-direction: column;
        text-align: center;
    }

    .feature-list{
        justify-content: center;
    }

    .rooms-hero-content-new h1{
        font-size: 65px;
    }
}

@media(max-width:768px){

    .room-gallery-grid{
        grid-template-columns: 1fr;
    }

    .rooms-hero-content-new h1{
        font-size: 48px;
    }

    .category-heading h2{
        font-size: 42px;
    }

    .room-info-left h3{
        font-size: 34px;
    }

    .room-info-right h2{
        font-size: 48px;
    }

    .room-image-card{
        height: 300px;
    }
}

/* ================= CAFETERIA PAGE ================= */

.cafe-hero-new{

    width: 100%;
    height: 100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.60),
        rgba(0,0,0,0.60)
    ),
    url("assets/images/dining.jpg");

    background-size: cover;
    background-position: center;

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

    text-align: center;

    position: relative;
}

.cafe-overlay{

    position: absolute;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.25);
}

.cafe-hero-content{

    position: relative;
    z-index: 2;

    max-width: 850px;

    color: white;

    padding: 20px;
}

.cafe-hero-content h4{

    color: #d4a437;

    font-size: 28px;

    margin-bottom: 15px;

    letter-spacing: 2px;
}

.cafe-hero-content h1{

    font-size: 88px;

    line-height: 1;

    margin-bottom: 25px;

    font-family: 'Cormorant Garamond', serif;
}

.cafe-hero-content p{

    font-size: 22px;

    color: #f1f1f1;

    margin-bottom: 35px;

    line-height: 1.8;
}

/* ABOUT SECTION */

.cafe-about{

    padding: 110px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: #f8f6f2;
}

.section-tag{

    display: inline-block;

    background: rgba(212,164,55,0.12);

    color: #d4a437;

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 14px;

    margin-bottom: 25px;

    font-weight: 600;
}

.cafe-about-left h2{

    font-size: 70px;

    line-height: 1.1;

    margin-bottom: 25px;

    font-family: 'Cormorant Garamond', serif;
}

.cafe-about-left p{

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 30px;
}

.cafe-features{

    display: flex;

    flex-wrap: wrap;

    gap: 16px;
}

.cafe-features span{

    background: white;

    padding: 12px 18px;

    border-radius: 30px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    color: #444;

    font-size: 14px;
}

.cafe-about-right img{

    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.18);

    transition: 0.5s ease;
}

.cafe-about-right img:hover{

    transform: scale(1.03);
}

/* FOOD SECTION */

.food-section{

    padding: 110px 7%;

    background: #111915;
}

.section-center{
    text-align: center;
}

.food-section .section-title{
    color: white;
}

.food-section .section-subtitle{
    color: #cccccc;
}

.food-grid{

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.food-card{

    background: #1a241f;

    border-radius: 30px;

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.food-card:hover{

    transform: translateY(-10px);
}

.food-image{

    width: 100%;
    height: 320px;

    overflow: hidden;
}

.food-image img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.food-card:hover img{

    transform: scale(1.08);
}

.food-content{

    padding: 30px;
}

.food-content h3{

    color: white;

    font-size: 30px;

    margin-bottom: 15px;

    font-family: 'Cormorant Garamond', serif;
}

.food-content p{

    color: #cccccc;

    line-height: 1.8;
}

/* RESERVE SECTION */

.reserve-section{

    position: relative;

    padding: 120px 7%;

    background:
    linear-gradient(
        rgba(0,0,0,0.70),
        rgba(0,0,0,0.70)
    ),
    url("assets/images/017.jpeg");

    background-size: cover;
    background-position: center;

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

.reserve-overlay{

    position: absolute;

    width: 100%;
    height: 100%;
}

.reserve-card{

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 35px;

    padding: 50px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.reserve-card h2{

    font-size: 62px;

    color: white;

    margin-bottom: 15px;

    font-family: 'Cormorant Garamond', serif;
}

.reserve-card p{

    color: rgba(255,255,255,0.8);

    margin-bottom: 35px;

    line-height: 1.8;
}

.reserve-form{
    width: 100%;
}

.reserve-form .form-row{

    display: flex;

    gap: 20px;
}

.reserve-form .form-group{

    width: 100%;

    margin-bottom: 22px;

    text-align: left;
}

.reserve-form label{

    display: block;

    color: white;

    margin-bottom: 10px;

    font-size: 14px;
}

.reserve-form input{

    width: 100%;

    padding: 16px 18px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.08);

    color: white;

    outline: none;

    transition: 0.3s ease;
}

.reserve-form input:focus{

    border-color: #d4a437;

    box-shadow: 0 0 12px rgba(212,164,55,0.3);
}

.reserve-btn{

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #d4af37,
        #f3d77c
    );

    color: black;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    margin-top: 10px;

    transition: 0.4s ease;
}

.reserve-btn:hover{

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(212,164,55,0.35);
}

/* RESPONSIVE */

@media(max-width:992px){

    .cafe-about{
        grid-template-columns: 1fr;
    }

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

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

@media(max-width:768px){

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

    .reserve-form .form-row{
        flex-direction: column;
        gap: 0;
    }

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

    .cafe-about-left h2,
    .reserve-card h2{
        font-size: 42px;
    }

    .reserve-card{
        padding: 35px 25px;
    }
}

@media(max-width:480px){

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

    .cafe-about-left h2,
    .reserve-card h2{
        font-size: 34px;
    }

    .food-image{
        height: 250px;
    }
}

/* ================= OWNER SECTION ================= */

.owner-section{

    width: 100%;
    padding: 100px 8%;
    background: #f8f6f2;

    text-align: center;
}

.owner-card{

    max-width: 1000px;

    margin: 60px auto 0;

    display: flex;
    align-items: center;
    gap: 50px;

    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    transition: 0.4s ease;
}

.owner-card:hover{

    transform: translateY(-8px);
}

.owner-image{

    flex: 1;
}

.owner-image img{

    width: 100%;
    max-width: 320px;

    height: 380px;

    object-fit: cover;

    border-radius: 24px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.owner-content{

    flex: 1.5;

    text-align: left;
}

.owner-content h3{

    font-size: 42px;

    margin-bottom: 10px;

    font-family: 'Cormorant Garamond', serif;
}

.owner-content span{

    display: inline-block;

    margin-bottom: 20px;

    color: #d4a437;

    font-weight: 600;

    letter-spacing: 1px;
}

.owner-content p{

    font-size: 17px;

    line-height: 1.9;

    color: #555;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .owner-card{

        flex-direction: column;

        text-align: center;

        padding: 30px 20px;
    }

    .owner-content{

        text-align: center;
    }

    .owner-content h3{

        font-size: 34px;
    }

    .owner-image img{

        height: 320px;
    }
}