:root {
    --primary-color: #1b5e20;
    --secondary-color: #d6a01d;
    --dark-color: #0a3d0f;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --section-padding: 5rem 2rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Julius Sans One', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0 0 0 0.5rem;
    color: var(--primary-color);
}

.logo-svg {
    transition: var(--transition);
}

.logo:hover .logo-svg {
    transform: rotate(10deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover:after {
    width: 100%;
}

.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 5rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.calligraphy {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.5s;
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 1s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider.reversed {
    transform: rotate(180deg);
    bottom: auto;
    top: 0;
}

.about {
    background-color: var(--light-color);
    padding: var(--section-padding);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.practices {
    background-color: white;
    padding: var(--section-padding);
    position: relative;
}

.chakra-visualization {
    margin: 3rem 0;
}

.chakras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chakra-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: rgba(245, 245, 245, 0.5);
    transition: var(--transition);
}

.chakra-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.chakra-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.asana-sequences {
    margin-top: 5rem;
}

.asana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.asana-item {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.asana-item img {
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.asana-item:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery {
    background-color: var(--light-color);
    padding: var(--section-padding);
    position: relative;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item img {
    transition: var(--transition);
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.schedule {
    background-color: white;
    padding: var(--section-padding);
    position: relative;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-day {
    background-color: rgba(245, 245, 245, 0.5);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule-day h3 {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(27, 94, 32, 0.2);
}

.schedule-item {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(27, 94, 32, 0.1);
}

.schedule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.time {
    font-weight: 500;
}

.level {
    color: var(--secondary-color);
    font-style: italic;
    text-align: right;
}

.contact {
    background-color: var(--light-color);
    padding: var(--section-padding);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-email {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-form {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Alegreya Sans', sans-serif;
    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(27, 94, 32, 0.1);
}

.footer {
    background-color: #1b1b1b;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.footer-logo svg {
    filter: brightness(1.2);
}

.footer-logo h3 {
    color: white;
    margin: 0 0 0 0.5rem;
}

.footer-quote {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-style: italic;
}

.footer-quote span {
    display: block;
    margin-top: 0.5rem;
    color: var(--secondary-color);
}

.footer-links {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
}

.footer-nav {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
}

.footer a {
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    opacity: 0.8;
}

.footer a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem 2rem;
    }
    
    .calligraphy {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }
    
    .header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0.5rem;
    }
    
    .calligraphy {
        font-size: 2.5rem;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 0.5rem;
    }
    
    .level {
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }
    
    .footer-logo, .footer-quote, .footer-links, .footer-nav {
        grid-column: 1 / 2;
    }
    
    .footer-logo {
        grid-row: 1 / 2;
    }
    
    .footer-quote {
        grid-row: 2 / 3;
    }
    
    .footer-links {
        grid-row: 3 / 4;
    }
    
    .footer-nav {
        grid-row: 4 / 5;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2.5rem 1rem;
    }
    
    .calligraphy {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .chakras-grid, .asana-grid, .gallery-grid, .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        margin: 0.3rem 0;
        width: 100%;
        text-align: center;
    }
    
    .contact-form, .contact-info {
        padding: 1.5rem;
    }
}