/* Base Styles and Variables */
:root {
    --primary-color: #FF6B6B;
    /* Pastel Red */
    --secondary-color: #4ECDC4;
    /* Pastel Teal */
    --accent-color: #ffe66d;
    /* Pastel Yellow */
    --text-color: #2D3436;
    /* Dark Grey */
    --bg-color: #f7f1e3;
    /* Off-white Cream */
    --white: #ffffff;
    --font-main: 'Fredoka', sans-serif;
    --header-height: 80px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    height: var(--header-height);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-weight: 500;
    font-size: 1.1rem;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
}

.btn-nav:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-lang {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 1rem;
}

.btn-lang:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 2;
    padding-bottom: 100px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-text .highlight {
    color: var(--primary-color);
    display: block;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
}

.tv-support {
    margin-top: 15px;
    font-size: 0.9rem !important;
    font-weight: 500;
    opacity: 0.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--text-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-speed);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background-color: #000;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    max-height: 500px;
}

/* Animations */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Privacy Page Specifics */
.privacy-page .privacy-content {
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 800px;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-content p,
.privacy-content ul {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.privacy-content ul {
    padding-left: 20px;
    list-style: disc;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--bg-color);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-footer {
    background-color: var(--text-color);
    color: #eee;
}

.dark-footer .logo,
.dark-footer h3 {
    color: var(--white);
}

.dark-footer a {
    color: #ccc;
}

.dark-footer a:hover {
    color: var(--primary-color);
}

.dark-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-links ul {
    display: flex;
    gap: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        /* Hide standard nav on mobile */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        padding: 20px;
        display: none;
    }

    nav.active ul {
        display: flex;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
}