/* =========================
STYLE.CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#f8f3ed;
    overflow-x:hidden;
}

/* NAVBAR */

header{
    width:100%;
    background:#f7f2ec;
    box-shadow:0 4px 15px rgba(0,0,0,0.03);
}

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 90px;
}

.logo h1{
    font-family:'Cormorant Garamond', serif;
    font-size:58px;
    line-height:50px;
    color:#c79a58;
    font-weight:600;
}

.logo span{
    display:block;
    font-size:30px;
    letter-spacing:2px;
    color:#1e1a17;
    margin-top:-5px;
    font-family:'Cormorant Garamond', serif;
}

.logo p{
    color:#8e7965;
    letter-spacing:3px;
    font-size:11px;
    margin-top:4px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#2d2621;
    font-size:12px;
    letter-spacing:1px;
    position:relative;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:1.5px;
    background:#c79a58;
    transition:0.4s;
}

.nav-links a:hover::after,
.nav-links .active::after{
    width:100%;
}

.nav-links a:hover,
.nav-links .active{
    color:#c79a58;
}

.book-btn{
    text-decoration:none;
    background:linear-gradient(135deg,#d4a15f,#bc8c4c);
    color:white;
    padding:16px 34px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    transition:0.4s;
}

.book-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(188,140,76,0.25);
}

/* HERO FULL BACKGROUND */

.hero{
    width:100%;
    min-height:100vh;

    background-image:url("../images/hero.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;

    display:flex;
    align-items:center;
}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(248,243,237,0.92) 35%,
        rgba(248,243,237,0.30) 65%,
        rgba(248,243,237,0.05) 100%
    );
}

/* CONTENT */

.hero-content{
    width:100%;
    position:relative;
    z-index:2;
    padding:0 90px;
}

.hero-text{
    width:50%;
}

/* WELCOME */

