/* ===================================
   HeritageRoots Resort - Luxury Theme
   Inspired by Palazzo Versace elegance
   =================================== */

/* CSS Variables - Light Luxury Palette */
:root {
    --color-black: #1a1a1a;
    --color-charcoal: #2d2d2d;
    --color-dark: #3a3a3a;
    --color-gold: #b8956c;
    --color-gold-light: #d4b896;
    --color-gold-dark: #96724d;
    --color-cream: #faf9f7;
    --color-white: #ffffff;
    --color-ivory: #f5f3ef;
    --color-sand: #ebe7e0;
    --color-text: #2d2d2d;
    --color-text-light: #6b6b6b;
    --color-border: rgba(184, 149, 108, 0.25);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-cream);
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   Preloader
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-dark);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.preloader-line {
    width: 150px;
    height: 1px;
    background: var(--color-sand);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: preload 1.5s ease-in-out infinite;
}

@keyframes preload {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===================================
   Typography
   =================================== */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-charcoal);
}

.section-title em {
    font-style: italic;
    color: var(--color-gold-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin-top: 20px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.title-divider span {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.title-divider svg {
    width: 16px;
    height: 16px;
    fill: var(--color-gold);
}

.title-divider.light span {
    background: rgba(255, 255, 255, 0.4);
}

.title-divider.light svg {
    fill: var(--color-gold-light);
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header.light .section-tag {
    color: var(--color-gold-light);
}

.section-header.light .section-title {
    color: var(--color-charcoal);
}

.section-header.light .section-subtitle {
    color: var(--color-text-light);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 149, 108, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
}

.btn-outline-dark:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: var(--color-ivory);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.header-contact a:hover {
    color: var(--color-gold-dark);
}

.header-contact .divider {
    color: var(--color-border);
}

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

.header-social a {
    color: var(--color-text-light);
}

.header-social a:hover {
    color: var(--color-gold-dark);
}

.header-social svg {
    width: 16px;
    height: 16px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
}

.logo em {
    font-style: italic;
    color: var(--color-gold-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

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

.nav-btn {
    padding: 12px 30px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-charcoal);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.78vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(45, 45, 45, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--color-gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title .title-line {
    display: block;
    animation: fadeInUp 1s ease both;
}

.hero-title .title-line:first-child {
    animation-delay: 0.4s;
}

.hero-title .title-line.accent {
    font-style: italic;
    color: var(--color-gold);
    animation-delay: 0.6s;
}

.hero-text {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.5s both;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 50px; }
    50% { opacity: 0.5; height: 30px; }
}

.hero-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.hero-decoration.left { left: 60px; }
.hero-decoration.right { right: 60px; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===================================
   Intro Section
   =================================== */
.intro {
    padding: 100px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.intro-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-gold);
}

.intro-text {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text);
}

.intro-text em {
    font-style: italic;
    color: var(--color-gold-dark);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 120px 0;
    background: var(--color-ivory);
}

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

.about-images {
    position: relative;
}

.about-img.main {
    position: relative;
    z-index: 1;
}

.about-img.main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-img.main .img-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
}

.about-img.secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-img.secondary img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 25px;
    text-align: center;
    z-index: 3;
}

.about-badge .badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-gold);
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ===================================
   Suites Section
   =================================== */
.suites {
    position: relative;
    padding: 120px 0;
    background: var(--color-ivory);
}

.suites-bg {
    display: none;
}

.suites .container {
    position: relative;
}

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

.suite-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.suite-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.suite-card.featured {
    border-color: var(--color-gold);
}

.suite-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.suite-card:hover .suite-image img {
    transform: scale(1.1);
}

.suite-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.suite-card:hover .suite-overlay {
    opacity: 1;
}

.suite-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.suite-content {
    padding: 30px;
}

.suite-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.suite-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.suite-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.suite-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-gold-dark);
}

.suite-amenities svg {
    width: 14px;
    height: 14px;
    fill: var(--color-gold);
}

.suite-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.suite-price {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.suite-price strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-charcoal);
}

.suite-link {
    font-size: 0.85rem;
    color: var(--color-gold-dark);
    font-weight: 500;
}

.suite-link:hover {
    color: var(--color-gold);
}

