/* CSS for LexaBooth Website */

:root {
    --color-black: #0a0a0a;
    --color-dark-bg: #121212;
    --color-dark-secondary: #1a1a1a;
    --color-primary-orange: #F58A4C;
    --color-light-peach: #FBC8A5;
    --color-pink-accent: #F7B4C3;
    --color-deep-pink: #E9A3B7;
    --color-cream: #F2EAE2;
    --color-card-bg: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(245, 138, 76, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: var(--color-cream);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Morphism */
.glass-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 138, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(245, 138, 76, 0.15);
}

/* Text Styles */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-light-peach) 50%, var(--color-pink-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: #ffffff;
}

.orange-glow {
    text-shadow: 0 0 20px rgba(245, 138, 76, 0.6), 0 0 40px rgba(245, 138, 76, 0.3);
}

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

@keyframes glowPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-light-peach);
}

/* Navigation */
#navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

#navigation.scrolled {
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(245, 138, 76, 0.3);
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary-orange);
}

.nav-links {
    display: none;
    gap: 32px;
}

.nav-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    border-bottom-color: var(--color-primary-orange);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-light-peach) 100%);
    box-shadow: 0 4px 20px rgba(245, 138, 76, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    padding: 8px;
    border: none;
    background: transparent;
    color: var(--color-primary-orange);
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(245, 138, 76, 0.1);
}

.close-icon {
    display: none;
}

