/* Base styles */
:root {
    --primary-color: #1a472a;
    --secondary-color: #7ba05b;
    --accent-color: #cb997e;
    --light-color: #f9f4f0;
    --dark-color: #333333;
    --bg-color: #ffffff;
    --bg-alt-color: #f8f9fa;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poiret One', cursive;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-submit {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
}

.logo-svg {
    transition: var(--transition);
}

.logo-svg:hover {
    filter: drop-shadow(0 0 3px rgba(26, 71, 42, 0.3));
}

.main-nav ul {
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

.main-nav ul li a {
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Hero section styles */
.hero-section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 5rem;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.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-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* About section styles */
.about-section {
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image img {
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Benefits section styles */
.benefits-section {
    background-color: var(--bg-alt-color);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-card p {
    color: var(--dark-color);
}

/* Classes section styles */
.classes-section {
    background-color: var(--bg-color);
}

.classes-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.class-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.category-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.category-card h3 {
    margin-bottom: 1rem;
}

.category-card ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.category-card li {
    margin-bottom: 0.5rem;
}

.beginner {
    border-left: 4px solid #9cc89d;
    background-color: rgba(156, 200, 157, 0.1);
}

.intermediate {
    border-left: 4px solid #7ba05b;
    background-color: rgba(123, 160, 91, 0.1);
}

.advanced {
    border-left: 4px solid #1a472a;
    background-color: rgba(26, 71, 42, 0.1);
}

.schedule {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.schedule h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.day h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.day ul {
    list-style-type: none;
}

.day li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    border-left: 2px solid var(--secondary-color);
}

.time {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

/* Breathing section styles */
.breathing-section {
    background-color: var(--bg-alt-color);
    position: relative;
}

.breathing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.breathing-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.breathing-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.breathing-techniques {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.technique {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.technique:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.technique h3 {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    margin: 0;
}

.technique-content {
    padding: 1.5rem;
}

.technique-image {
    margin-bottom: 1rem;
}

.technique-image img {
    width: 100%;
    border-radius: 5px;
}

.technique-description p {
    font-size: 1rem;
    color: var(--dark-color);
}

/* Gallery section styles */
.gallery-section {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Testimonials section styles */
.testimonials-section {
    background-color: var(--bg-alt-color);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.author-info p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Contact section styles */
.contact-section {
    background-color: var(--bg-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 1rem;
}

.zen-quote {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    font-style: italic;
    position: relative;
}

.zen-quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: 0.5rem;
    font-family: serif;
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.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(26, 71, 42, 0.2);
}

/* Footer styles */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 0.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-item {
    position: relative;
}

.footer-item:nth-child(even) {
    transform: translateY(2rem);
}

.footer-links ul {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-quote blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-quote cite {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.footer-policies ul {
    list-style-type: none;
}

.footer-policies li {
    margin-bottom: 0.8rem;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-policies a:hover {
    color: white;
    padding-left: 5px;
}

.om-symbol {
    margin-top: 2rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .about-grid,
    .classes-info,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-item:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .benefits-grid,
    .breathing-techniques,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .header-inner {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 0.5rem;
    }
    
    .hero-text {
        padding: 1rem 0;
    }
    
    .hero-text h1 {
        margin-top: 2rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .benefit-card,
    .technique,
    .testimonial,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .om-symbol {
        text-align: center;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .benefit-card h3,
    .technique h3,
    .day h4 {
        font-size: 1.3rem;
    }
    
    .technique-content {
        padding: 1rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .footer h3 {
        font-size: 1.5rem;
    }
}

/* Thank you page styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 5rem;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.back-to-home {
    display: inline-block;
    margin-top: 1rem;
}

/* Policy pages styles */
.policy-section {
    min-height: 100vh;
    padding: 6rem 2rem 3rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-header {
    margin-bottom: 3rem;
    position: relative;
}

.policy-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem 0;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-header p {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.policy-content {
    font-size: 1rem;
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin: 2.5rem 0 1.5rem;
}

.policy-content h2::after {
    margin: 0.8rem 0 0;
    width: 50px;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
}

.policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.policy-link:hover {
    color: var(--secondary-color);
}

.policy-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.05;
    z-index: -1;
}

.decoration-1 {
    top: 10%;
    right: 5%;
}

.decoration-2 {
    bottom: 10%;
    left: 5%;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.policy-footer .back-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    transition: var(--transition);
}

.policy-footer .back-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 2rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.6rem;
    }
    
    .policy-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .policy-section {
        padding: 5rem 1rem 2rem;
    }
    
    .policy-container {
        padding: 1.5rem;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        font-size: 0.95rem;
    }
    
    .thank-you-title {
        font-size: 2.2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
}

/* Custom animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateOm {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.benefit-icon:hover svg {
    animation: pulse 1.5s infinite ease-in-out;
}

.technique:hover .technique-image img {
    animation: float 3s infinite ease-in-out;
}

.om-symbol:hover svg {
    animation: rotateOm 10s infinite linear;
}

/* Custom hover effects */
.btn-primary:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(123, 160, 91, 0.5);
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(123, 160, 91, 0.5);
}

.contact-item:hover .contact-icon {
    transform: scale(1.2);
}

.gallery-item:hover {
    box-shadow: 0 0 20px rgba(26, 71, 42, 0.3);
}