.suites-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   Experiences Section
   =================================== */
.experiences {
    padding: 120px 0;
    background: var(--color-white);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.experience-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.experience-card.large {
    grid-column: span 2;
}

.experience-image {
    position: absolute;
    inset: 0;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.experience-card:hover .experience-content {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.3));
}

.experience-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.experience-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 10px;
}

.experience-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.experience-card:hover .experience-content p {
    opacity: 1;
    transform: translateY(0);
}

.experience-link {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.experience-card:hover .experience-link {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 120px 0 0;
    background: var(--color-ivory);
}

.gallery .container {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 5px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 5px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    position: relative;
    padding: 120px 0;
    background: var(--color-white);
}

.testimonials-bg {
    display: none;
}

.testimonials .container {
    position: relative;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-ivory);
    border: 1px solid var(--color-border);
    padding: 40px;
    text-align: center;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.testimonial-card blockquote {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: var(--color-charcoal);
}

.author-location {
    font-size: 0.85rem;
    color: var(--color-gold-dark);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 120px 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Instagram Feature */
.instagram-feature {
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.instagram-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.instagram-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 5px;
}

.instagram-handle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c13584;
    transition: var(--transition);
}

.instagram-handle:hover {
    color: #e1306c;
}

.instagram-text {
    color: var(--color-text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.insta-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.insta-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-thumb:hover img {
    transform: scale(1.1);
}

.insta-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.insta-thumb:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* Contact Info Card */
.contact-info-card {
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold);
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item span {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Social Media Section */
.social-section {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.social-section h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--color-cream);
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

.social-link.instagram { color: #c13584; }
.social-link.instagram:hover { background: #c13584; color: white; }
.social-link.instagram:hover svg { stroke: white; fill: white; }

.social-link.facebook { color: #1877f2; }
.social-link.facebook:hover { background: #1877f2; color: white; }
.social-link.facebook:hover svg { fill: white; }

.social-link.twitter { color: #1da1f2; }
.social-link.twitter:hover { background: #1da1f2; color: white; }
.social-link.twitter:hover svg { fill: white; }

.social-link.youtube { color: #ff0000; }
.social-link.youtube:hover { background: #ff0000; color: white; }
.social-link.youtube:hover svg { fill: white; }

.social-link.linkedin { color: #0077b5; }
.social-link.linkedin:hover { background: #0077b5; color: white; }
.social-link.linkedin:hover svg { fill: white; }

.social-link.pinterest { color: #bd081c; }
.social-link.pinterest:hover { background: #bd081c; color: white; }
.social-link.pinterest:hover svg { fill: white; }

.social-link.whatsapp { color: #25d366; }
.social-link.whatsapp:hover { background: #25d366; color: white; }
.social-link.whatsapp:hover svg { fill: white; }

/* Map Section */
.map-section {
    position: relative;
    height: 500px;
}

.map-container {
    position: absolute;
    inset: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(80%) contrast(1.1);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 80px;
    pointer-events: none;
}

.map-card {
    background: var(--color-white);
    padding: 40px;
    max-width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.map-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.map-card p {
    color: var(--color-text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo em {
    font-style: italic;
    color: var(--color-gold-light);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--color-white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.newsletter-form button {
    padding: 15px 20px;
    background: var(--color-gold);
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--color-gold-dark);
}

.footer-bottom {
    padding: 25px 0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--color-gold-light);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .suites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 250px);
    }
    
    .experience-card.large {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: var(--color-charcoal) !important;
        font-size: 1.2rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-btn {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 250px);
    }
    
    .gallery-item.tall {
        grid-row: span 2;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .map-overlay {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .suites-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 250px);
    }
    
    .experience-card.large {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 250px);
    }
    
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-section {
        height: auto;
    }
    
    .map-container {
        position: relative;
        height: 350px;
    }
    
    .map-overlay {
        position: relative;
        padding: 0;
        justify-content: center;
        background: var(--color-cream);
        padding: 40px 20px;
    }
    
    .map-card {
        max-width: 100%;
        box-shadow: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-img.secondary {
        width: 180px;
        right: -20px;
        bottom: -20px;
    }
    
    .about-badge {
        top: 20px;
        right: 20px;
        padding: 15px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
