/* Base Styles */
:root {
    --primary: #7209b7;
    --secondary: #4cc9f0;
    --accent: #f72585;
    --dark: #1a1a2e;
    --light: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-900: #212529;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

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

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--gray-900);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-container {
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent);
}

p {
    margin-bottom: 1.5rem;
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.25rem;
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

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

.hero-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.circles-bg {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--light) !important;
    box-shadow: 0 4px 15px rgba(114, 9, 183, 0.3);
}

.btn-secondary {
    background: var(--light);
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114, 9, 183, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(114, 9, 183, 0.05);
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.feature-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gradient);
    color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.item-placeholder {
    position: relative;
    aspect-ratio: 3/2;
    background: var(--gray-100);
}

.gallery-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-text {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
}

/* Generator Section */
.generator-section {
    padding: 6rem 0;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    position: relative;
}

.generator-content {
    flex: 1;
    max-width: 550px;
    margin-left: auto;
    padding-left: 1.5rem;
}

.generator-content .section-title {
    text-align: left;
}

.generator-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.generator-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.generator-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-icon {
    color: var(--primary);
}

.generator-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin-right: auto;
}

.generator-bg {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-column a {
    display: block;
    color: var(--gray-300);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

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

.copyright {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .circles-bg {
        top: 0;
        right: auto;
        transform: none;
    }
    
    .generator-section {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .generator-content {
        max-width: 100%;
        text-align: center;
        margin: 0;
        padding: 0 1.5rem;
    }
    
    .generator-content .section-title {
        text-align: center;
    }
    
    .generator-features li {
        justify-content: center;
    }
    
    .generator-visual {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        overflow: hidden;
        transition: all 0.3s ease;
        gap: 0;
        text-align: center;
        padding: 0;
    }
    
    .nav-menu.active {
        height: auto;
        padding: 1rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-tabs {
        flex-wrap: wrap;
    }
}
