/* SRK HOME STAY - PREMIUM REDESIGN STYLES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
    --navy: #0f172a; /* Exact Dark Navy from instructions */
    --gold: #d4af37; /* Premium Gold */
    --gold-hover: #b8962e;
    --slate: #707a8a; /* Hero background color */
    --charcoal: #333333;
    --ivory: #f8fafc;
    --white: #ffffff;
    --trans: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

* { margin:0; padding:0; box-sizing:border-box; font-family:'Montserrat', sans-serif; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body { background:var(--ivory); color:var(--charcoal); line-height:1.6; }

h1, h2, h3, .serif { font-family:'Playfair Display', serif; }
a { text-decoration:none; color:inherit; transition:0.3s; }

/* --- Header & Navbar --- */
#main-header {
    width: 100%;
    z-index: 1000;
    background: var(--navy);
    position: sticky;
    top: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: var(--trans);
}

nav .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

nav .nav-links a {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

nav .nav-links a:hover { color: var(--gold); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-toggle {
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.lang-toggle span.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1100px) {
    nav .nav-links { gap: 1rem; }
    .header-phone { display: none; }
}

@media (max-width: 992px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    nav.active { display: flex; }
    nav .nav-links { flex-direction: column; align-items: center; gap: 1.5rem; }
    .hamburger { display: block; }
    .header-actions .lang-toggle { display: block; margin-left: 1rem; }
}

/* --- Buttons --- */
.btn { padding:1rem 2.5rem; border-radius:4px; font-weight:800; text-transform:uppercase; letter-spacing:2px; cursor:pointer; border:none; display:inline-block; font-size:0.85rem; transition:var(--trans); text-align: center; }
.btn-gold { background:var(--gold); color:var(--navy); }
.btn-gold:hover { background:var(--gold-hover); transform:translateY(-3px); }
.btn-outline { background:transparent; border:2px solid var(--gold); color:var(--gold); }
.btn-outline:hover { background:var(--gold); color:var(--navy); }

/* --- Hero --- */
.hero {
    min-height: 90vh;
    background: var(--slate);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 1000px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow: 2px 5px 25px rgba(0,0,0,0.6);
}

.hero .tagline { color: white; font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 3px; }
.hero .description { color: rgba(255,255,255,0.9); font-size: 1.3rem; margin-bottom: 3.5rem; font-weight: 500; }

.hero-btns { display: flex; gap: 20px; justify-content: center; }
.hero-contact-info { margin-top:3rem; font-weight:800; color:var(--navy); letter-spacing:2px; font-size:1.2rem; background: var(--gold); padding: 0.8rem 2rem; border-radius: 50px; display: inline-flex; align-items: center; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); gap: 15px; }

/* --- Quick Highlights --- */
.quick-highlights { padding: 4rem 8%; background: white; margin-top: -50px; position: relative; z-index: 5; }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.h-card { background: white; padding: 2.5rem 1.5rem; text-align: center; border-radius: 8px; box-shadow: var(--shadow); transition: var(--trans); }
.h-card:hover { transform: translateY(-10px); }
.h-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.h-card h4 { font-size: 0.9rem; font-weight: 800; letter-spacing: 1px; color: var(--navy); }

/* --- Section Styling --- */
.section-padding { padding: 80px 8%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 3rem; color: var(--navy); margin-bottom: 1rem; }
.section-header p { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }

/* --- Room Cards --- */
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.room-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--trans); }
.room-img { height: 250px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
.room-card:hover img { transform: scale(1.1); }
.room-info { padding: 2rem; }
.room-info h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--navy); }
.room-price { color: var(--gold); font-weight: 800; font-size: 1.4rem; margin-bottom: 1rem; }
.room-info p { color: #666; font-size: 0.9rem; margin-bottom: 1.5rem; height: 3em; overflow: hidden; }

/* --- Premium 3-Bedroom Flat --- */
.special-section { padding: 80px 8%; }
.special-card { display: grid; grid-template-columns: 1.5fr 1fr; background: var(--navy); border-radius: 20px; overflow: hidden; color: white; min-height: 600px; box-shadow: 0 30px 60px rgba(0,0,0,0.3); }

.flat-image-mosaic { display: grid; grid-template-columns: 1fr 0.4fr; gap: 8px; padding: 8px; background: rgba(255,255,255,0.05); }
.flat-img-main { height: 100%; overflow: hidden; }
.flat-img-main img { width: 100%; height: 100%; object-fit: cover; }
.flat-img-side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }
.flat-img-hall, .flat-img-kitchen { position: relative; overflow: hidden; }
.flat-img-hall img, .flat-img-kitchen img { width: 100%; height: 100%; object-fit: cover; }

