/* Font declarations for Georgian fonts */
@font-face {
    font-family: 'BPG Nino Mtavruli';
    src: url('bpg_nino_mtavruli_book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BPG Nino Mtavruli';
    src: url('bpg_nino_mtavruli_bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "BPG Nino Mtavruli", sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: #651f5e;
    color: var(--text);
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

/* Mocha Theme (Default) */
body.mocha-theme {
    color: #d2bbce;
    background-color: #651f5e;
}

body.mocha-theme .navbar,
body.mocha-theme .course-card,
body.mocha-theme .contact-method,
body.mocha-theme footer {
    background-color: #181825; /* Mocha Crust */
}

body.mocha-theme .hero {
    background: linear-gradient(180deg, #651f5e 0%, #4a163f 100%);
}

/* Latte Theme */
body.latte-theme {
    color: #d2bbce;
    background-color: #651f5e;
}

body.latte-theme .navbar,
body.latte-theme .course-card,
body.latte-theme .contact-method,
body.latte-theme footer {
    background-color: #dce0e8; /* Latte Crust */
}

body.latte-theme .hero {
    background: linear-gradient(180deg, #651f5e 0%, #4a163f 100%);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, #4a163f, #2d0f2e);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s ease;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #dbcbda;
}

body.mocha-theme .logo {
    color: #dbcbda;
}
body.latte-theme .logo {
    color: #dbcbda;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: #dbcbda;
    cursor: pointer;
    transition: color 0.2s ease;
}

body.mocha-theme .nav-links a {
    color: #dbcbda;
}
body.latte-theme .nav-links a {
    color: #dbcbda;
}

body.mocha-theme .nav-links a:hover {
    color: #EFE6EE;
}
body.latte-theme .nav-links a:hover {
    color: #EFE6EE;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 100px 50px 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #651f5e 0%, #4a163f 100%);
}

body.mocha-theme .hero {
    color: #f5e0dc;
} /* Mocha Rosewater */
body.latte-theme .hero {
    color: #d20f39;
} /* Latte Rosewater */

#letter-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(4px); /* Added blur effect */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.3em;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(0.92) contrast(1.05);
}

.hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: var(--primary) !important;
    color: white !important;
}

body.mocha-theme .cta-button {
    background-color: #f5e0dc; /* Mocha Rosewater */
    color: #1e1e2e; /* Mocha Base */
}

body.mocha-theme .cta-button:hover {
    background-color: #f38ba8; /* Mocha Red */
    color: #1e1e2e;
}

body.latte-theme .cta-button {
    background-color: #d20f39; /* Latte Rosewater */
    color: #eff1f5; /* Latte Base */
}

body.latte-theme .cta-button:hover {
    background-color: #dc8a78; /* Latte Red */
    color: #eff1f5;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent) !important;
}

/* Courses Section */
.courses {
    padding: 80px 50px;
    text-align: center;
    background: linear-gradient(180deg, #4a163f 0%, #651f5e 100%);
}

.courses h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

body.mocha-theme .courses h2 {
    color: #d2bbce;
}
body.latte-theme .courses h2 {
    color: #d2bbce;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.course-card,
.contact-method {
    background: var(--background-alt);
    color: var(--text);
}

.course-card {
    background: #4B1640;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

body.mocha-theme .course-card {
    background: #4B1640;
}

body.latte-theme .course-card {
    background: #4B1640;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.course-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #dbcbda;
}

body.mocha-theme .course-card h3 {
    color: #dbcbda;
}

body.latte-theme .course-card h3 {
    color: #dbcbda;
}

.course-card p {
    color: #dbcbda;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Contact Section */
.contact {
    padding: 80px 50px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

body.mocha-theme .contact h2 {
    color: #d2bbce;
}
body.latte-theme .contact h2 {
    color: #d2bbce;
}

.contact p {
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-method {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-method h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

body.mocha-theme .contact-method h3 {
    color: #cba6f7;
}
body.latte-theme .contact-method h3 {
    color: #8839ef;
}

.contact-method p {
    margin: 0;
}

.contact-method a {
    text-decoration: none;
    transition: color 0.3s;
    color: var(--secondary);
}

body.mocha-theme .contact-method a {
    color: #89b4fa;
} /* Mocha Blue */
body.latte-theme .contact-method a {
    color: #1e66f5;
} /* Latte Blue */

body.mocha-theme .contact-method a:hover {
    color: var(--text);
}
body.latte-theme .contact-method a:hover {
    color: var(--text);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 50px;
    color: #dbcbda;
    background: #2d0f2e;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section:last-child {
    text-align: left;
}

.footer-section:last-child h3 {
    text-align: left;
}

.footer-section:last-child p {
    text-align: left;
}

.footer-contact {
    margin-top: 20px;
    text-align: left;
}

.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dbcbda;
    font-size: 0.95em;
    padding: 5px 0;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    width: 16px;
    color: #dbcbda;
    font-size: 1.1em;
}

.footer-contact a {
    color: #dbcbda;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-section h3 {
    color: #dbcbda;
    font-size: 1.5em;
    margin-bottom: 15px;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.footer-section .connect-title {
    margin-top: 25px;
}

.footer-section p {
    color: #dbcbda;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-section a {
    color: #dbcbda;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin: 5px 0;
}

.footer-section a:hover {
    opacity: 0.8;
    color: #dbcbda;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #dbcbda;
    font-size: 1.5em;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(219, 203, 218, 0.1);
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
    background: rgba(219, 203, 218, 0.2);
    color: #dbcbda;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(219, 203, 218, 0.1);
    color: #dbcbda;
    opacity: 0.8;
}

body.mocha-theme footer {
    background: #2d0f2e;
}

body.latte-theme footer {
    background: #2d0f2e;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .navbar {
        padding: 20px 30px;
    }
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .courses,
    .contact {
        padding: 40px 20px;
    }
    .courses h2,
    .contact h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 4rem;
    }
    
    .hero-text h1 {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
        max-width: 350px;
    }

    .hero-image img {
        max-width: 90%;
        filter: brightness(0.92) contrast(1.05);
    }

    footer {
        padding: 30px 20px;
    }
    
    .footer-section h3 {
        font-size: 1.3em;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}

:root {
    --primary: #651f5e;
    --secondary: #dfcedd;
    --accent: #9b4b8f;
    --text: #d2bbce;
    --text-light: #d2bbce;
    --background: #651f5e;
    --background-alt: #7a256f;
    --border: #8b4b84;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

.hero-text .highlight {
    color: #d2bbce;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.action-btn.primary {
    background: var(--secondary);
    color: var(--primary);
}

.action-btn.secondary {
    background: rgba(223, 206, 221, 0.1);
    color: white;
    border: 1px solid rgba(223, 206, 221, 0.2);
}

.action-btn.primary:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 5px 15px rgba(155, 75, 143, 0.3);
}

.feature i {
    color: var(--accent);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature h3 {
    color: var(--primary);
}

.feature p {
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(101, 31, 94, 0.1);
}

.contact-form button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.contact-form button:hover {
    box-shadow: 0 4px 15px rgba(101, 31, 94, 0.3);
}

.footer-section h3 {
    color: #d2bbce;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

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

.social-links a {
    color: var(--primary);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

body.mocha-theme .navbar {
    background: linear-gradient(135deg, #4a163f, #2d0f2e);
}

body.latte-theme .navbar {
    background: linear-gradient(135deg, #4a163f, #2d0f2e);
}

/* Schedule and Pricing Section */
.schedule-pricing {
    padding: 80px 50px;
    text-align: center;
    background: linear-gradient(180deg, #651f5e 0%, #4a163f 100%);
}

.schedule-pricing h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

body.mocha-theme .schedule-pricing h2 {
    color: #d2bbce;
}
body.latte-theme .schedule-pricing h2 {
    color: #d2bbce;
}

.schedule-pricing-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-card,
.pricing-card {
    background: rgba(45, 15, 46, 0.3);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.schedule-card {
    min-height: 300px;
}

.schedule-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.schedule-card h3,
.pricing-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #dbcbda;
}

.schedule-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.schedule-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #dbcbda;
}

.schedule-list li::before {
    content: "•";
    color: #dbcbda;
    position: absolute;
    left: 0;
}

.pricing-options {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.pricing-option {
    background: rgba(219, 203, 218, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-option:hover {
    background: rgba(219, 203, 218, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pricing-option h4 {
    color: #dbcbda;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.pricing-option p {
    color: #dbcbda;
    opacity: 0.9;
    margin-bottom: 10px;
}

.pricing-option .price {
    font-size: 1.5em;
    color: #dbcbda;
    font-weight: bold;
    margin: 10px 0;
}

.pricing-option .features {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.pricing-option .features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #dbcbda;
}

.pricing-option .features li::before {
    content: "✓";
    color: #dbcbda;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .schedule-pricing-container {
        grid-template-columns: 1fr;
    }
    
    .schedule-pricing {
        padding: 40px 20px;
    }
    
    .schedule-pricing h2 {
        font-size: 2em;
    }
    
    .schedule-card h3,
    .pricing-card h3 {
        font-size: 1.5em;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 120px 50px 80px;
    text-align: center;
    background: linear-gradient(180deg, #651f5e 0%, #4a163f 100%);
}

.portfolio h2 {
    font-size: 2.5em;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #dbcbda;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.teacher-card {
    background: #4B1640;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.teacher-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.teacher-card:hover .teacher-image {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.05);
}

.teacher-info {
    padding: 25px;
    text-align: left;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.teacher-card:hover .teacher-info {
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}

.teacher-info h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #dbcbda;
}

.teacher-title {
    color: #dbcbda;
    opacity: 0.8;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.teacher-bio {
    color: #dbcbda;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.teacher-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.teacher-expertise span {
    background: rgba(219, 203, 218, 0.1);
    color: #dbcbda;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.teacher-expertise span:hover {
    background: rgba(219, 203, 218, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .portfolio {
        padding: 100px 20px 40px;
    }
    
    .portfolio h2 {
        font-size: 2em;
    }
    
    .teacher-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Page Transitions */
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #dbcbda;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: linear-gradient(135deg, #4a163f, #2d0f2e);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        padding: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.lang-switch button {
    background: none;
    border: none;
    color: inherit;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.lang-switch button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-switch button:active {
    transform: translateY(0) scale(0.95);
}

.lang-switch button span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.lang-switch button:hover span {
    transform: rotate(360deg);
}

@media screen and (max-width: 768px) {
    .lang-switch {
        margin-top: 20px;
    }
    
    .lang-switch button {
        padding: 10px 16px;
        font-size: 1.3rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: linear-gradient(180deg, #651f5e 0%, #4a163f 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: rgba(45, 15, 46, 0.3);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(219, 203, 218, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 1.5em;
    color: #dbcbda;
    background: rgba(219, 203, 218, 0.2);
    padding: 15px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-text h3 {
    color: #dbcbda;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.contact-text p {
    color: #dbcbda;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-text a {
    color: #dbcbda;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    opacity: 0.8;
}

.map-container {
    background: rgba(45, 15, 46, 0.3);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 600px;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.social-media-section {
    background: rgba(45, 15, 46, 0.3);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    text-align: center;
}

.social-media-section h3 {
    color: #dbcbda;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: #dbcbda;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(219, 203, 218, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-button i {
    font-size: 1.2em;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-button.facebook:hover {
    background: #1877f2;
}

.social-button.instagram:hover {
    background: #e4405f;
}

.social-button.linkedin:hover {
    background: #0077b5;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
    
    .social-media-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .social-buttons {
        gap: 15px;
    }
    
    .social-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

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

.schedule-group {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.schedule-group:hover {
    transform: translateY(-5px);
}

.schedule-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.schedule-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-group li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

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

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

.schedule-text {
    margin-top: 2rem;
    text-align: left;
}

.schedule-text h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

.schedule-text p {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--text);
}

.schedule-text p:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.schedule-text h4:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .schedule-text {
        margin-top: 1.5rem;
    }
    
    .schedule-text h4 {
        font-size: 1.1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 50px;
    background: linear-gradient(180deg, #651f5e 0%, #4a163f 100%);
}

.gallery h2 {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.5em;
    color: #dbcbda;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-caption {
    display: none; /* Hide the caption completely */
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 10px;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover {
    color: #bbb;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 1001;
}

.modal-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Animation */
.modal-content, #modalCaption {
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* Responsive */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 500px){
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

.schedule-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.schedule-info h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.schedule-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.schedule-info li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-info li:last-child {
    border-bottom: none;
}

.schedule-info p {
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
    font-style: italic;
}

.special-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.special-note h4 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-align: center;
}

.special-note p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    text-align: center;
}

.special-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.special-note li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    text-align: center;
    position: relative;
    padding-left: 1.5rem;
}

.special-note li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}
