:root {
    --bg-dark: #0a0a0a;          /* Obsidian */
    --bg-card: #161616;          /* Matte Charcoal */
    --accent: #c5a059;           /* Champagne Gold */
    --accent-glow: rgba(197, 160, 89, 0.3);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Elegant Navigation --- */
header {
    /* 1. Initial State: Clean and Integrated */
    background: transparent;
    padding: 25px 8%;
    position: fixed; /* Fixed is better than sticky for premium layouts */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

/* 2. Scrolled State: The "Floating Glass" Effect */
/* Apply this class via JavaScript when window.scrollY > 50 */
header.scrolled {
    padding: 15px 8%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* 3. Navigation Link Styling */
header nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

header nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* 4. Animated "Magnetic" Underline */
header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent, #ff5722); /* Your brand color */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

header nav ul li a:hover {
    color: #fff;
}

header nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* 5. Premium Logo Hover Animation */
.logo img {
    height: 50px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: scale(1.08) rotate(-2deg);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Refined size */
    filter: brightness(1.2);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* --- Cinematic Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2), var(--bg-dark)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
}

.hero p {
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

/* --- About Section --- */
#about {
    padding: 120px 15%;
}

#about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 40px;
    text-align: center;
}

#about p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-images {
    display: flex;
    gap: 30px;
    justify-content: center;
}

#about img {
    width: 45%;
    aspect-ratio: 4 / 5; /* Modern way to keep images consistent */
    object-fit: cover;
    border-radius: 8px; /* Slightly softer than 4px for a premium look */
    
    /* 1. Sophisticated Filter Start */
    filter: grayscale(60%) contrast(1.1) brightness(0.9);
    
    /* 2. Layered "Soft" Shadow */
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
        
    /* 3. The "Apple-Style" Transition */
    transition: 
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease;

    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

#about img:hover {
    /* 4. The "Lift" Effect */
    filter: grayscale(0%) contrast(1) brightness(1.05);
    transform: translateY(-12px) scale(1.03);
    
    /* 5. Deep "Luxury" Shadow on Hover */
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 0 2px var(--accent);
        
    border-color: var(--accent);
}

/* Optional: Add a slight delay to the second image for a staggered look */
#about img:nth-child(2) {
    margin-top: 40px; /* Offset the images for a modern gallery feel */
}
/* --- Contact Form (Dark Glassmorphism) --- */
#contact {
    background: #0f0f0f;
    padding: 120px 15%;
}

#contactForm {
    /* 1. Sophisticated Glassmorphism */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* 2. Layout & Spacing */
    padding: 60px;
    max-width: 800px;
    margin: 40px auto;
    
    /* 3. High-End Border & Radius */
    border-radius: 24px; /* Modern rounded look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* 4. Deep Layered Shadow */
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    
    /* 5. Interactive Feel */
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #131ebb 0%, #682297 100%);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape is more modern than 5px */
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    
    /* 1. The "Luxury" Shadow */
    box-shadow: 
        0 10px 20px rgba(37, 211, 102, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    
    /* 2. Smooth Transition */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* 3. The "Shimmer" Effect (Animated light streak) */
.community-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.community-btn:hover {
    /* 4. The "Lift" Animation */
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    filter: brightness(1.1);
}

.community-btn:hover::before {
    left: 100%; /* Triggers the light streak on hover */
}

.community-btn:active {
    transform: translateY(-2px) scale(0.98); /* Tactile feedback */
}

/* 5. Modern Pulse Animation (Optional) */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(11, 130, 160, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.community-btn {
    animation: pulse-green 3s infinite;
}
/* Premium Hover State */
#contactForm:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 87, 34, 0.4); /* Subtle brand color glow */
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 87, 34, 0.1);
}

/* Animated Corner Accent (The "Luxury" Detail) */
#contactForm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 87, 34, 0.1), transparent 40%);
    pointer-events: none;
}

input, textarea {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 30px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

button {
    background: var(--accent);
    color: var(--bg-dark);
    width: auto;
    padding: 15px 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    margin: 20px auto 0;
}

button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* --- Footer --- */
footer {
    padding: 80px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul { display: none; } /* Consider adding a burger menu for mobile */
    #about { padding: 60px 5%; }
    .about-images { flex-direction: column; }
    #about img { width: 100%; }
    #contactForm { padding: 30px; }
}.flight-path-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh; /* Extends through multiple sections */
    pointer-events: none; /* Allows clicking through to content */
    z-index: 1;
    overflow: hidden;
}

#flightPath {
    transition: stroke-dashoffset 0.1s linear;
}

.plane {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 2;
    /* This makes the plane follow the SVG path */
    offset-path: path("M-50,200 C200,200 400,800 600,500 S900,100 1100,400");
    offset-rotate: auto 90deg; /* Aligns plane nose to the curve */
    transition: offset-distance 0.1s linear;
}

.plane svg {
    transform: rotate(90deg); /* Adjust based on your icon's default orientation */
    filter: drop-shadow(0 10px 10px rgba(255, 87, 34, 0.4));
}