/* Base Styles and Variables */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #1e88e5;
    --accent-color: #43a047;
    --text-color: #212121;
    --text-light: #757575;
    --bg-color: #ffffff;
    --dark-bg: #212121;
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

section {
    padding: 80px 0;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.primary-btn:hover {
    box-shadow: 0 7px 20px rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.outline-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.small-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.full-width {
    display: block;
    width: 100%;
}

/* Color Stripes */
.color-stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 1000;
    display: flex;
}

.stripe {
    flex: 1;
    height: 100%;
}

.s1 { background-color: var(--primary-color); }
.s2 { background-color: #ff9800; }
.s3 { background-color: var(--secondary-color); }
.s4 { background-color: #673ab7; }
.s5 { background-color: var(--accent-color); }

/* Header */
.site-header {
    position: sticky;
    top: 5px; /* Below color stripes */
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.4rem;
}

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

.logo-accent {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li:not(:last-child) {
    margin-right: 25px;
}

.nav-list a {
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

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

.nav-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
}

.nav-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
    padding-top: 120px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.art-canvas {
    position: relative;
}

.art-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s infinite linear;
}

.particle:nth-child(1) {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 10%;
    animation-duration: 12s;
    background: var(--accent-color);
}

.particle:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 70%;
    left: 20%;
    animation-duration: 10s;
    animation-delay: 1s;
    background: var(--secondary-color);
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 20%;
    animation-duration: 14s;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 12px;
    height: 12px;
    bottom: 20%;
    right: 30%;
    animation-duration: 11s;
    animation-delay: 3s;
    background: var(--accent-color);
}

.particle:nth-child(5) {
    width: 10px;
    height: 10px;
    bottom: 40%;
    left: 40%;
    animation-duration: 13s;
    animation-delay: 4s;
    background: var(--secondary-color);
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(0, -60px);
    }
    75% {
        transform: translate(-30px, -30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.wave-divider svg {
    width: 100%;
    height: 100px;
}

/* Gallery Section */
.gallery {
    background-color: #f5f5f5;
    padding-top: 100px;
}

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

.art-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.art-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.art-frame {
    overflow: hidden;
}

.art-info {
    padding: 20px;
    text-align: center;
}

.art-info h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.art-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    background-color: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: #f9f9f9;
}

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

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

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

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-features svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

/* Access Section */
.access {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.access h2 {
    color: white;
}

.access .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.access-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.access-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.access-header h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.access-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.access-features {
    padding: 30px;
}

.access-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.access-features svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.access-card .btn {
    margin: 0 30px 30px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-favicon {
    margin-right: 15px;
}

.footer-nav ul {
    display: flex;
}

.footer-nav li:not(:last-child) {
    margin-right: 30px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container,
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-visual {
        order: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 0 0 20px !important;
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 10px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .access-card .btn {
        margin: 0 15px 15px;
    }
}
