/* ======================================
   HUNZA HAVELI – LUXURY RESORT WEBSITE
   Design System & Styles
   ====================================== */

/* --- CSS Custom Properties --- */
:root {
    --green-deep: #1a3c2a;
    --green-dark: #0f2a1a;
    --green-mid: #2d5e3f;
    --green-light: #4a7c5c;
    --gold: #c9a84c;
    --gold-light: #dfc478;
    --gold-dark: #a68b3a;
    --beige: #f5f0e8;
    --beige-dark: #e8dfd3;
    --white: #ffffff;
    --off-white: #faf9f6;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-light: #8a8a8a;

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    --nav-height: 80px;
    --section-padding: 120px;
    --container-width: 1200px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* --- Section Headers --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-title.light { color: var(--white); }

.title-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}
.title-divider.center { margin-left: auto; margin-right: auto; }
.title-divider.gold { background: var(--gold-light); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}
.section-subtitle.light { color: rgba(255,255,255,0.8); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-small {
    padding: 10px 22px;
    font-size: 0.75rem;
    background: var(--green-deep);
    color: var(--gold-light);
}
.btn-small:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.9rem;
    width: 100%;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.reveal-left {
    transform: translateX(-40px) translateY(0);
}
.reveal.reveal-right {
    transform: translateX(40px) translateY(0);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ======================================
   NAVIGATION
   ====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 42, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    height: 68px;
}

.nav-container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}
.logo-icon {
    color: var(--gold);
    font-size: 1.2rem;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-links a:hover {
    color: var(--white);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
    padding: 10px 24px !important;
    border-radius: 2px;
    letter-spacing: 2px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light) !important;
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 42, 26, 0.4) 0%,
        rgba(15, 42, 26, 0.3) 40%,
        rgba(15, 42, 26, 0.6) 80%,
        rgba(15, 42, 26, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ======================================
   ABOUT SECTION
   ====================================== */
.about {
    background: var(--off-white);
}

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

.about-image {
    position: relative;
}
.about-image img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.about-content .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-body);
}
.about-content strong {
    color: var(--green-deep);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--beige-dark);
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ======================================
   ROOMS & SUITES
   ====================================== */
.rooms {
    background: var(--beige);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.room-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.room-card:hover .room-image-wrapper img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.room-info {
    padding: 28px;
}
.room-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--green-deep);
    margin-bottom: 12px;
}
.room-info p {
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.7;
}

.room-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--beige-dark);
}
.room-price {
    font-size: 0.85rem;
    color: var(--text-light);
}
.room-price strong {
    color: var(--green-deep);
    font-size: 1rem;
}

.room-perk {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ======================================
   AMENITIES
   ====================================== */
.amenities {
    background: var(--off-white);
}

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

.amenity-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 4px;
    transition: all var(--transition);
    background: var(--white);
    border: 1px solid transparent;
}
.amenity-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--gold);
}
.amenity-icon svg {
    width: 100%;
    height: 100%;
}

.amenity-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--green-deep);
    margin-bottom: 8px;
}
.amenity-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ======================================
   EXPERIENCE HUNZA
   ====================================== */
.experience {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    opacity: 0.08;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.experience-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}
.experience-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.experience-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.experience-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}
.experience-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Center last 2 cards in a 3-col grid when there are 5 items */
.experience-grid .experience-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: 0;
    width: 100%;
}

/* ======================================
   GALLERY
   ====================================== */
.gallery {
    background: var(--beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}
.lightbox.open {
    display: flex;
}
.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 0.7; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ======================================
   TESTIMONIALS
   ====================================== */
.testimonials {
    background: var(--off-white);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 24px;
}

.testimonial-stars {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-slide blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--green-deep);
    margin-bottom: 4px;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    background: none;
    border: 1px solid var(--beige-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green-deep);
    transition: all var(--transition);
}
.testimonial-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--beige-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ======================================
   LOCATION
   ====================================== */
.location {
    background: var(--beige);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location-info .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.location-info p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.nearby-attractions h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 16px;
}
.nearby-attractions ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nearby-attractions li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-body);
    padding: 8px 0;
    border-bottom: 1px solid var(--beige-dark);
}
.attraction-distance {
    display: inline-block;
    min-width: 54px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
    text-align: center;
}

.location-map {
    border-radius: 4px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ======================================
   BOOKING
   ====================================== */
.booking {
    background: var(--green-deep);
    position: relative;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.booking-info {
    color: var(--white);
}
.booking-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-icon {
    font-size: 1.5rem;
}
.booking-contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 2px;
}
.booking-contact-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.booking-form {
    background: var(--white);
    padding: 48px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}
.form-group.full-width {
    grid-column: span 2;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 14px 16px;
    border: 1px solid var(--beige-dark);
    border-radius: 2px;
    background: var(--off-white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: var(--green-dark);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo .logo-icon { color: var(--gold); font-size: 1rem; }
.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.social-link svg {
    width: 18px;
    height: 18px;
}
.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a,
.footer-contact li {
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rooms-grid .room-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --nav-height: 68px;
    }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 60px 40px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .nav-cta {
        margin-top: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-accent { display: none; }

    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .rooms-grid .room-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .booking-form {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .hero-buttons .btn {
        width: 100%;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item-large {
        grid-column: span 1;
    }

    .about-stats {
        gap: 20px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}

/* ======================================
   FLOATING WHATSAPP BUTTON
   ====================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.78rem;
    }
    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}

/* --- Utility: smooth entrance for entire page --- */
body.loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
}
