/* Global Styles */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-color: #F7F7F7;
    --accent-color: #FFE66D;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--dark-color);
}

/* Typography */
.fancy-font {
    font-family: 'Bungee', cursive;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Righteous', cursive;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-color);
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--accent-color) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.highlight-text {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    animation: underline 1.5s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: var(--accent-color);
    border: none;
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -75px;
    right: -75px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

/* About Section */
#about {
    background-color: var(--light-color);
    position: relative;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '🐔';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Download Section */
.download-section {
    background: linear-gradient(45deg, #FF416C 0%, #FF4B2B 100%);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

.download-button-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
}

.btn-download {
    background: #fff;
    color: #FF416C;
    padding: 1rem 2.5rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #FF4B2B;
}

.btn-download:active {
    transform: translateY(-1px);
}

/* Footer Section */
.footer-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #2C3E50, #1a252f);
    border-top: 3px solid var(--primary-color);
}

.footer-title {
    font-family: 'Righteous', cursive;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-shapes .footer-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.footer-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.footer-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

@keyframes underline {
    0%, 100% { width: 100%; }
    50% { width: 50%; }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        text-align: center;
        padding: 5rem 0 3rem;
    }

    .hero-section img {
        margin-top: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .footer-title {
        margin-top: 2rem;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-list li:hover::before {
    animation: bounce 0.5s ease infinite;
} 