/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f4ff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: #8e44ad;
    transition: color 0.3s ease;
}

a:hover {
    color: #9b59b6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #6c3483;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

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

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

.logo {
    width: 200px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    fill: #8e44ad;
}

.logo-icon {
    fill: #9b59b6;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

nav a {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(155, 89, 182, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #8e44ad;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9b59b6, #3498db);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #9b59b6;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #8e44ad;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-visual {
    flex: 1;
}

.frame {
    fill: none;
    stroke: #8e44ad;
    stroke-width: 2;
}

.circle-outer {
    fill: none;
    stroke: #9b59b6;
    stroke-width: 2;
    opacity: 0.7;
}

.circle-middle {
    fill: none;
    stroke: #8e44ad;
    stroke-width: 3;
    opacity: 0.5;
}

.circle-inner {
    fill: #9b59b6;
    opacity: 0.3;
}

.wave {
    fill: none;
    stroke: #8e44ad;
    stroke-width: 2;
    opacity: 0.8;
}

/* Gallery Section */
.gallery {
    background-color: #f0f0f0;
}

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

.gallery-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item svg {
    width: 100%;
    height: auto;
}

.gallery-frame {
    fill: #f9f4ff;
    stroke: #9b59b6;
    stroke-width: 2;
}

.gallery-text {
    font-size: 20px;
    fill: #8e44ad;
    text-anchor: middle;
    dominant-baseline: middle;
}

.gallery-item h3 {
    padding: 20px;
    text-align: center;
}

/* Premium Section */
.premium {
    text-align: center;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
}

.premium h2 {
    color: white;
}

.premium h2::after {
    background: white;
}

.features-list {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    list-style-position: inside;
    font-size: 1.1rem;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex-basis: 100%;
    margin-bottom: 40px;
}

.footer-logo svg {
    width: 180px;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    fill: white;
}

.footer-links {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ddd;
}

.footer-column a:hover {
    color: white;
}

.footer-disclaimer {
    flex-basis: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-visual {
        margin-top: 30px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav li {
        margin: 10px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
