/* Base Styles and Reset */
:root {
    --primary: #ff4b4b;
    --secondary: #4b8bff;
    --accent: #4bff4b;
    --dark: #111111;
    --light: #f8f8f8;
    --gray: #777777;
    --light-gray: #e5e5e5;
    --gradient-red: linear-gradient(135deg, #ff4b4b 0%, #ff8b4b 100%);
    --gradient-blue: linear-gradient(135deg, #4b8bff 0%, #4bffff 100%);
    --gradient-green: linear-gradient(135deg, #4bff4b 0%, #4bffb4 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

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

a:hover {
    color: #333;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Header Styles */
header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
    margin-right: 0.75rem;
}

.logo span {
    letter-spacing: -0.03em;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--dark);
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

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

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

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    padding: 8rem 0 5rem;
    background: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><circle cx="20" cy="20" r="1" fill="%23ddd"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.highlight {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.highlight::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 0.5em;
    bottom: 0;
    left: -5%;
    background-color: rgba(255, 75, 75, 0.15);
    z-index: -1;
}

.cta-button {
    display: inline-block;
    background: var(--dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Trends Section */
.trends {
    padding: 5rem 0;
    background-color: white;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trend-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    background-color: var(--light);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

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

.trend-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.trend-card h3 {
    margin-bottom: 1rem;
}

.trend-card p {
    color: var(--gray);
}

/* Styles Section */
.styles {
    padding: 6rem 0;
    background-color: var(--dark);
    color: white;
}

.styles h2 {
    color: white;
}

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

.style-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Culture Section */
.culture {
    padding: 6rem 0;
    background-color: #f0f0f0;
}

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

.culture-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.culture-item:nth-child(1) {
    border-top: 3px solid var(--primary);
}

.culture-item:nth-child(2) {
    border-top: 3px solid var(--secondary);
}

.culture-item:nth-child(3) {
    border-top: 3px solid var(--accent);
}

.culture-item h3 {
    margin-bottom: 1rem;
}

.culture-item p {
    color: var(--gray);
}

/* Generators Section */
.generators {
    padding: 6rem 0;
    background-color: white;
}

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

.generators-content p {
    margin-bottom: 2rem;
}

.generators-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.generators-links li {
    margin-bottom: 1rem;
}

.generators-links a {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background-color: #f0f0f0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
}

.generators-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background-color: var(--dark);
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

footer h4 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trend-grid {
        grid-template-columns: 1fr;
    }
    
    .generators-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .generators-links a {
        width: 80%;
    }
}
