/* ===== ROOT & VARIABLES ===== */
:root {
    --primary-gold: #D4AF37;
    --dark-brown: #1a1410;
    --dark-bg: #0d0b09;
    --light-gold: #E8D4B8;
    --text-white: #FFFFFF;
    --text-gray: #B8B8B8;
    --accent-brown: #2a2420;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a1410f2;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.LOGO {
    position: relative;
    top: 10px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-white);
    text-decoration: none;
}

.logo-circle {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-size: 13px;
}

.contact-icon {
    font-size: 16px;
}

.phone-number {
    letter-spacing: 0.5px;
    
    color: #d4af37;
}
/* Tablet me BOOK NOW hide */

@media (min-width:768px) and (max-width:1024px){
.book-btn{
display:none !important;
}
}

/* VIDEO SECTION */

.video-section{
margin-top:50px;
padding:60px 15px;
}

.video-pretitle{
text-align:center;
}

.video-title{
text-align:center;
margin-bottom:25px;
}

.youtube-video{
width:100%;
max-width:950px;
margin:35px auto 0;
border:3px solid rgb(245,208,0);
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.35);
}

/* responsive ratio */
.youtube-video iframe{
width:100%;
aspect-ratio:16/9;
display:block;
border:0;
}

/* button */
.video-btn{
display:flex;
justify-content:center;
align-items:center;
width:220px;
height:58px;
margin:35px auto 0;
border:2px solid rgb(245,208,0);
border-radius:10px;
color:rgb(245,208,0);
font-weight:700;
text-decoration:none;
transition:.3s;
}

.video-btn:hover{
background:rgb(245,208,0);
color:#111;
transform:translateY(-3px);
}

/* tablet */
@media (max-width:992px){

.video-section{
padding:50px 20px;
}

.youtube-video{
max-width:100%;
}

}

/* mobile */
@media (max-width:768px){

.video-section{
margin-top:30px;
padding:40px 14px;
}

.video-title{
font-size:34px;
line-height:1.2;
}

.youtube-video{
margin-top:25px;
border-width:2px;
border-radius:16px;
}

.video-btn{
width:180px;
height:52px;
font-size:16px;
margin-top:28px;
}

}

/* small mobile */
@media (max-width:480px){

.video-title{
font-size:26px;
}

.video-btn{
width:160px;
height:48px;
font-size:15px;
}

}
.book-btn {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.book-btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =========================
   ABOUT SECTION - EXACT LOOK
========================= */

.about{
    background:#000;
    padding:110px 0;
}

.about .container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

/* small top text */
.section-pretitle{
    color:#d4af37;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:500;
    margin-bottom:28px;
}

/* big title */
.section-title{
    color:#fff;
    font-size:58px;
    font-family:'Times New Roman', serif;
    font-weight:600;
    line-height:1.2;
    margin-bottom:30px;
    text-transform:uppercase;
}

/* location */
.section-location{
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    margin-bottom:28px;
}

/* paragraph */
.about-text{
    max-width:760px;
    margin:0 auto;
    color:#9d9d9d;
    font-size:20px;
    line-height:1.8;
    font-weight:400;
}

/* button */
.btn-outline{
    display:inline-block;
    margin-top:45px;
    padding:16px 38px;
    border: solid #d4af37;
    color:#d4af37;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:0.3s ease;

    
}
/* View More Button */

.view{
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 8px 18px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: rgb(245, 208, 0);
    border: 1px solid rgb(245, 208, 0);
    border-radius: 6px;
    transition: 0.3s ease;
}

.view:hover{
    background: rgb(245, 208, 0);
    color: #000;
}

.view:hover{
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 18px rgba(212,175,55,0.45);
    transform: translateY(-4px);
}

.view:active{
    transform: scale(0.96);
}
@media (max-width: 768px){
    .book-btn{
        display: none;
    }
}
/* Mobile Navbar Fix */
@media (max-width: 768px){

    .nav-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 15px;
        position: relative;
    }

    .LOGO img{
        width: 170px !important;
        height: auto;
    }

    .nav-contact,
    .book-btn{
        display: none;
    }

    .hamburger{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span{
        width: 28px;
        height: 3px;
        background: #f5d000;
        border-radius: 10px;
        transition: 0.3s;
    }

    .nav-menu{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
        display: none;
        gap: 15px;
        z-index: 999;
    }

    .nav-menu.active{
        display: flex;
    }

    .nav-menu li{
        list-style: none;
    }

    .nav-link{
        color: #fff;
        font-size: 16px;
        text-decoration: none;
    }
}
/* center button in gallery grid */
.gallery-grid .view{
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
}

/* mobile */
@media(max-width:768px){

.view{
    width: 100%;
    max-width: 220px;
    min-height: 58px;
    font-size: 14px;
    padding: 14px 22px;
}

}

.btn-outline:hover{
    background:#d4af37;
    color:#000;
}

/* divider */
.gold-divider{
    width:70px;
    height:2px;
    background:#d4af37;
    margin:38px auto 0;
    position:relative;
}

.gold-divider::before,
.gold-divider::after{
    content:'';
    width:6px;
    height:6px;
    background:#d4af37;
    border-radius:50%;
    position:absolute;
    top:-2px;
}

.gold-divider::before{
    left:-10px;
}

.gold-divider::after{
    right:-10px;
}

/* animation */
.reveal{
    opacity:1;
    transform:none;
}

/* mobile responsive */
@media(max-width:768px){

.about{
    padding:70px 20px;
}

.section-title{
    font-size:34px;
}

.about-text{
    font-size:16px;
    line-height:1.7;
}

.btn-outline{
    padding:14px 24px;
    font-size:13px;
}

}
/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('assets/kk-hotel-hero.jpg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.7) 0%, rgba(42, 36, 32, 0.5) 100%);
}

.hero-logo {
    position: absolute;
    right: 50px;
    top: 150px;
    font-size: 180px;
    color: rgba(212, 175, 55, 0.1);
    font-weight: bold;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.rating {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.star {
    display: inline-block;
    margin: 0 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.gold-text {
    color: var(--primary-gold);
    display: block;
    font-style: italic;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
}

.btn-primary:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ===== STATS SECTION ===== */
.stats-section {
position: relative;
    top: 50px;
    background-color: var(--dark-brown);
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 18px;
    color: var(--text-gray);
}

/* ===== FEATURED SECTION ===== */
.featured {
    padding: 80px 20px;
    background-color: var(--dark-bg);
}

.featured h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--text-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background: linear-gradient(135deg, var(--accent-brown) 0%, transparent 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.featured-card i {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.featured-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.featured-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}



.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--accent-brown);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links fb:hover {
    background-color: blue;
    color: var(--dark-brown);
    transform: translateY(-3px);
}
.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
}
.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
}
.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
}



/* ===== PAGE SECTIONS ===== */
.page-header {
    background: linear-gradient(135deg, var(--accent-brown) 0%, rgba(42, 36, 32, 0.5) 100%);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 70px;
    border-bottom: 2px solid var(--primary-gold);
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.page-header .breadcrumb {
    color: var(--primary-gold);
    font-size: 14px;
}

/* ===== CONTENT SECTIONS ===== */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-white);
}

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

