/* ─────────────────────────────────────────────────────────────
   SKYLINER EVENT MANAGEMENT — Global Stylesheet
   style.css
   ───────────────────────────────────────────────────────────── */

/* Google Fonts — Playfair Display (headings) + DM Sans (body/subtitles) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* --- Global Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.7;
    color: #f2f4ee;
    overflow-x: hidden;
    background-color: #0c0c0c;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #bc66ea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a0a0a;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.scrolled {
    background: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: "🚁";
    font-size: 1.5rem;
}

/* Horizontal nav menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.025em;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Contact Us pill */
.nav-menu a[href*="contact"] {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #ffffff;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-menu a[href*="contact"]:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }

/* Side menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0f0f0f 0%, #090909 100%);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 999;
    padding: 80px 30px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-menu.active { right: 0; }

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.side-menu a:last-child { border-bottom: none; }
.side-menu a:hover { color: #8b5cf6; transform: translateX(5px); }

/* ─────────────────────────────────────────────────────────────
   PAGE CONTENT (used on inner pages)
   ───────────────────────────────────────────────────────────── */
.page-content {
    min-height: calc(100vh - 200px);
    padding-top: 100px;
    padding-bottom: 50px;
}

.page-header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e00c0c, #3636da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d11a1a;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 10px;
}

.page-text ul { list-style: disc; margin-left: 20px; padding-top: 10px; }
.page-text ul li { margin-bottom: 8px; }
.page-text strong { color: #eff4f2; }
.page-text a { color: #667eea; text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
   ─────────────────────────────────────────────────────────────
   h1  →  Playfair Display, massive, lavender gradient
           (exact match of "Our Gallery" on the gallery page)
   p   →  DM Sans, small-caps uppercase, wide tracking, muted
           (exact match of "Moments we've crafted · Stories…")
   ───────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #090909 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(102,126,234,0.1), transparent);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    z-index: 2;
    max-width: 860px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

/* ══ HERO H1 — matches "Our Gallery" exactly ══
   Font  : Playfair Display, weight 900
   Size  : fluid clamp — huge on desktop, readable on mobile
   Color : white → lavender → indigo gradient (left-to-right)
   The -webkit-text-fill-color + background-clip trick gives
   the same lavender tone as seen in the screenshot.              */
.hero h1 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.4rem;

    /* Lavender gradient — same used on gallery "Our Gallery" heading */
    background: linear-gradient(135deg, #ffffff 0%, #a8b8ff 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Soft glow animation */
    animation: heroGlow 3s ease-in-out infinite alternate;
}

/* ══ HERO P — matches the "MOMENTS WE'VE CRAFTED · STORIES WE'VE TOLD"
   subtitle style exactly:
   • DM Sans (same sans-serif as the gallery subtitle)
   • All-caps, wide letter-spacing
   • Muted grey-white colour (not fully white, not invisible)    */
.hero p {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.new-badge {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────────
   STATS SECTION
   ───────────────────────────────────────────────────────────── */
.stats {
    background: linear-gradient(135deg, #0c0c0c, #0e0e0e);
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item { padding: 2rem; }
.stat-number { font-size: 3rem; font-weight: 700; margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; opacity: 0.9; }

/* ─────────────────────────────────────────────────────────────
   SERVICES SECTION
   ───────────────────────────────────────────────────────────── */
.services { background: #f8fafc; }

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.service-text { font-size: 1.05rem; line-height: 1.8; color: #555; }
.service-text h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; }

.service-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #000000, #121212);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.coverage {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.coverage h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #f4efef; }
.coverage p { font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────
   FIXED FOLLOW BUTTON
   ───────────────────────────────────────────────────────────── */
.follow-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    animation: bounce 2s infinite;
    z-index: 1001;
    min-width: 120px;
    justify-content: center;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    animation-play-state: paused;
}

/* ─────────────────────────────────────────────────────────────
   BENEFITS SECTION
   ───────────────────────────────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #0a0a0a;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.benefit-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: #ffffff; }
.benefit-card p  { color: #ffffff; line-height: 1.6; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────── */
.faq { background: #f8fafc; }
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: #0a0a0a;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.faq-question:hover { background: linear-gradient(135deg, #7c3aed, #9333ea); }

.faq-question span {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-question.active span { transform: rotate(45deg); }

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #0a0a0a;
}

.faq-answer p { font-size: 1rem; color: #ffffff; }
.faq-answer.active { max-height: 500px; padding-bottom: 1.5rem; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
    background: #050505;
    color: rgb(246, 242, 242);
    text-align: center;
    padding: 3rem 0;
}

.footer p { font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────
   KEYFRAME ANIMATIONS
   ───────────────────────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-20px); }
}

/* Hero h1 glow — a soft luminous pulse on the lavender gradient */
@keyframes heroGlow {
    from { filter: brightness(1) drop-shadow(0 0 0px rgba(168,184,255,0)); }
    to   { filter: brightness(1.08) drop-shadow(0 0 18px rgba(168,184,255,0.35)); }
}

@keyframes glow {
    from { text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
    to   { text-shadow: 0 4px 30px rgba(255, 255, 255, 0.5); }
}

@keyframes pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -8px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -4px, 0);
    }
    90% { transform: translate3d(0, -2px, 0); }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 968px) {
    .nav-menu   { display: none; }
    .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
    .side-menu { width: 100%; right: -100%; }

    /* Hero text scales down but keeps the Playfair feel */
    .hero h1 {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    .section-title  { font-size: 2rem; }

    .service-content { grid-template-columns: 1fr; gap: 2rem; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

    .follow-btn {
        bottom: 20px; right: 20px;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        min-width: 100px;
    }

    .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .nav-container { padding: 0 1rem; }
    .logo          { font-size: 1.5rem; }

    .hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 0.82rem;
        letter-spacing: 0.09em;
    }

    .hero { padding: 1rem; }

    .stats-grid { grid-template-columns: 1fr; }

    .container { padding: 0 1rem; }

    .section-title { font-size: 1.8rem; }

    .stat-number { font-size: 2.5rem; }
    .stat-label  { font-size: 1rem; }

    .side-menu a { font-size: 1rem; }

    .page-header { font-size: 2rem; }

    .follow-btn {
        bottom: 15px; right: 15px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        min-width: 90px;
    }

    .new-badge { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
}