:root {
    --primary-color: #FF69B4;
    --secondary-color: #98FB98;
    --accent-color: #87CEEB;
    --text-color: #333;
    --background-color: #fff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header and Navigation */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo {
    min-width: 100px;
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    width: 200px;
    height: auto;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links.active {
    display: block;
}

.nav-links li {
    list-style: none;
    margin: 1rem 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Main Content */
main {
    margin-top: 80px;
    padding: 1rem;
}

.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--accent-color);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    color: white;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.address::before {
    content: "📍";
    margin-right: 0.5rem;
}

.contact::before {
    content: "📞";
    margin-right: 0.5rem;
}

.social::before {
    content: "📱";
    margin-right: 0.5rem;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .footer-info {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        width: auto;
        box-shadow: none;
        padding: 0;
    }

    .nav-links li {
        margin: 0 1rem;
    }
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.welcome-block {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    margin-bottom: 2rem;
}

.welcome-block h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.motto {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-top: 2rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .welcome-block {
        padding: 3rem;
    }
    
    .info-card {
        padding: 2rem;
    }
}

/* Add styles for the main image */
.main-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Add these styles for the parents page */
.parents-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.rules-intro {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    margin-bottom: 2rem;
}

.rules-intro h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.rules-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.rules-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rules-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.rules-card ul {
    list-style: none;
}

.rules-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.rules-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.rules-card.highlight {
    background-color: var(--secondary-color);
}

.rules-card.highlight a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.rules-card.highlight a:hover {
    text-decoration: underline;
}

.prohibited li::before {
    content: "⚠";
    color: #ff4444;
}

.conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .rules-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rules-card {
        padding: 2rem;
    }
}

/* Document page styles */
.documents-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.documents-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.document-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.document-card h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}

.download-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #ff4da6;
}

@media (min-width: 768px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .document-card {
        padding: 2rem;
    }
}

/* Add these styles to handle multiple buttons in a document card */
.document-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 480px) {
    .document-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .document-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Add this to your existing styles */
.documents-subtitle {
    text-align: center;
    color: var(--primary-color);
    margin: 4rem 0 2rem;
    font-size: 1.2rem;
} 