/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --navy-blue: #1a2332;
    --dark-navy: #0f1621;
    --gold: #f7b239;
    --dark-gold: #d89a2a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--navy-blue);
    overflow-x: hidden;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(247, 178, 57, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 178, 57, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo {
    width: 280px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

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

.coming-soon {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--gold);
    margin: 1.5rem 0;
    text-shadow: 0 4px 20px rgba(247, 178, 57, 0.3);
    letter-spacing: 3px;
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(247, 178, 57, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.location:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 178, 57, 0.3);
}

.location i {
    font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===========================
   Animation Classes
   =========================== */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

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

/* ===========================
   Content Wrapper
   =========================== */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===========================
   Newsletter Section
   =========================== */
.newsletter {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(247, 178, 57, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(247, 178, 57, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

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

.email-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(247, 178, 57, 0.3);
}

.subscribe-btn {
    padding: 1.2rem 2.5rem;
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 178, 57, 0.4);
}

.subscribe-btn i {
    transition: transform 0.3s ease;
}

.subscribe-btn:hover i {
    transform: translateX(5px);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    min-height: 24px;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #ff6b6b;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 6rem 2rem;
    background: var(--light-gray);
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy-blue);
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 2.5rem 2rem;
    background: var(--dark-navy);
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

.footer-tagline {
    color: var(--gold);
    font-weight: 600;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .logo {
        width: 220px;
    }
    
    .coming-soon {
        margin: 1rem 0;
    }
    
    .location {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .about,
    .newsletter,
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input,
    .subscribe-btn {
        width: 100%;
    }
    
    .subscribe-btn {
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Accessibility
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}
