/* 
==============
   VARIABLES
==============
*/
:root {
    --color-bg: #050505;
    --color-bg-alt: #0a0a0a;
    --color-text: #e0e0e0;
    --color-text-muted: #999;
    --color-accent: #d4af37;
    /* Metallic Gold */
    --color-accent-hover: #b5952f;
    --color-purple: #4a0e4e;

    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f6e27a 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(145deg, #111 0%, #0a0a0a 100%);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.05);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video,
picture {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* 
==============
   TYPOGRAPHY
==============
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.text-gold {
    color: var(--color-accent);
}

.text-gradient {
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

/* 
==============
   UTILITIES
==============
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-primary {
    background: var(--gradient-gold);
    color: #111;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* Remove old slide effect */
.btn::before {
    display: none;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-radius: 16px;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

/* 
==============
   HEADER
==============
*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all 0.4s ease;
    background: #000;
    /* Solid Black */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    padding: 1rem 0;
    /* Background remains black */
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles - Stacked layout */
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--color-accent);
    opacity: 1;
}

/* 
==============
   HERO SECTION
==============
*/
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Important for icon clipping if we used background-clip, but here we just need relative context */
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Increased z-index to sit above icons */
    max-width: 900px;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 600;
}

/* Hero Floating Icons */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Below content, above background */
    pointer-events: none;
    /* Let clicks pass through */
}

.icon-float {
    position: absolute;
    color: rgba(212, 175, 55, 0.4);
    /* Subtle gold opacity */
    font-size: 3rem;
    animation: floatUp 15s infinite linear;
    opacity: 0;
    bottom: -100px;
    /* Start below screen */
}

/* Individual Icon Positioning & Delays */
.icon-1 {
    left: 10%;
    font-size: 4rem;
    animation-duration: 20s;
    animation-delay: 0s;
}

.icon-2 {
    left: 25%;
    font-size: 2.5rem;
    animation-duration: 25s;
    animation-delay: 5s;
}

.icon-3 {
    right: 20%;
    font-size: 3.5rem;
    animation-duration: 18s;
    animation-delay: 2s;
}

.icon-4 {
    right: 5%;
    font-size: 2rem;
    animation-duration: 22s;
    animation-delay: 8s;
}

.icon-5 {
    left: 50%;
    font-size: 3rem;
    animation-duration: 30s;
    animation-delay: 12s;
}

/* New Icons High Density */
.icon-6 {
    left: 2%;
    font-size: 2.5rem;
    animation-duration: 28s;
    animation-delay: 3s;
}

.icon-7 {
    left: 18%;
    font-size: 3rem;
    animation-duration: 24s;
    animation-delay: 7s;
}

.icon-8 {
    left: 38%;
    font-size: 2rem;
    animation-duration: 19s;
    animation-delay: 10s;
}

.icon-9 {
    left: 65%;
    font-size: 3.5rem;
    animation-duration: 26s;
    animation-delay: 1s;
}

.icon-10 {
    right: 12%;
    font-size: 2.8rem;
    animation-duration: 21s;
    animation-delay: 6s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        /* visible */
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}

/* 
==============
   SECTIONS
==============
*/
section {
    padding: var(--spacing-xl) 0;
}

.section-about {
    background: var(--color-bg-alt);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: var(--color-accent);
    color: #000;
}

.mobile-menu-toggle.active i::before {
    content: "\f00d";
    /* Font Awesome X icon */
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide only desktop nav links, keep CTA button visible */
    .nav-links {
        display: none;
    }

    /* Keep Book Now button visible on mobile */
    nav>.btn-cta {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    /* Mobile menu active state */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--color-accent);
        z-index: 1000;
        animation: slideInRight 0.3s ease-out;
    }

    .nav-links.active a {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 1;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }

    .mobile-menu-extras {
        display: block !important;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
}

.mobile-menu-extras {
    display: none;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Strict 3 columns like Instagram */
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    aspect-ratio: 1;
    background: #111;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
    color: #fff;
}

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

.insta-overlay i {
    width: 30px;
    height: 30px;
    margin-bottom: 0.5rem;
}

.insta-overlay span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* 
==============
   FOOTER
==============
*/
footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.footer-col h4 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.2rem;
    display: inline-block;
}

.footer-col ul li a::before {
    content: '\f105';
    /* fa-angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-accent);
    transition: left 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 1.5rem;
}

.footer-col ul li a:hover::before {
    left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* High CTR Button in Nav Link - ensuring specificity */
nav .btn {
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
}

nav .btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

nav .btn::before {
    display: none;
    /* Remove existing slide effect for solid button */
}

/* Mobile Nav Button Optimization */
@media (max-width: 600px) {
    nav .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .logo-main {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }
}

/* 
==============
   PROCESS SECTION
==============
*/
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(25, 25, 25, 0.8);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon-wrapper {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: rotateY(360deg);
}

.step-number-bg {
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 6rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.process-step:hover .step-number-bg {
    color: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.process-step h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step p {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 
==============
   FAQ Styles
==============
*/
.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details summary::after {
    content: '\f078';
    /* FontAwesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-details[open] summary::after {
    transform: rotate(180deg);
}

.faq-details[open] {
    border: 1px solid var(--color-accent);
}

/* 
==============
   Blog Preview Styles
==============
*/
.blog-preview-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-preview-card:hover .text-gold {
    text-decoration: underline;
}

/* 
==============
   Mobile Footer
==============
*/
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }
}