/* Hamburger Menu Styles */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: rgb(191, 170, 101);
    margin: 5px 0;
    transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav {
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 80px 20px 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 999;
}

.nav.active {
    left: 0;
}

.nav a {
    display: block;
    margin: 15px 0;
    color: rgb(191, 170, 101);
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.nav.active a {
    opacity: 1;
    transform: translateX(0);
}

.nav a:nth-child(1) { transition-delay: 0.1s; }
.nav a:nth-child(2) { transition-delay: 0.2s; }
.nav a:nth-child(3) { transition-delay: 0.3s; }
.nav a:nth-child(4) { transition-delay: 0.4s; }
.nav a:nth-child(5) { transition-delay: 0.5s; }

.nav a span {
    display: inline-block;
    position: relative;
    padding: 2px 0;
}

.nav a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: rgb(191, 170, 101);
    transition: width 0.3s ease;
}

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

/* Dark Theme Styles */
html {
    height: 100%;
}

body {
    background-color: #000;
    color: white;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.main-content {
    flex-grow: 1;
    padding-top: 60px;
}

.header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
}

.footer {
    background-color: #000;
    border-top: 1px solid rgb(191, 170, 101);
    padding: 20px 0;
    margin-top: auto;
}

.footer h3, .footer p, .footer a {
    color: rgb(191, 170, 101);
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.social-link {
    color: rgb(191, 170, 101);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.social-link:hover {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.social-link svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

.logo-container {
    margin-top: 15vh; 
    text-align: center; 
    margin-bottom: 5rem; 
}

.main-logo {
    max-width: 80%;
    height: auto;
}

.main-content-events {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: rgb(191, 170, 101);
    font-family: 'Playfair Display', serif;
}

.event-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-card {
    background-color: #000;
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 4px solid rgb(191, 170, 101);
    display: flex;
    flex-direction: column;
    color: rgb(191, 170, 101);
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: rgb(191, 170, 101);
    font-family: 'Playfair Display', serif;
}

.event-date, .event-time, .event-location {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: rgb(191, 170, 101);
}

.event-location a {
    color: rgb(191, 170, 101);
    text-decoration: none;
}

.event-location a:hover {
    text-decoration: underline;
}

.event-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    display: inline-block;
}

.event-description {
    margin: 1rem 0;
    flex-grow: 1;
    color: white;
}

.event-description p a {
    color: rgb(191, 170, 101);
    text-decoration: none;
}

.event-description p a:hover {
    text-decoration: underline;
}

.event-pricing {
    background-color: rgba(191, 170, 101, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.event-pricing h3 {
    color: rgb(191, 170, 101);
    margin-top: 0;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.event-pricing ul {
    margin: 0.5rem 0 0;
    padding-left: 1.5rem;
    color: rgb(191, 170, 101);
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .event-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-container {
        margin-top: 10vh;
    }
    .event-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .logo-container {
        margin-top: 8vh;
    }
    .event-container {
        grid-template-columns: 1fr;
    }
}

/* Pricing styles */
.pricing-table {
    width: 60%;
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: #000;
}

.pricing-table th {
    background-color: rgba(191, 170, 101, 0.1);
    font-weight: bold;
    color: rgb(191, 170, 101);
    border: 1px solid rgb(191, 170, 101);
    padding: 1rem;
}

.pricing-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid rgb(191, 170, 101);
    color: white;
}

.pricing-table tr:hover {
    background-color: rgba(191, 170, 101, 0.05);
}

.pricing-heading {
    color: rgb(191, 170, 101);
    font-family: 'Playfair Display', serif;
    margin: 1.25rem 0 0.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.pricing-description {
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.95rem;
    text-align: center;
}

.pricing-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
    text-align: center;
}

/* Contact styles */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #000;
    text-align: center;
}

.contact-title {
    text-align: center;
    margin-bottom: 2rem;
    color: rgb(191, 170, 101);
}

.contact-item {
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-item .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.contact-icon {
    color: rgb(191, 170, 101);
    display: inline-flex;
    align-items: center;
}

.contact-link {
    color: rgb(191, 170, 101);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.whatsapp-button {
    display: inline-block;
    background-color: rgb(191, 170, 101);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background-color: rgba(191, 170, 101, 0.8);
}

.main-content-pricing {
    width: 90%;
    max-width: 1000px;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 1rem;
}

@media (max-width: 768px) {
    .main-content-pricing {
        width: 95%;
        padding: 3rem 0.5rem;
    }
}

/* Private Lessons styles */
.private-lessons-info {
    margin: 2rem 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #ffffff;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(191, 170, 101);
    font-weight: bold;
    font-size: 1.2rem;
} 