/* Base Styles */
:root {
    --primary-color: #6b2d5c;
    --secondary-color: #e6c619;
    --accent-color: #3a7ca5;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #f9f9f9;
    --card-bg: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

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

ul {
    list-style: none;
}

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

svg {
    display: block;
}

h1, h2, h3, h4 {
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 4rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 8rem 0;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: var(--light-text);
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--light-text);
}

.logo span {
    font-size: 2.4rem;
    font-weight: 700;
    margin-left: 1rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin-bottom: 5px;
    border-radius: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #421a38 100%);
    text-align: center;
    padding-top: 6rem;
}

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

.hero h1 {
    color: var(--light-text);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    color: var(--light-text);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 5rem;
    font-weight: 700;
    font-size: 1.8rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.cta-button:hover {
    background-color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1 1 30%;
    min-width: 150px;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.4rem;
    color: #666;
}

/* Services Section */
.services-section {
    background-color: #f3f3f3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 2rem;
    color: var(--accent-color);
}

/* Entertainment Section */
.entertainment-section {
    background-color: var(--background-color);
}

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

.resource-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.resource-card ul {
    margin-top: 1.5rem;
}

.resource-card li {
    margin-bottom: 1rem;
}

.resource-card a {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Contact Section */
.contact-section {
    background-color: #f3f3f3;
}

.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(107, 45, 92, 0.1);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5rem;
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: #5a234d;
    transform: translateY(-3px);
}

.contact-info {
    padding-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #222;
    color: var(--light-text);
    padding: 5rem 0 2rem;
}

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

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

.footer-logo p {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 1rem;
}

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

.footer-nav h4,
.footer-social h4 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #aaa;
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 1.4rem;
    color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%;
    }
    
    .hamburger {
        display: flex;
        z-index: 101;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--primary-color);
        z-index: 100;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: unset;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .services-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .resource-card {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}
