/* Reset and Base Styles */
:root {
    --primary-color: #D97706;
    --primary-dark: #B45309;
    --gradient-start: #FF6B35;
    --gradient-mid: #F7931E;
    --gradient-end: #FDC830;
    --text-dark: #1F2937;
    --text-light: #374151;
    --background: #111827;
    --background-light: #1F2937;
    --hero-bg: #0F172A;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #E5E7EB;
    background-color: var(--background);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2D1B4E 0%, #1a0f2e 50%, #0F172A 100%);
    position: relative;
    padding: 60px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(253, 200, 48, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-right {
    padding-left: 2rem;
}

.app-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

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

.hero-slogan {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-description {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #D1D5DB;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.app-store-button {
    transition: transform 0.3s ease;
}

.app-store-button:hover {
    transform: translateY(-2px);
}

.app-store-button img {
    height: 48px;
    width: auto;
}

/* Screenshots Section */
.screenshots {
    background-color: var(--background-light);
}

.carousel-inner img {
    height: 550px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.carousel-inner .gap-3 {
    gap: 1.5rem !important;
}

/* Customize Bootstrap carousel indicators */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #374151;
    border: none;
    opacity: 1;
}

.carousel-indicators .active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--primary-color);
}

/* Customize Bootstrap carousel controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Footer */
footer {
    background-color: #000000;
    color: #9CA3AF;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-dark);
}

/* Privacy Page Styles */
.privacy-page {
    background-color: var(--background);
    max-width: 900px;
}

.privacy-page h1 {
    color: #F9FAFB;
}

.last-updated {
    color: #9CA3AF;
    font-style: italic;
}

.policy-section h2 {
    color: #E5E7EB;
}

.policy-section h3 {
    color: #D1D5DB;
}

.policy-section p,
.policy-section li {
    color: #9CA3AF;
    line-height: 1.8;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-section strong {
    color: #E5E7EB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-right {
        padding-left: 0;
        text-align: center;
        margin-top: 2rem;
    }

    .hero-slogan {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .app-icon {
        width: 80px;
        height: 80px;
    }

    .title-image {
        max-width: 240px;
    }

    .carousel-inner img {
        height: 450px;
        max-width: 90vw;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators .active {
        width: 24px;
    }
    
    /* Improve touch targets for mobile */
    .app-store-button {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 20px;
    }

    .hero-slogan {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .app-icon {
        width: 70px;
        height: 70px;
    }

    .title-image {
        max-width: 200px;
    }

    .carousel-inner img {
        height: 380px;
        max-width: 95vw;
    }

    .app-store-button img {
        height: 45px;
    }

    .carousel-indicators [data-bs-target] {
        width: 6px;
        height: 6px;
    }

    .carousel-indicators .active {
        width: 20px;
    }
    
    /* Ensure proper text sizing on mobile */
    .privacy-page {
        padding: 2rem 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.25rem;
    }
}
