/* Base Styles */
:root {
    --primary: #6C5CE7;
    --primary-light: #8F7FF7;
    --primary-dark: #5849D6;
    --secondary: #2D3436;
    --light: #FFFFFF;
    --grey-light: #F1F2F6;
    --grey-medium: #DFE4EA;
    --grey-dark: #A4B0BE;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --shadow-sm: 0 2px 10px rgba(108, 92, 231, 0.1);
    --shadow-md: 0 4px 20px rgba(108, 92, 231, 0.15);
    --shadow-lg: 0 8px 30px rgba(108, 92, 231, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light);
}

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

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
}

.logo-icon {
    margin-right: 10px;
}

.nav-links {
    display: flex;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

/* Trending Section */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Entertainment Section */
.entertainment {
    background-color: var(--grey-light);
}

.content-panel {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.content-panel p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

/* Celebrities Section */
.section-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.spotlight-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    transition: var(--transition);
    text-align: center;
}

.spotlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.spotlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.spotlight-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.spotlight-item p {
    color: var(--text-secondary);
}

/* Resources Section */
.resources {
    background-color: var(--grey-light);
}

.resources-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.resources-content p {
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}

.resources-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.resources-links li {
    margin-bottom: 15px;
}

.resources-links a {
    display: inline-block;
    background-color: var(--grey-medium);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.resources-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Footer Styles */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.footer-logo-icon {
    margin-right: 10px;
}

.footer-sections {
    display: flex;
    gap: 60px;
}

footer h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

footer ul li {
    margin-bottom: 10px;
}

footer ul a {
    color: var(--grey-medium);
    font-size: 0.9rem;
}

footer ul a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--grey-dark);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-sections {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .footer-sections {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-grid,
    .section-flex {
        grid-template-columns: 1fr;
    }
    
    .spotlight-item {
        min-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