.special-content { padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.special-badge { background: var(--gold); color: var(--navy); padding: 6px 15px; font-size: 0.7rem; font-weight: 900; border-radius: 4px; align-self: flex-start; margin-bottom: 2rem; letter-spacing: 2px; }
.special-content h2 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.1; color: var(--gold); }
.special-content p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.amenity-list { list-style: none; margin-bottom: 3rem; }
.amenity-list li { display: flex; align-items: center; font-size: 1rem; margin-bottom: 0.8rem; color: rgba(255,255,255,0.9); }
.amenity-list li::before { content: '♦'; color: var(--gold); margin-right: 15px; font-size: 1.2rem; }

.flat-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.price-tag { font-size: 2rem; font-weight: 800; color: var(--gold); }
.price-tag small { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.flat-btns { display: flex; gap: 1rem; }

/* --- Amenities Section --- */
.amenities-navy { padding: 80px 8%; background: var(--navy); color: white; text-align: center; }
.icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 4rem; }
.icon-item i { font-size: 3.5rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.icon-item span { font-size: 0.85rem; letter-spacing: 2px; font-weight: 800; text-transform: uppercase; color: white; }

/* --- Contact Row --- */
.contact-row-section { padding: 40px 8%; background: var(--ivory); }
.contact-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.contact-btns .btn { min-width: 240px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-call { background: var(--gold); color: var(--navy); }
.btn-directions { background: #4285F4; color: white; }
.btn-whatsapp-navy { background: #25D366; color: white; }
.btn-email-navy { background: var(--navy); color: white; border: 1px solid rgba(255,255,255,0.1); }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; grid-auto-rows: 250px; }
.gallery-item { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Footer --- */
footer { background: var(--navy); color: white; padding: 80px 8% 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 60px; }
.footer-col h4 { color: var(--gold); margin-bottom: 2rem; letter-spacing: 2px; }
.footer-col p { opacity: 0.7; margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.footer-col i { color: var(--gold); margin-right: 12px; }
.footer-social { display: flex; gap: 1.5rem; margin-top: 1.5rem; }
.footer-social a { font-size: 1.5rem; opacity: 0.8; }
.footer-bottom { text-align: center; padding-top: 40px; opacity: 0.4; font-size: 0.8rem; letter-spacing: 1px; }

/* --- Booking --- */
.booking-section { padding: 80px 8%; background: white; }
.booking-container { max-width: 900px; margin: 0 auto; box-shadow: var(--shadow); padding: 4rem; border-radius: 15px; }
.b-form { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.f-group { display: flex; flex-direction: column; gap: 0.5rem; }
.f-group.full { grid-column: 1 / -1; }
.f-group label { font-size: 0.75rem; font-weight: 800; color: #888; letter-spacing: 1px; }
.f-group input, .f-group select { padding: 1.2rem; border: 1px solid #eee; border-radius: 6px; font-weight: 600; outline: none; }
.f-total { grid-column: 1 / -1; text-align: center; padding: 3rem 0; border-top: 1px solid #eee; }
.f-total p { font-size: 0.9rem; color: #888; margin-bottom: 0.8rem; letter-spacing: 2px; }
.f-total h3 { font-size: 3rem; color: var(--gold); font-weight: 900; }
.success-box { text-align: center; padding: 3rem; background: #f0fff4; border: 1px solid #c6f6d5; border-radius: 12px; }

/* --- Mobile --- */
.mobile-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--navy); z-index: 1001; grid-template-columns: repeat(3, 1fr); }
.m-item { text-align: center; padding: 1rem 0; color: white; font-size: 0.7rem; font-weight: 800; border-right: 1px solid rgba(255,255,255,0.05); }
.m-item i { display: block; font-size: 1.5rem; color: var(--gold); margin-bottom: 5px; }

@media (max-width: 992px) {
    .mobile-nav { display: grid; }
    body { padding-bottom: 70px; }
    .hero { min-height: 60vh; }
    .hero h1 { font-size: 3rem; letter-spacing: 2px; }
    .hero .tagline { font-size: 1.1rem; }
}

.reveal-hidden { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal-hidden.visible { opacity: 1; transform: translateY(0); }
