/* Modern CSS with CSS Variables for easy theming */
:root {
    --primary-color: #9c27b0;
    --secondary-color: #673ab7;
    --accent-color: #e91e63;
    --background-color: #121212;
    --text-color: #ffffff;
    --card-bg-color: #1e1e1e;
    --header-bg: #0a0a0a;
    --footer-bg: #0a0a0a;
    --gradient-start: #9c27b0;
    --gradient-end: #e91e63;
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
}

/* Import Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Raleway:wght@400;600;800&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

ul {
    list-style: none;
}

/* Header styles */
header {
    background-color: var(--header-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-svg {
    width: 200px;
    height: 50px;
}

.logo-text {
    fill: var(--primary-color);
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 24px;
}

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

.menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    color: white;
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero section */
#hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.8), rgba(233, 30, 99, 0.8)), 
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    background-color: rgba(233, 30, 99, 0.2);
    bottom: 0;
    left: 0;
    z-index: -1;
}

/* Features section */
#features {
    padding: 5rem 0;
    background-color: var(--background-color);
}

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

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

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

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.icon-circle {
    fill: rgba(156, 39, 176, 0.1);
    stroke: var(--primary-color);
    stroke-width: 2;
}

.icon-path {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-rect {
    fill: rgba(156, 39, 176, 0.1);
    stroke: var(--primary-color);
    stroke-width: 2;
}

.icon-inner {
    fill: var(--accent-color);
}

.icon-triangle {
    fill: rgba(156, 39, 176, 0.1);
    stroke: var(--primary-color);
    stroke-width: 2;
}

.icon-dot {
    fill: var(--accent-color);
}

/* About section */
#about {
    padding: 5rem 0;
    background-color: var(--card-bg-color);
}

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

/* Access section */
#access {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

#access h2, #access p {
    color: white;
}

#access .cta-button {
    background: white;
    color: var(--primary-color);
    margin-top: 2rem;
}

#access .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

.footer-logo {
    flex: 0 0 100%;
    margin-bottom: 2rem;
}

.footer-logo-svg {
    width: 200px;
    height: 50px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 0 0 48%;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

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

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

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .menu {
        position: absolute;
        flex-direction: column;
        background-color: var(--header-bg);
        top: 70px;
        left: 0;
        width: 100%;
        gap: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .menu.active {
        height: auto;
        padding: 1rem 0;
        opacity: 1;
    }
    
    .menu a {
        padding: 1rem;
        display: block;
        text-align: center;
    }
    
    .menu a::after {
        display: none;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    #hero {
        padding: 8rem 0 4rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-button.large {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}
