:root {
    --primary-color: #1c6044;
    --secondary-color: #63a87c;
    --light-color: #f9f9f9;
    --accent-color: #8a4d9e;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-light: #f0f7f4;
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

button, .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Philosopher', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    position: relative;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.btn-secondary:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.energy-line {
    height: 2px;
    width: 120px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 1rem auto;
    position: relative;
}

.energy-line::before, .energy-line::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 30px;
    background: var(--primary-color);
}

.energy-line::before {
    left: -40px;
    top: 0;
    transform: rotate(45deg);
}

.energy-line::after {
    right: -40px;
    top: 0;
    transform: rotate(-45deg);
}

.wave-divider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-divider.inverted {
    transform: rotate(180deg);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-medium);
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width var(--transition-medium);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    padding: 8px 16px !important;
    border-radius: 30px;
}

.nav-btn:hover {
    background-color: var(--accent-color);
}

.nav-btn::after {
    display: none;
}

.hero {
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../images/hero-banner.webp') no-repeat center center;
    background-size: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 96, 68, 0.8), rgba(138, 77, 158, 0.6));
    z-index: -1;
}

.hero-content {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--light-text);
    padding: 5rem 0;
    position: relative;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-decoration {
    position: relative;
}

.sacred-geometry {
    width: 300px;
    height: 300px;
    opacity: 0.7;
}

.about-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    flex-basis: calc(50% - 1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
}

.philosophy-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.philosophy-text {
    flex: 1.2;
}

.philosophy-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-card {
    flex-basis: calc(50% - 1.5rem);
    background-color: var(--light-text);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.principle-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.practice-journal {
    background-color: var(--light-text);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.journal-example {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.journal-page {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.journal-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.journal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.journal-content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.classes-section {
    position: relative;
    padding: 5rem 0;
    background-color: #ffffff;
}

.classes-categories {
    margin-top: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-item {
    padding: 10px 20px;
    border-radius: 30px;
    background-color: var(--light-color);
    cursor: pointer;
    transition: all var(--transition-medium);
    font-weight: 600;
}

.tab-item.active, .tab-item:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-content.hidden {
    display: none;
}

.class-card {
    display: flex;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.class-image {
    flex: 0.7;
    position: relative;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.class-card:hover .class-image img {
    transform: scale(1.1);
}

.class-info {
    flex: 1.3;
    padding: 2rem;
}

.class-info h3 {
    margin-bottom: 1rem;
}

.class-details {
    margin: 1.5rem 0;
}

.class-details li {
    margin-bottom: 0.5rem;
}

.gallery-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--light-text);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.location-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.location-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.location-map {
    flex: 1;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.static-map {
    width: 100%;
    height: auto;
}

.location-info {
    flex: 1;
}

.studio-list {
    margin-top: 2rem;
}

.studio-item {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    transition: all var(--transition-medium);
}

.studio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.studio-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.studio-features {
    margin-top: 1rem;
}

.studio-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.contact-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    position: relative;
}

.contact-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: -1;
    opacity: 0.3;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
}

.contact-text h4 {
    margin-bottom: 0.3rem;
}

.contact-form-container {
    flex: 1;
    background-color: var(--light-text);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(28, 96, 68, 0.2);
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
}

.site-footer {
    position: relative;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.footer-item {
    padding: 1rem;
}

.logo-item {
    grid-column: 1;
    grid-row: 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-svg {
    width: 180px;
}

.footer-item h3 {
    color: var(--light-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-text);
    text-decoration: underline;
}

.chakra-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.chakra-icon {
    width: 40px;
    height: 40px;
    transition: all var(--transition-medium);
}

.chakra-icon:hover {
    transform: rotate(90deg) scale(1.1);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .sacred-geometry {
        width: 250px;
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sacred-geometry {
        width: 200px;
        height: 200px;
    }
    
    .about-content,
    .philosophy-content,
    .location-content,
    .contact-content {
        flex-direction: column;
    }
    
    .philosophy-principles,
    .benefits-list {
        justify-content: center;
    }
    
    .principle-card,
    .benefit-item {
        flex-basis: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .class-card {
        flex-direction: column;
    }
    
    .class-image {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .category-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-item {
        text-align: center;
    }
}

@media (max-width: 375px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
}

.policy-section {
    padding: 8rem 0 4rem;
    background-color: var(--light-color);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-text);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-header {
    margin-bottom: 2rem;
    position: relative;
}

.policy-header h1 {
    margin-bottom: 1rem;
}

.policy-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.8rem;
    list-style-type: disc;
}

.back-to-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 30px;
    transition: all var(--transition-medium);
}

.back-to-home:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    padding: 4rem 0;
}

.thankyou-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--light-text);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thankyou-container h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thankyou-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.return-home {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-medium);
}

.return-home:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}