/* Mediterranean Color Palette */
:root {
    --deep-blue: #1a3a52;
    --warm-orange: #d97757;
    --terracotta: #c45a3a;
    --olive-green: #6b7d47;
    --sandy-beige: #f5f1e8;
    --cream: #faf8f3;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --shadow: rgba(26, 58, 82, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #2a4a6a 50%, var(--deep-blue) 100%);
    overflow: hidden;
    padding: 80px 20px 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 119, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 125, 71, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 30px;
    animation: fadeIn 1.2s ease-out;
}

.logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--warm-orange);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--sandy-beige);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-feature {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--warm-orange);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 58, 82, 0.2);
}

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

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #2a4a6a 100%);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

.screenshots .section-title {
    color: var(--white);
    margin-top: 40px;
}

.screenshots .section-subtitle {
    color: var(--sandy-beige);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 20px 0;
}

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    padding: 10px;
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--white) 0%, var(--sandy-beige) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: none; /* Hidden for now */
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px var(--shadow);
}

.btn-primary {
    background: var(--warm-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 119, 87, 0.4);
}

.btn-secondary {
    background: var(--deep-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: #2a4a6a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 58, 82, 0.4);
}

/* Footer */
.footer {
    background: var(--deep-blue);
    padding: 60px 20px 40px;
    text-align: center;
    color: var(--white);
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--sandy-beige);
    font-weight: 300;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

    .section-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .logo {
        width: 140px;
        height: 140px;
    }
}

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

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

    .section-title {
        font-size: 1.8rem;
    }

    .features,
    .screenshots,
    .cta {
        padding: 60px 15px;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