.section-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, var(--accent-brown) 0%, transparent 100%);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== ROOMS GRID ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.room-card {
    background-color: var(--accent-brown);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.room-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.room-info {
    padding: 30px;
}

.room-type {
    color: var(--primary-gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.room-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.room-features {
    margin: 20px 0;
    list-style: none;
}

.room-features li {
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.room-features i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.room-price {
    font-size: 24px;
    color: var(--primary-gold);
    margin: 20px 0;
    font-weight: bold;
}

/* ===== RESTAURANT MENU ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    padding: 25px;
    border-radius: 5px;
    border-left: 3px solid var(--primary-gold);
}

.menu-item h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 10px;
}

.menu-item .price {
    color: var(--text-white);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.menu-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-brown));
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--primary-gold);
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-gold);
    width: 30px;
}

.contact-item h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--accent-brown);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: rgba(42, 36, 32, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ===== AVAILABILITY CALENDAR ===== */
.calendar-wrapper {
    background-color: var(--accent-brown);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-nav {
    display: flex;
    gap: 15px;
}

.calendar-nav button {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.calendar-nav button:hover {
    background-color: var(--light-gold);
}

.calendar-month {
    font-size: 24px;
    color: var(--text-white);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    background-color: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-gray);
    font-size: 14px;
}

.calendar-day.available {
    border-color: var(--primary-gold);
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--text-white);
}

.calendar-day.available:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.calendar-day.booked {
    background-color: rgba(100, 100, 100, 0.3);
    color: var(--text-gray);
    cursor: not-allowed;
}

.calendar-day.selected {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    font-weight: bold;
}

.availability-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--primary-gold);
}

.legend-color.available {
    background-color: rgba(212, 175, 55, 0.2);
}

.legend-color.booked {
    background-color: rgba(100, 100, 100, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-logo {
        font-size: 100px;
        right: 20px;
        top: 100px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .featured h2,
    .section h2 {
        font-size: 32px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-container {
        padding: 12px 15px;
        gap: 10px;
    }

    .featured-grid,
    .rooms-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 28px;
    }
}
/* Desktop Footer Fix */
.footer{
    background: #111;
    color: #fff;
    width: 100%;
}

/* Footer content desktop */
.footer-content{
    max-width: 1400px;
    margin: auto;
    padding: 0;
}

/* Map Section */
.footer-content section{
    width: 100%;
    padding: 60px 20px !important;
}

.footer-content iframe{
    width: 100% !important;
    height: 400px !important;
    border-radius: 8px;
}

/* Footer Grid */
.footer-content{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    padding: 50px 30px;
}

/* Make map full row */
.footer-content section{
    grid-column: 1 / -1;
}

/* Footer Sections */
.footer-section{
    min-width: 0;
}

.footer-section h4{
    margin-bottom: 14px;
    color: #f5d000;
}

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

.footer-section ul li{
    margin-bottom: 10px;
}

.footer-section a{
    color: #fff;
    text-decoration: none;
}

.footer-logo img{
    width: 220px !important;
    height: auto;
}

/* Bottom */
.footer-bottom{
    text-align: center;
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Mobile Responsive */
@media(max-width:768px){

.footer-content{
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
}

.footer-content iframe{
    height: 280px !important;
}

.footer-logo img{
    width: 180px !important;
}

}

/* Mobile Map Fix */
@media (max-width:768px){

.footer-content section{
    padding: 30px 12px !important;
}

.footer-content section .container{
    width: 100%;
    padding: 0;
}

.footer-content section h2{
    font-size: 24px;
    margin-bottom: 20px !important;
}

/* Remove extra gold box */
.footer-content section div{
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Map Full Width */
.footer-content iframe{
    width: 100% !important;
    height: 300px !important;
    display: block;
    border: 2px solid rgb(209,188,0) !important;
    border-radius: 8px !important;
}

/* Footer gap fix */
.footer-content{
    gap: 20px;
}

}