/* Global Styles */
:root {
    --primary-color: #ff4d94;
    --secondary-color: #0099ff;
    --accent-color: #00cc66;
    --dark-color: #222;
    --light-color: #f8f9fa;
    --gray-color: #666;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #d63a78;
}

section {
    padding: 80px 0;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    max-width: 180px;
}

.logo-svg {
    width: 180px;
    height: 45px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8e44ad, #3498db);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: #ffcc00;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #d63a78;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.cta-button.secondary {
    background-color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: #0077cc;
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 16px 36px;
}

/* Features Section */
.features-section {
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

/* Trending Section */
.trending-section {
    background-color: #f5f5f5;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trend-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--dark-color);
    color: white;
    height: 250px;
    position: relative;
    transition: var(--transition);
}

.trend-card:nth-child(1) {
    background: linear-gradient(135deg, #ff4d94, #ff9a44);
}

.trend-card:nth-child(2) {
    background: linear-gradient(135deg, #0099ff, #0044ff);
}

.trend-card:nth-child(3) {
    background: linear-gradient(135deg, #00cc66, #00a651);
}

.trend-content {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
}

.trend-card:hover .trend-content {
    transform: translateY(-10px);
}

.trend-link {
    color: white;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    border-bottom: 2px solid white;
}

.trend-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-svg {
    width: 150px;
    height: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav, .footer-legal {
    margin-right: 60px;
    margin-bottom: 30px;
}

.footer-nav h3, .footer-legal h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-legal a {
    color: #ccc;
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }
    
    .main-nav.active {
        max-height: 300px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .feature-grid, .trend-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 12px 24px;
    }
    
    .footer-links {
        flex-direction: column;
    }
}