.mobile-menu {
    display: none;
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-glass-border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu.active ~ .mobile-menu-btn .menu-icon {
    display: none;
}

.mobile-menu.active ~ .mobile-menu-btn .close-icon {
    display: block;
}

.mobile-menu-links {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-links a {
    color: #d1d5db;
    text-decoration: none;
    padding: 12px 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 16px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    color: #ffffff;
    border-left-color: var(--color-primary-orange);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    margin-top: 16px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-light-peach) 100%);
    box-shadow: 0 4px 20px rgba(245, 138, 76, 0.3);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.hero-gradient-1,
.hero-gradient-2 {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-gradient-1 {
    top: 25%;
    left: 25%;
    background: rgba(245, 138, 76, 0.2);
}

.hero-gradient-2 {
    bottom: 25%;
    right: 25%;
    background: rgba(251, 200, 165, 0.2);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    box-shadow: 0 0 30px rgba(245, 138, 76, 0.3);
    margin-bottom: 32px;
}

.hero-badge svg {
    color: var(--color-primary-orange);
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-light-peach);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-title-white {
    display: block;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-title-gradient {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: #d1d5db;
    max-width: 768px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-subtitle-accent {
    display: block;
    color: var(--color-light-peach);
    margin-top: 8px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-light-peach) 100%);
    box-shadow: 0 10px 30px rgba(245, 138, 76, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 138, 76, 0.5);
}

.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    font-size: 14px;
    color: #9ca3af;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar-group {
    display: flex;
    margin-right: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 {
    background: linear-gradient(135deg, #F58A4C 0%, #FBC8A5 100%);
}

.avatar-2 {
    background: linear-gradient(135deg, #FBC8A5 0%, #F7B4C3 100%);
}

.avatar-3 {
    background: linear-gradient(135deg, #F7B4C3 0%, #E9A3B7 100%);
}

.social-proof-item svg {
    color: var(--color-primary-orange);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #9ca3af;
    max-width: 672px;
    margin: 0 auto;
}

.section-tagline {
    text-align: center;
    margin-top: 64px;
}

.section-tagline p {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-light-peach);
}

/* How It Works Section */
.how-it-works-section {
    padding: 96px 0;
    position: relative;
}

.steps-container {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}

.connection-line {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    z-index: 10;
}

.step {
    text-align: center;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.step-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(40px);
}

.step-glow-1 {
    background: rgba(245, 138, 76, 0.2);
}

.step-glow-2 {
    background: rgba(251, 200, 165, 0.2);
}

.step-glow-3 {
    background: rgba(247, 180, 195, 0.2);
}

.step-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto;
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(245, 138, 76, 0.3);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #F58A4C 0%, #FBC8A5 100%);
    color: #000;
    font-weight: 700;
    font-size: 14px;
}

.step-number-2 {
    background: linear-gradient(135deg, #FBC8A5 0%, #F7B4C3 100%);
}

.step-number-3 {
    background: linear-gradient(135deg, #F7B4C3 0%, #E9A3B7 100%);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Event Types Section */
.events-section {
    padding: 96px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.event-card {
    padding: 32px;
    text-align: center;
    cursor: pointer;
}

.event-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.event-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(40px);
    transition: all 0.3s ease;
}

.event-card:hover .event-glow {
    filter: blur(60px);
}

.event-glow-1 {
    background: rgba(245, 138, 76, 0.2);
}

.event-glow-2 {
    background: rgba(251, 200, 165, 0.2);
}

.event-glow-3 {
    background: rgba(247, 180, 195, 0.2);
}

.event-glow-4 {
    background: rgba(233, 163, 183, 0.2);
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.event-description {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 96px 0;
}

.instagram-embed {
    margin-bottom: 64px;
}

.instagram-card {
    padding: 16px;
    max-width: 448px;
    margin: 0 auto;
}

.instagram-frame {
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.instagram-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.instagram-link {
    margin-top: 16px;
    text-align: center;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-orange);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.instagram-link a:hover {
    opacity: 0.8;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Packages Section */
.packages-section {
    padding: 96px 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1152px;
    margin: 0 auto;
}

.tier-card {
    padding: 32px;
    position: relative;
}

.tier-card-popular {
    border-color: rgba(245, 138, 76, 0.5);
    transform: scale(1);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #F58A4C 0%, #FBC8A5 100%);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-icon-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.tier-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

.tier-glow-1 {
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
}

.tier-glow-2 {
    background: linear-gradient(135deg, #F58A4C 0%, #FBC8A5 100%);
}

.tier-glow-3 {
    background: linear-gradient(135deg, #F7B4C3 0%, #E9A3B7 100%);
}

.tier-name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}

.tier-tagline {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 32px;
}

.tier-features {
    list-style: none;
    margin-bottom: 32px;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.check-icon-1 {
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
}

.check-icon-2 {
    background: linear-gradient(135deg, #F58A4C 0%, #FBC8A5 100%);
}

.check-icon-3 {
    background: linear-gradient(135deg, #F7B4C3 0%, #E9A3B7 100%);
}

.tier-cta {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tier-cta-primary {
    background: linear-gradient(135deg, #F58A4C 0%, #FBC8A5 100%);
    color: #000;
    box-shadow: 0 8px 24px rgba(245, 138, 76, 0.3);
}

.tier-cta-primary:hover {
    box-shadow: 0 12px 32px rgba(245, 138, 76, 0.5);
}

.tier-cta-outline {
    background: var(--color-card-bg);
    color: #fff;
}

.tier-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.section-note {
    text-align: center;
    margin-top: 64px;
}

.note-text {
    color: #9ca3af;
    margin-bottom: 8px;
}

.note-accent {
    color: var(--color-light-peach);
    font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.final-cta-gradient-1,
.final-cta-gradient-2 {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: glowPulse 4s ease-in-out infinite;
}

.final-cta-gradient-1 {
    top: 25%;
    left: 25%;
    background: rgba(245, 138, 76, 0.4);
}

.final-cta-gradient-2 {
    bottom: 25%;
    right: 25%;
    background: rgba(251, 200, 165, 0.4);
    animation-delay: 1s;
}

.final-cta-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.final-cta-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.final-cta-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(245, 138, 76, 0.3);
    filter: blur(40px);
    animation: glowPulse 2s ease-in-out infinite;
}

.final-cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

.final-cta-title span {
    display: block;
    margin-bottom: 16px;
}

.final-cta-description {
    font-size: 24px;
    color: #d1d5db;
    max-width: 768px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.final-cta-accent {
    display: block;
    color: var(--color-light-peach);
    margin-top: 8px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    font-size: 14px;
    color: #9ca3af;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.trust-dot-1 {
    background: var(--color-primary-orange);
}

.trust-dot-2 {
    background: var(--color-light-peach);
}

.trust-dot-3 {
    background: var(--color-pink-accent);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-light-peach) 100%);
    box-shadow: 0 10px 30px rgba(245, 138, 76, 0.4);
    cursor: pointer;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    color: #000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(245, 138, 76, 0.6);
}

/* Responsive Design */
@media (min-width: 640px) {
    .nav-logo-text {
        display: inline;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 72px;
    }
    
    .section-title {
        font-size: 64px;
    }
    
    .final-cta-title {
        font-size: 72px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
    
    .connection-line {
        display: block;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tier-card-popular {
        transform: scale(1.05);
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    
    .nav-cta {
        display: inline-flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 96px;
    }
    
    .events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}