.welcome-line{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.welcome-line span{
    width:120px;
    height:1px;
    background:#c79a58;
}

.hero-text h4{
    color:#7f674f;
    letter-spacing:6px;
    font-size:16px;
    font-weight:400;
}

/* TITLE */

.hero-text h1{
    font-family:'Cormorant Garamond', serif;
    font-size:80px;
    line-height:80px;
    color:#2f2219;
    font-weight:500;
}

.hero-text h2{
    font-family:'Allura', cursive;
    font-size:95px;
    color:#c79a58;
    margin-top:-10px;
    margin-left:20px;
    font-weight:400;
}

/* PARAGRAPH */

.hero-text p{
    width:75%;
    margin-top:18px;
    line-height:30px;
    font-size:16px;
}

/* BUTTON */

.hero-btn{
    display:inline-block;
    text-decoration:none;
    background:linear-gradient(135deg,#d4a15f,#bc8c4c);
    color:white;
    padding:18px 42px;
    border-radius:50px;
    letter-spacing:1px;
    transition:0.4s;
}

.hero-btn:hover{
    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(188,140,76,0.3);
}

/* FEATURES */

.features{
    width:100%;
    background:#f6f1ea;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:55px 70px;
    gap:30px;
}

.feature-box{
    text-align:center;
    border-right:1px solid rgba(0,0,0,0.08);
    padding:10px 25px;
}

.feature-box:last-child{
    border-right:none;
}

.feature-icon{
    width:95px;
    height:95px;
    margin:auto;
    border-radius:50%;
    background:#efe6dc;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.feature-icon i{
    color:#c79a58;
    font-size:42px;
}

.feature-box h3{
    color:#2f2219;
    letter-spacing:2px;
    font-size:20px;
    margin-bottom:18px;
    font-weight:500;
}

.feature-box p{
    color:#6e5c4d;
    line-height:32px;
    font-size:17px;
}
/* =========================
PREMIUM CATEGORY PAGE
========================= */

.categories-hero{
    width:100%;
    min-height:100vh;
    background:#f8f3ed;
    padding:60px 80px;
}

.categories-title{
    text-align:center;
    margin-bottom:70px;
}

.categories-title h4{
    color:#c79a58;
    letter-spacing:5px;
    margin-bottom:20px;
    font-weight:500;
}

.categories-title h1{
    font-family:'Cormorant Garamond', serif;
    font-size:70px;
    color:#2f2219;
    line-height:90px;
    font-weight:500;
    letter-spacing:2px;
}
.categories-title h2{
    font-family:'Allura', cursive;
    font-size:110px;
    color:#c79a58;
    font-weight:400;
    margin-top:-25px;
    letter-spacing:2px;

    text-shadow:
    0 5px 15px rgba(199,154,88,0.20);

    line-height:100px;
}


.categories-title p{
    margin-top:25px;
    color:#6e5c4d;
    font-size:20px;
    line-height:35px;
}
/* CATEGORY CONTAINER */

.category-container{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}
/* CATEGORY CARD */

.category-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    text-decoration:none;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    display:block;
}
.category-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.category-card img{
    width:100%;
    height:330px;
    object-fit:cover;
}

/* CATEGORY INFO */

.category-info{
    padding:25px;
}

.category-info h3{
    font-family:'Cormorant Garamond', serif;
    color:#2f2219;
    font-size:28px;
}

.category-info p{
    color:#7a6858;
    font-size:14px;
    line-height:25px;
}
/* BOOKING */

.booking-section{
    width:100%;
    min-height:100vh;
    background:#fffaf5;
    padding:100px 90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.booking-left{
    width:45%;
}

.booking-left h4{
    color:#c79a58;
    letter-spacing:5px;
    margin-bottom:20px;
}

.booking-left h1{
    font-family:'Cormorant Garamond', serif;
    font-size:65px;
    line-height:70px;
    color:#2f2219;
    margin-bottom:25px;
}

.booking-left p{
    color:#6e5c4d;
    line-height:32px;
    font-size:17px;
}

.booking-form{
    width:50%;
    background:white;
    padding:50px;
    border-radius:35px;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.booking-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.booking-form input,
.booking-form select{
    width:100%;
    padding:18px;
    border:none;
    background:#f7f2ec;
    border-radius:15px;
    font-size:15px;
    outline:none;
}

.booking-form button{
    margin-top:10px;
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#d4a15f,#bc8c4c);

    color:white;
    cursor:pointer;
}
/* ABOUT */

.about-section{
    width:100%;
    min-height:100vh;
    background:#f8f3ed;
    padding:100px 90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.about-image{
    width:45%;
    height:700px;

    background:
    linear-gradient(
        rgba(255,248,240,0.10),
        rgba(255,248,240,0.10)
    ),
    url('../images/hero.jpeg');

    background-size:cover;
    background-position:center;

    border-radius:35px;

    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}
.about-text{
    width:50%;
}
.about-text h4{
    color:#c79a58;
    letter-spacing:5px;
    margin-bottom:20px;
}
.about-text h1{
    font-family:'Cormorant Garamond', serif;
    font-size:65px;
    line-height:70px;
    color:#2f2219;
    margin-bottom:30px;
}

.about-text p{
    color:#6e5c4d;
    line-height:34px;
    font-size:17px;
    margin-bottom:40px;
}

.about-info{
    display:flex;
    gap:50px;
}

.info-box h2{
    font-size:60px;
    color:#c79a58;
    font-family:'Cormorant Garamond', serif;
}
/* CONTACT */

.contact-section{
    width:100%;
    background:#fffaf5;
    padding:100px 90px;
    text-align:center;
}

.contact-title h4{
    color:#c79a58;
    letter-spacing:5px;
    margin-bottom:20px;
}

.contact-title h1{
    font-family:'Cormorant Garamond', serif;
    font-size:65px;
    color:#2f2219;
    margin-bottom:20px;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.contact-card{
    background:white;
    padding:50px 30px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:35px;
    color:#2f2219;
    margin-bottom:15px;
}
/* =========================
RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#f8f3ed;
    overflow-x:hidden;
}

/* =========================
DETAIL GALLERY (FINAL FIX)
========================= */

.detail-gallery{
    width:100%;
    min-height:100vh;
    background:#f8f3ed;
    padding:70px 90px;
}

.detail-title{
    text-align:center;
    margin-bottom:50px;
}

.detail-title h1{
    font-family:'Cormorant Garamond', serif;
    font-size:60px;
    color:#2f2219;
    margin-bottom:10px;
}

.detail-title p{
    color:#7c6b5c;
    font-size:16px;
}

/* GRID */
.detail-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.detail-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.4s ease;
    cursor:pointer;
}

.detail-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */
.detail-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.detail-card:hover img{
    transform:scale(1.05);
}

/* =========================================
   SITE FOOTER (PREMIUM DESIGN)
   ========================================= */

.site-footer {
    background: #1e1a17;
    color: #e2d7cc;
    padding: 80px 90px 40px;
    font-family: 'Montserrat', sans-serif;
    border-top: 3px solid #bc8c4c;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.6fr 2.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand .logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    line-height: 1;
    color: #c79a58;
    font-weight: 600;
}

.footer-brand .logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: #e2d7cc;
    display: block;
    margin-top: 2px;
}

.brand-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #bfaea0;
    margin: 20px 0 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(226, 215, 204, 0.2);
    color: #e2d7cc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #bc8c4c;
    border-color: #bc8c4c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(188, 140, 76, 0.3);
}

/* Footer Columns Header */
.site-footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #c79a58;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 1px;
    background: #bc8c4c;
}

/* Links Column */
.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bfaea0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '✦';
    font-size: 8px;
    margin-right: 8px;
    color: #bc8c4c;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-links a:hover {
    color: #e2d7cc;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.footer-contact p {
    font-size: 13px;
    color: #bfaea0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact p i {
    color: #c79a58;
    font-size: 15px;
    width: 15px;
    text-align: center;
}

/* Opening Hours Column */
.footer-hours .hours-row {
    font-size: 13px;
    color: #bfaea0;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours .hours-row:last-child {
    border-bottom: none;
}

.footer-hours .hours-row.closed span {
    color: #bc8c4c;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #8c7f70;
    letter-spacing: 0.5px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .site-footer {
        padding: 60px 40px 30px;
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .footer-hours {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-hours {
        grid-column: auto;
    }
    
    .site-footer h4 {
        margin-bottom: 15px;
    }
}

