/* Base Styles */
:root {
    --primary: #004d40;
    --primary-light: #39796b;
    --primary-dark: #00251a;
    --secondary: #a7c0cd;
    --secondary-light: #daf4ff;
    --secondary-dark: #77909c;
    --background: #ffffff;
    --background-alt: #f5f5f5;
    --text: #222222;
    --text-light: #555555;
    --text-dark: #000000;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fauna One', serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary);
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

.rounded-image {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Wave Dividers */
.wave-divider {
    position: relative;
    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.inverted {
    transform: rotate(180deg);
}

.wave-divider.footer-wave svg {
    height: 120px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    width: 200px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover:after {
    width: 100%;
    transform: scaleX(1.2) scaleY(1.5);
}

.nav-icon {
    margin-right: 0.5rem;
}

.nav-mobile {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 80px;
    margin-bottom: 2rem;
}

.hero-content {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
    z-index: 2;
    background-color: rgba(0, 77, 64, 0.7);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-text h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-block;
    background-color: var(--background);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.hero-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover:before {
    left: 100%;
}

/* Philosophy Section */
.philosophy {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    margin-bottom: 1rem;
}

/* Practice Section */
.practice {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.practice-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.practice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.practice-icon {
    margin-bottom: 1.5rem;
}

.mudras-block {
    margin-top: 4rem;
    text-align: center;
}

.mudras-block h3 {
    margin-bottom: 2rem;
}

.mudras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mudra {
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mudra:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mudra-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary);
}

.practice-journal {
    margin-top: 4rem;
}

.practice-journal h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.journal-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.journal-template {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.journal-day {
    padding: 1.5rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.journal-day h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    color: var(--primary);
}

.journal-day ul {
    list-style-position: inside;
    padding-left: 0.5rem;
}

.journal-day li {
    margin-bottom: 0.5rem;
}

/* Schedule Section */
.schedule {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.schedule-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-category {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header.beginner {
    background-color: var(--primary);
}

.category-header.intermediate {
    background-color: var(--primary-light);
}

.category-header.advanced {
    background-color: var(--primary-dark);
}

.category-header h3 {
    color: white;
    margin-bottom: 0;
}

.category-content {
    padding: 1.5rem;
    background-color: var(--background);
}

.schedule-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--secondary-dark);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: bold;
    width: 100px;
}

.schedule-time {
    width: 120px;
    color: var(--text-light);
}

.schedule-name {
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial {
    display: flex;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 150px;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.testimonial-content {
    padding: 1.5rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    opacity: 0.2;
}

.testimonial-author {
    margin-top: 1rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.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: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--secondary-dark);
    border-radius: var(--border-radius);
    font-family: 'Fauna One', serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 77, 64, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label input {
    margin: 0;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.submit-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover:before {
    left: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    position: relative;
    padding-top: 120px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-item h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-item h4:after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: white;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--secondary-light);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.logo-svg-footer {
    width: 100%;
    height: auto;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-pattern {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Thank You Page */
.thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.thankyou h1 {
    margin-bottom: 2rem;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.back-btn {
    margin-top: 2rem;
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: var(--transition);
}

.back-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Policy Pages */
.policy-page {
    padding: 8rem 0 5rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-content {
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--secondary);
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-footer {
    margin-top: 3rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .philosophy-principles,
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .nav-list-mobile {
        display: flex;
        list-style: none;
    }
    
    .nav-item-mobile {
        margin-left: 1rem;
    }
    
    .nav-link-mobile {
        display: flex;
        align-items: center;
        transition: var(--transition);
    }
    
    .philosophy-content,
    .journal-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .journal-template {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .philosophy-principles,
    .practice-grid,
    .mudras-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        flex-direction: column;
    }
    
    .testimonial-image {
        width: 100%;
        height: 200px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        padding: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}