:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --pink-pastel: #FFB3D9;
    --pink-light: #FFC9E5;
    --blue-pastel: #B3E5FF;
    --blue-light: #D4F1FF;
    --green-pastel: #B3FFCC;
    --yellow-pastel: #FFF4B3;
    --text-color: #000000;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: transparent;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#site-root {
    min-height: 100vh;
    position: relative;
    background: transparent;
}

#interactive-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.clear-canvas-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-canvas-button:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.clear-canvas-button:active {
    transform: scale(0.95);
}

#SITE_CONTAINER {
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

#PAGES_CONTAINER {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
    background: transparent;
}



/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.smiley-top {
    width: 200px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.smiley-top path {
    fill: var(--text-color);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-title {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 50px;
    color: var(--text-color);
    letter-spacing: -3px;
    text-transform: none;
}

.hero-decorations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    font-size: 3rem;
}

.arrow {
    width: 200px;
    height: auto;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.1));
    animation: wiggle 3s ease-in-out infinite;
}

.arrow path {
    fill: var(--text-color);
}

.arrow-1 {
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.arrow-2 {
    animation-delay: 1.5s;
    transform: rotate(180deg);
}

@keyframes wiggle {
    0%, 100% { 
        transform: rotate(-5deg);
    }
    50% { 
        transform: rotate(5deg);
    }
}

.arrow-2 {
    animation-name: wiggle2;
}

@keyframes wiggle2 {
    0%, 100% { 
        transform: rotate(180deg);
    }
    50% { 
        transform: rotate(175deg);
    }
}

.smiley {
    width: 120px;
    height: auto;
    transform: rotate(-8deg);
    filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.1));
}

.smiley path {
    fill: var(--text-color);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin: 50px auto 40px;
    max-width: 600px;
    color: var(--text-color);
}

.hero-description a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--text-color);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.hero-description a:hover {
    color: var(--pink-pastel);
    border-bottom-color: var(--pink-pastel);
    transform: translateY(-1px);
}

.social-icons-hero {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 50px 0 30px;
}

.social-icon-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon-hero:hover {
    transform: scale(1.15) rotate(5deg);
    background-color: #333;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.hero-footer-text {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 60px;
    line-height: 1.5;
}

/* Calendar Section */
.calendar-section {
    padding: 80px 20px;
    background: transparent;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.calendar-header {
    text-align: center;
    margin-bottom: 60px;
}

.calendar-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.calendar-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.calendar-container iframe {
    display: block;
    width: 100%;
}

.calendar-note {
    text-align: center;
    margin-top: 40px;
}

.calendar-note p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Footer */
#SITE_FOOTER {
    background-color: transparent;
    color: var(--text-color);
    padding: 60px 20px 40px;
    text-align: center;
}

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

.footer-info {
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-contact a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--text-color);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.footer-contact a:hover {
    color: var(--pink-pastel);
    border-bottom-color: var(--pink-pastel);
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-social-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .shape-pink-1 {
        width: 300px;
        height: 260px;
    }
    
    .shape-pink-2 {
        width: 220px;
        height: 200px;
    }
    
    .shape-blue-1 {
        width: 280px;
        height: 250px;
    }
    
    .shape-blue-2 {
        width: 220px;
        height: 200px;
    }
    
    .shape-blue-3 {
        width: 160px;
        height: 140px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .calendar-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 30px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
    }
    
    .hero-decorations {
        gap: 20px;
        font-size: 2rem;
        margin: 30px 0;
    }
    
    .arrow {
        width: 150px;
    }
    
    .smiley-top {
        width: 150px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
        margin: 30px auto;
    }
    
    .social-icon-hero {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .social-icons-hero {
        gap: 20px;
        margin: 40px 0 20px;
    }
    
    .calendar-section {
        padding: 60px 30px;
    }
    
    .calendar-header {
        margin-bottom: 40px;
    }
    
    .calendar-header h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .calendar-container {
        margin: 0 -10px;
        border-radius: 8px;
    }
    
    #SITE_FOOTER {
        padding: 50px 30px 40px;
    }
    
    .footer-info h3 {
        font-size: 1.1rem;
    }
    
    .footer-address,
    .footer-contact {
        font-size: 0.95rem;
    }
    
    .clear-canvas-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .clear-canvas-button {
        display: none;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-decorations {
        gap: 15px;
        margin: 25px 0;
    }
    
    .arrow {
        width: 120px;
    }
    
    .smiley-top {
        width: 120px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 5px;
        margin: 25px auto;
        line-height: 1.7;
    }
    
    .hero-footer-text {
        font-size: 0.85rem;
    }
    
    .social-icon-hero {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .social-icons-hero {
        gap: 15px;
        margin: 35px 0 15px;
    }
    
    .calendar-section {
        padding: 50px 20px;
    }
    
    .calendar-header {
        margin-bottom: 35px;
    }
    
    .calendar-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .calendar-container {
        margin: 0 -5px;
        border-radius: 6px;
    }
    
    .calendar-container iframe {
        height: 500px;
    }
    
    #SITE_FOOTER {
        padding: 45px 20px 35px;
    }
    
    .footer-info {
        margin-bottom: 30px;
    }
    
    .footer-info h3 {
        font-size: 1rem;
    }
    
    .footer-address,
    .footer-contact {
        font-size: 0.9rem;
    }
    
    .footer-social {
        margin-bottom: 25px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .clear-canvas-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
