/* Global Styles */
:root {
    --primary-color: #ff3366;
    --secondary-color: #5533ff;
    --accent-color: #33cc99;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333344;
    --link-color: #ff3366;
    --card-bg: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

.alt-bg {
    background-color: rgba(85, 51, 255, 0.05);
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 1rem;
}

header h1 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.more-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.more-button:hover {
    opacity: 0.9;
    color: white;
    transform: translateY(-2px);
}

.view-more {
    margin-top: 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: left;
}

/* Legal Pages */
.legal-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.legal-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-content h4 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-content p, 
.legal-content ul, 
.legal-content ol {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.legal-content ul, 
.legal-content ol {
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0;
}

.footer-links .active {
    color: var(--primary-color);
    font-weight: bold;
}

/* Sites Sections */
.sites-section {
    text-align: center;
}

.sites-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.site-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.site-icon {
    margin-bottom: 1.5rem;
}

.site-info h3 {
    margin-bottom: 0.5rem;
}

.site-info p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.visit-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.visit-button:hover {
    opacity: 0.9;
    color: white;
}

/* Categories Section */
.sites-section {
    text-align: center;
    padding: 4rem 0;
}

.sites-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.category-item svg {
    margin-bottom: 1rem;
}

.category-item span {
    font-weight: 500;
}

/* About Section */
.about-section {
    background-color: var(--dark-color);
    color: white;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: #ddd;
    padding: 4rem 0 2rem;
}

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

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

.footer-logo svg {
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
}

.footer-logo h3 {
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1.2rem;
}

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

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

.footer-column a {
    color: #ddd;
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.disclaimer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: center;
}

/* Media Queries */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links {
        flex: 0 0 100%;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .sites-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: var(--dark-color);
        height: 100vh;
        width: 250px;
        padding: 6rem 2rem 2rem;
        z-index: 1000;
        transition: var(--transition);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav li {
        margin: 1rem 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .sites-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 80%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .site-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .legal-content h3 {
        font-size: 1.4rem;
    }
    
    .legal-content h4 {
        font-size: 1.2rem;
    }
}
