/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #3B3350;
    background-color: #FFF3F5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 243, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 157, 175, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #3B3350;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
    font-weight: 500;
    margin-right: 16px;
}

.nav-link:hover {
    color: #FF6F95;
    background-color: rgba(255, 157, 175, 0.1);
}

.github-link {
    color: #3B3350;
    padding: 8px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.github-link:hover {
    color: #FF6F95;
    background-color: rgba(255, 157, 175, 0.1);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3B3350;
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #FFF3F5 0%, #FFE8F1 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #3B3350;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #6B5B73;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.app-store-button svg {
    flex-shrink: 0;
}

.coming-soon {
    background: linear-gradient(135deg, #FF9DB8 0%, #FF6F95 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 157, 184, 0.3);
    border: none;
    cursor: default;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Features section */
.features {
    padding: 6rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B3350;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #FFF3F5;
    border-radius: 16px;
    border: 1px solid rgba(255, 157, 175, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 157, 184, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3B3350;
    margin-bottom: 1rem;
}

.feature p {
    color: #6B5B73;
    font-size: 1.1rem;
}

/* Screenshots section */
.screenshots {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF3F5 0%, #FFE8F1 100%);
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B3350;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #6B5B73;
    margin-bottom: 3rem;
}

/* Carousel styles */
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 40px rgba(255, 157, 184, 0.15);
    border: 1px solid rgba(255, 157, 175, 0.2);
}

.carousel-track {
    display: flex;
    width: 800%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    width: 12.5%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 157, 184, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 157, 184, 0.3);
}

.carousel-btn:hover {
    background: rgba(255, 111, 149, 0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 157, 184, 0.4);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 157, 184, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #FF9DB8;
    transform: scale(1.2);
}

/* Contact section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B3350;
    margin-bottom: 1rem;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-email {
    display: inline-block;
    background: linear-gradient(135deg, #FF9DB8 0%, #FF6F95 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 157, 184, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 157, 184, 0.4);
}

/* Footer */
footer {
    background: #3B3350;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.8;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .app-store-buttons {
        justify-content: center;
    }
    
    .hero-image svg {
        width: 150px;
        height: 150px;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .screenshots h2 {
        font-size: 2rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo svg {
        width: 36px;
        height: 36px;
    }
    
    /* Carousel responsive styles */
    .carousel-container {
        margin: 0 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-slide img {
        max-height: 400px;
    }
}

/* Privacy page styles */
.privacy-content {
    padding: 4rem 0 6rem;
    background: white;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.privacy-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #3B3350;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #FF9DB8;
    padding-bottom: 0.5rem;
}

.privacy-text h2:first-of-type {
    margin-top: 1rem;
}

.privacy-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3B3350;
    margin: 2rem 0 1rem 0;
}

.privacy-text p {
    margin-bottom: 1.5rem;
    color: #6B5B73;
}

.privacy-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    color: #6B5B73;
}

.privacy-text li {
    margin-bottom: 0.8rem;
}

.privacy-text strong {
    color: #3B3350;
}

.privacy-text a {
    color: #FF6F95;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}