/* =============================================
   BAJARU - Coming Soon Landing Page Styles
   ============================================= */

/* CSS Custom Properties (Variables) */
:root {
    --color-primary: #4CAF50;
    --color-secondary: #81C784;
    --color-accent: #FF9800;
    --color-background: #f8fdf8;
    --color-white: #ffffff;
    --color-text: #2d3436;
    --color-text-light: #636e72;

    --font-family: 'Poppins', sans-serif;

    --shadow-soft: 0 4px 20px rgba(76, 175, 80, 0.15);
    --shadow-medium: 0 8px 30px rgba(76, 175, 80, 0.2);

    --transition-smooth: all 0.3s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-background);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   Layout Container
   ============================================= */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    display: grid;
    grid-template-areas:
        "content"
        "image"
        "badge";
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

/* Hero Content */
.hero-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Image */
.hero-image-wrapper {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.hero-image {
    max-width: 550px;
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(76, 175, 80, 0.2));
    transition: var(--transition-smooth);
}

.hero-image:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 40px rgba(76, 175, 80, 0.25));
}

/* Coming Soon Badge */
.coming-soon-badge {
    grid-area: badge;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.badge-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--color-secondary);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* =============================================
   Fade In Animations
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--color-white);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.contact a {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* =============================================
   Media Queries - Responsive Design
   ============================================= */

/* Tablet (768px and up) */
@media screen and (min-width: 768px) {
    .container {
        padding: 3rem 2rem;
    }

    .hero {
        gap: 2.5rem;
        padding: 3rem 0;
    }

    .hero-image {
        max-width: 600px;
    }

    .badge-text {
        font-size: 1.125rem;
        padding: 1rem 2.5rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

/* Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
    .hero {
        grid-template-areas:
            "content"
            "image"
            "badge";
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-image {
        max-width: 650px;
    }
}

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "content image"
            "badge badge";
        align-items: center;
        text-align: left;
        gap: 3rem 4rem;
    }

    .hero-content {
        align-items: flex-start;
    }

    .hero-subtitle {
        margin: 0;
    }

    .hero-image-wrapper {
        justify-content: flex-end;
    }

    .hero-image {
        max-width: 720px;
    }

    .coming-soon-badge {
        margin: 0 auto;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .pulse-ring {
        animation: none;
    }

    .hero-image:hover {
        transform: none;
    }
}
