/* Base styles and resets */
:root {
    --primary: #FF2D55;
    --secondary: #FF9500;
    --accent: #5AC8FA;
    --text: #FFFFFF;
    --text-muted: #BBBBBB;
    --background: #121212;
    --card-bg: #222222;
    --border-radius: 8px;
    --gradient: linear-gradient(90deg, var(--primary), var(--secondary));
    --shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.page-container {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

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

h2 {
    font-size: 2.5rem;
    text-align: center;
}

.accent {
    color: var(--primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.cta-nav {
    background: var(--gradient);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Hero section */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 45, 85, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 149, 0, 0.15) 0%, transparent 30%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    z-index: 1;
    padding: 2rem;
}

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

.tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--gradient);
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 45, 85, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 45, 85, 0.5);
}

.primary-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.secondary-button {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(255, 45, 85, 0.1);
    transform: translateY(-3px);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 450px;
}

/* Highlights section */
.highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(34, 34, 34, 0.5);
}

.highlight-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 1.5rem;
    text-align: center;
    background: rgba(24, 24, 24, 0.7);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(34, 34, 34, 0.9);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.highlight-card h3 {
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--text-muted);
}

/* Gallery section */
.gallery-section {
    padding: 5rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.placeholder-media {
    width: 100%;
    height: 300px;
    background-color: rgba(34, 34, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item h4 {
    padding: 1rem;
    margin-bottom: 0.2rem;
}

.media-type {
    display: block;
    padding: 0 1rem 1rem;
    color: var(--accent);
    font-size: 0.9rem;
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-button {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-button:hover {
    background: rgba(255, 45, 85, 0.1);
}

/* Generator section */
.generator-section {
    padding: 5rem 2rem;
    background-color: rgba(24, 24, 24, 0.7);
}

.generator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(34, 34, 34, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 45, 85, 0.2);
}

.generator-steps {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step-number {
    background: var(--gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.3rem;
    color: var(--text);
}

.step-content p {
    color: var(--text-muted);
}

.cta-container {
    text-align: center;
}

/* FAQ section */
.faq-section {
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    margin-bottom: 1rem;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-answer {
    color: var(--text-muted);
}

/* Access section */
.access-section {
    padding: 5rem 2rem;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        radial-gradient(circle at 30% 50%, rgba(255, 45, 85, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 149, 0, 0.3) 0%, transparent 50%);
    text-align: center;
}

.access-content {
    max-width: 700px;
    margin: 0 auto;
}

.access-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--background);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-links-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links-column a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 110;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem 4rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .primary-button, .secondary-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
