/* 
 * ZenVanUrith - Main Stylesheet
 * Modern Pilates studio website
 */

/* CSS Variables */
:root {
    /* Colors */
    --zenvanurith-primary: #5F8B4C;
    --zenvanurith-primary-light: #7ba66a;
    --zenvanurith-primary-dark: #4a6e3c;
    --zenvanurith-secondary: #FFDDAB;
    --zenvanurith-secondary-light: #ffe7c5;
    --zenvanurith-secondary-dark: #ffd291;
    --zenvanurith-accent: #FF9A9A;
    --zenvanurith-accent-dark: #945034;
    --zenvanurith-white: #ffffff;
    --zenvanurith-off-white: #f9f7f5;
    --zenvanurith-light-gray: #f0f0f0;
    --zenvanurith-gray: #919191;
    --zenvanurith-dark-gray: #555555;
    --zenvanurith-black: #2c2c2c;

    /* Typography */
    --zenvanurith-font-heading: 'Cormorant Garamond', serif;
    --zenvanurith-font-body: 'Montserrat', sans-serif;
    --zenvanurith-font-size-xs: 0.75rem;
    --zenvanurith-font-size-sm: 0.875rem;
    --zenvanurith-font-size-base: 1rem;
    --zenvanurith-font-size-md: 1.125rem;
    --zenvanurith-font-size-lg: 1.25rem;
    --zenvanurith-font-size-xl: 1.5rem;
    --zenvanurith-font-size-2xl: 2rem;
    --zenvanurith-font-size-3xl: 2.5rem;
    --zenvanurith-font-size-4xl: 3rem;

    /* Spacing */
    --zenvanurith-space-xs: 0.25rem;
    --zenvanurith-space-sm: 0.5rem;
    --zenvanurith-space-md: 1rem;
    --zenvanurith-space-lg: 1.5rem;
    --zenvanurith-space-xl: 2rem;
    --zenvanurith-space-2xl: 3rem;
    --zenvanurith-space-3xl: 4rem;

    /* Borders */
    --zenvanurith-border-radius-sm: 0.25rem;
    --zenvanurith-border-radius-md: 0.5rem;
    --zenvanurith-border-radius-lg: 1rem;
    --zenvanurith-border-radius-full: 999px;

    /* Shadows */
    --zenvanurith-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --zenvanurith-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --zenvanurith-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --zenvanurith-transition-fast: 150ms ease;
    --zenvanurith-transition-normal: 300ms ease;
    --zenvanurith-transition-slow: 500ms ease;

    /* Breakpoints */
    --zenvanurith-breakpoint-sm: 576px;
    --zenvanurith-breakpoint-md: 768px;
    --zenvanurith-breakpoint-lg: 992px;
    --zenvanurith-breakpoint-xl: 1200px;

    /* Container */
    --zenvanurith-container-padding: 1.5rem;
    --zenvanurith-container-max-width: 1140px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--zenvanurith-font-body);
    font-size: var(--zenvanurith-font-size-base);
    line-height: 1.6;
    color: var(--zenvanurith-black);
    background-color: var(--zenvanurith-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--zenvanurith-font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--zenvanurith-space-md);
}

h1 {
    font-size: var(--zenvanurith-font-size-3xl);
}

h2 {
    font-size: var(--zenvanurith-font-size-2xl);
}

h3 {
    font-size: var(--zenvanurith-font-size-xl);
}

p {
    margin-bottom: var(--zenvanurith-space-md);
}

a {
    color: var(--zenvanurith-primary);
    text-decoration: none;
    transition: color var(--zenvanurith-transition-fast);
}

a:hover {
    color: var(--zenvanurith-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.zenvanurith-container {
    width: 100%;
    max-width: var(--zenvanurith-container-max-width);
    margin: 0 auto;
    padding: 0 var(--zenvanurith-container-padding);
}

/* Buttons */
.zenvanurith-btn {
    display: inline-block;
    padding: var(--zenvanurith-space-sm) var(--zenvanurith-space-lg);
    border-radius: var(--zenvanurith-border-radius-full);
    font-weight: 500;
    font-size: var(--zenvanurith-font-size-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--zenvanurith-transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zenvanurith-btn-primary {
    background-color: var(--zenvanurith-primary);
    color: var(--zenvanurith-white);
}

.zenvanurith-btn-primary:hover {
    background-color: var(--zenvanurith-primary-dark);
    color: var(--zenvanurith-white);
}

.zenvanurith-btn-secondary {
    background-color: var(--zenvanurith-secondary);
    color: var(--zenvanurith-black);
}

.zenvanurith-btn-secondary:hover {
    background-color: var(--zenvanurith-secondary-dark);
    color: var(--zenvanurith-black);
}

/* Header */
.zenvanurith-header {
    position: relative;
    padding: var(--zenvanurith-space-md) 0;
    background-color: var(--zenvanurith-white);
    z-index: 100;
    transition: transform var(--zenvanurith-transition-normal);
}

.zenvanurith-header.hide {
    transform: translateY(-100%);
}

.zenvanurith-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zenvanurith-logo {
    display: flex;
    align-items: center;
    font-family: var(--zenvanurith-font-heading);
    font-size: var(--zenvanurith-font-size-xl);
    font-weight: 600;
    color: var(--zenvanurith-primary);
}

.zenvanurith-logo img {
    width: 7rem;
    position: relative;
    z-index: 20;
}

.zenvanurith-logo img {
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform var(--transition-normal);
}

.zenvanurith-logo:hover img {
    transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .zenvanurith-logo img {
        width: 6rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .zenvanurith-logo img {
        width: 6rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 576px) {
    .zenvanurith-logo img {
        width: 5rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 400px) {
    .zenvanurith-logo img {
        width: 5rem;
        position: relative;
        z-index: 20;
    }
}

.zenvanurith-circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 3px;
}

.zenvanurith-circle:nth-child(1) {
    background-color: var(--zenvanurith-primary);
}

.zenvanurith-circle:nth-child(2) {
    background-color: var(--zenvanurith-secondary);
}

.zenvanurith-circle:nth-child(3) {
    background-color: var(--zenvanurith-accent);
    margin-right: 0;
}

.zenvanurith-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.zenvanurith-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--zenvanurith-primary);
    position: absolute;
    left: 0;
    transition: all var(--zenvanurith-transition-normal);
}

.zenvanurith-menu-toggle span:nth-child(1) {
    top: 0;
}

.zenvanurith-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.zenvanurith-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.zenvanurith-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.zenvanurith-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.zenvanurith-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 40%;
}

.zenvanurith-nav-list {
    display: flex;
    align-items: center;
}

.zenvanurith-nav-link {
    display: inline-block;
    padding: var(--zenvanurith-space-sm) var(--zenvanurith-space-md);
    color: var(--zenvanurith-dark-gray);
    font-weight: 500;
    position: relative;
}

.zenvanurith-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--zenvanurith-primary);
    transition: all var(--zenvanurith-transition-normal);
    transform: translateX(-50%);
}

.zenvanurith-nav-link:hover:after,
.zenvanurith-nav-link.zenvanurith-active:after {
    width: 70%;
}

.zenvanurith-nav-link.zenvanurith-active {
    color: var(--zenvanurith-primary);
}

/* Hero Section */
.zenvanurith-hero {
    padding: var(--zenvanurith-space-3xl) 0;
    background-color: var(--zenvanurith-off-white);
    position: relative;
    overflow: hidden;
}

.zenvanurith-hero .zenvanurith-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.zenvanurith-hero-content {
    flex: 1;
    max-width: 600px;
}

.zenvanurith-hero-title {
    font-size: var(--zenvanurith-font-size-4xl);
    color: var(--zenvanurith-primary-dark);
    margin-bottom: var(--zenvanurith-space-lg);
}

.zenvanurith-hero-text {
    font-size: var(--zenvanurith-font-size-lg);
    margin-bottom: var(--zenvanurith-space-xl);
}

.zenvanurith-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.zenvanurith-abstract-shape {
    position: absolute;
}

.zenvanurith-circle-lg {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--zenvanurith-secondary);
    opacity: 0.8;
}

.zenvanurith-ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 15px solid var(--zenvanurith-accent);
    opacity: 0.7;
    top: 50px;
    right: 50px;
}

.zenvanurith-line {
    width: 5px;
    height: 200px;
    background-color: var(--zenvanurith-primary);
    border-radius: var(--zenvanurith-border-radius-full);
    transform: rotate(45deg);
    left: 100px;
    bottom: 50px;
}

/* Benefits Section */
.zenvanurith-benefits {
    padding: var(--zenvanurith-space-3xl) 0;
    background-color: var(--zenvanurith-white);
}

.zenvanurith-section-title {
    text-align: center;
    margin-bottom: var(--zenvanurith-space-2xl);
    color: var(--zenvanurith-primary-dark);
}

.zenvanurith-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--zenvanurith-space-xl);
}

.zenvanurith-benefit-card {
    padding: var(--zenvanurith-space-lg);
    border-radius: var(--zenvanurith-border-radius-md);
    background-color: var(--zenvanurith-off-white);
    text-align: center;
    transition: transform var(--zenvanurith-transition-normal), box-shadow var(--zenvanurith-transition-normal);
}

.zenvanurith-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zenvanurith-shadow-md);
}

.zenvanurith-benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto var(--zenvanurith-space-md);
    background-color: var(--zenvanurith-secondary-light);
    border-radius: 50%;
    font-size: var(--zenvanurith-font-size-xl);
    color: var(--zenvanurith-primary);
}

/* Featured Programs */
.zenvanurith-featured-programs {
    padding: var(--zenvanurith-space-3xl) 0;
    background-color: var(--zenvanurith-light-gray);
}

.zenvanurith-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--zenvanurith-space-xl);
}

.zenvanurith-program-card {
    border-radius: var(--zenvanurith-border-radius-md);
    overflow: hidden;
    background-color: var(--zenvanurith-white);
    box-shadow: var(--zenvanurith-shadow-sm);
    transition: transform var(--zenvanurith-transition-normal), box-shadow var(--zenvanurith-transition-normal);
}

.zenvanurith-program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zenvanurith-shadow-md);
}

.zenvanurith-program-image {
    height: 200px;
    overflow: hidden;
}

.zenvanurith-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--zenvanurith-transition-slow);
}

.zenvanurith-program-card:hover .zenvanurith-program-image img {
    transform: scale(1.05);
}

.zenvanurith-program-content {
    padding: var(--zenvanurith-space-lg);
}

.zenvanurith-program-content h3 {
    margin-bottom: var(--zenvanurith-space-sm);
    color: var(--zenvanurith-primary-dark);
}

/* Testimonials */
.zenvanurith-testimonials {
    padding: var(--zenvanurith-space-3xl) 0;
    background-color: var(--zenvanurith-white);
}

.zenvanurith-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zenvanurith-testimonial-quote {
    position: relative;
    padding: var(--zenvanurith-space-xl);
    background-color: var(--zenvanurith-off-white);
    border-radius: var(--zenvanurith-border-radius-md);
    margin-bottom: var(--zenvanurith-space-lg);
}

.zenvanurith-testimonial-quote:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--zenvanurith-off-white) transparent transparent;
}

.zenvanurith-testimonial-quote i {
    font-size: var(--zenvanurith-font-size-2xl);
    color: var(--zenvanurith-primary);
    margin-bottom: var(--zenvanurith-space-sm);
}

.zenvanurith-testimonial-quote p {
    font-size: var(--zenvanurith-font-size-md);
    font-style: italic;
}

.zenvanurith-testimonial-author {
    font-size: var(--zenvanurith-font-size-sm);
}

/* CTA Section */
.zenvanurith-cta {
    padding: var(--zenvanurith-space-3xl) 0;
    background-color: var(--zenvanurith-primary);
    color: var(--zenvanurith-white);
}

.zenvanurith-cta .zenvanurith-section-title {
    color: var(--zenvanurith-white);
}

.zenvanurith-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zenvanurith-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--zenvanurith-space-md);
    margin-top: var(--zenvanurith-space-lg);
}

/* Footer */
.zenvanurith-footer {
    padding: var(--zenvanurith-space-2xl) 0 var(--zenvanurith-space-lg);
    background-color: var(--zenvanurith-black);
    color: var(--zenvanurith-light-gray);
}

.zenvanurith-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--zenvanurith-space-xl);
}



.zenvanurith-footer p {
    font-size: var(--zenvanurith-font-size-sm);
    opacity: 0.8;
}

.zenvanurith-footer h3 {
    color: var(--zenvanurith-white);
    font-size: var(--zenvanurith-font-size-md);
    margin-bottom: var(--zenvanurith-space-md);
}

.zenvanurith-footer ul li {
    margin-bottom: var(--zenvanurith-space-sm);
    font-size: var(--zenvanurith-font-size-sm);
}

.zenvanurith-footer a {
    color: var(--zenvanurith-light-gray);
    transition: color var(--zenvanurith-transition-fast);
}

.zenvanurith-footer a:hover {
    color: var(--zenvanurith-secondary);
}

.zenvanurith-copyright {
    margin-top: var(--zenvanurith-space-lg);
    font-size: var(--zenvanurith-font-size-xs);
}

.zenvanurith-footer-contact i {
    margin-right: var(--zenvanurith-space-sm);
    color: var(--zenvanurith-primary-light);
}

/* Cookie Popup */
.zenvanurith-cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--zenvanurith-white);
    border-radius: var(--zenvanurith-border-radius-md);
    box-shadow: var(--zenvanurith-shadow-lg);
    z-index: 1000;
    padding: var(--zenvanurith-space-lg);
    display: none;
}

.zenvanurith-cookie-popup.show {
    display: block;
    animation: slideUp var(--zenvanurith-transition-normal);
}

.zenvanurith-cookie-content {
    text-align: center;
}

.zenvanurith-cookie-content h3 {
    margin-bottom: var(--zenvanurith-space-sm);
}

.zenvanurith-cookie-buttons {
    display: flex;
    justify-content: center;
    gap: var(--zenvanurith-space-sm);
    margin-top: var(--zenvanurith-space-md);
}

/* Contact Form */
.zenvanurith-contact-form {
    background-color: var(--zenvanurith-off-white);
    border-radius: var(--zenvanurith-border-radius-md);
    padding: var(--zenvanurith-space-xl);
    box-shadow: var(--zenvanurith-shadow-sm);
}

.zenvanurith-form-group {
    margin-bottom: var(--zenvanurith-space-md);
}

.zenvanurith-form-label {
    display: block;
    margin-bottom: var(--zenvanurith-space-xs);
    font-weight: 500;
}

.zenvanurith-form-input,
.zenvanurith-form-textarea {
    width: 100%;
    padding: var(--zenvanurith-space-sm) var(--zenvanurith-space-md);
    border: 1px solid var(--zenvanurith-gray);
    border-radius: var(--zenvanurith-border-radius-sm);
    font-family: var(--zenvanurith-font-body);
    font-size: var(--zenvanurith-font-size-base);
    transition: border-color var(--zenvanurith-transition-fast);
}

.zenvanurith-form-input:focus,
.zenvanurith-form-textarea:focus {
    outline: none;
    border-color: var(--zenvanurith-primary);
}

.zenvanurith-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.zenvanurith-form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: var(--zenvanurith-space-md);
}

.zenvanurith-form-checkbox input {
    margin-right: var(--zenvanurith-space-sm);
}

/* Map */
.zenvanurith-map {
    height: 400px;
    border-radius: var(--zenvanurith-border-radius-md);
    overflow: hidden;
    margin-bottom: var(--zenvanurith-space-xl);
}

.zenvanurith-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Products Page */
.zenvanurith-products {
    padding: var(--zenvanurith-space-3xl) 0;
}

.zenvanurith-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--zenvanurith-space-xl);
}

.zenvanurith-product-item {
    background-color: var(--zenvanurith-off-white);
    border-radius: var(--zenvanurith-border-radius-md);
    overflow: hidden;
    box-shadow: var(--zenvanurith-shadow-sm);
    transition: transform var(--zenvanurith-transition-normal), box-shadow var(--zenvanurith-transition-normal);
}

.zenvanurith-product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--zenvanurith-shadow-md);
}

.zenvanurith-product-image {
    height: 200px;
}

.zenvanurith-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zenvanurith-product-details {
    padding: var(--zenvanurith-space-lg);
}

.zenvanurith-product-title {
    margin-bottom: var(--zenvanurith-space-xs);
    color: var(--zenvanurith-primary-dark);
}

.zenvanurith-product-price {
    font-size: var(--zenvanurith-font-size-lg);
    font-weight: 600;
    color: var(--zenvanurith-accent-dark);
    margin-bottom: var(--zenvanurith-space-md);
}

/* About Us Page */
.zenvanurith-about-intro {
    padding: var(--zenvanurith-space-3xl) 0;
    background-color: var(--zenvanurith-off-white);
}

.zenvanurith-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--zenvanurith-space-xl);
    align-items: center;
}

.zenvanurith-about-image {
    border-radius: var(--zenvanurith-border-radius-md);
    overflow: hidden;
    box-shadow: var(--zenvanurith-shadow-md);
}

/* Our Instructors Page */
.zenvanurith-instructors {
    padding: var(--zenvanurith-space-3xl) 0;
}

.zenvanurith-instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--zenvanurith-space-xl);
}

.zenvanurith-instructor-card {
    background-color: var(--zenvanurith-off-white);
    border-radius: var(--zenvanurith-border-radius-md);
    overflow: hidden;
    box-shadow: var(--zenvanurith-shadow-sm);
    transition: transform var(--zenvanurith-transition-normal);
}

.zenvanurith-instructor-card:hover {
    transform: translateY(-5px);
}

.zenvanurith-instructor-image {
    height: 300px;
}

.zenvanurith-instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zenvanurith-instructor-info {
    padding: var(--zenvanurith-space-lg);
    text-align: center;
}

.zenvanurith-instructor-name {
    margin-bottom: var(--zenvanurith-space-xs);
    color: var(--zenvanurith-primary-dark);
}

.zenvanurith-instructor-title {
    font-size: var(--zenvanurith-font-size-sm);
    color: var(--zenvanurith-gray);
    margin-bottom: var(--zenvanurith-space-md);
}

/* 404 Page */
.zenvanurith-error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: var(--zenvanurith-space-3xl) 0;
}

.zenvanurith-error-code {
    font-size: 6rem;
    font-weight: 700;
    color: var(--zenvanurith-primary);
    line-height: 1;
    margin-bottom: var(--zenvanurith-space-md);
}

.zenvanurith-error-message {
    font-size: var(--zenvanurith-font-size-xl);
    margin-bottom: var(--zenvanurith-space-xl);
}

/* Thank You Page */
.zenvanurith-thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: var(--zenvanurith-space-3xl) 0;
}

.zenvanurith-thankyou-icon {
    font-size: 5rem;
    color: var(--zenvanurith-primary);
    margin-bottom: var(--zenvanurith-space-lg);
}

/* Privacy Policy / Terms */
.zenvanurith-legal {
    padding: var(--zenvanurith-space-3xl) 0;
}

.zenvanurith-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.zenvanurith-legal-content h2 {
    margin-top: var(--zenvanurith-space-xl);
    margin-bottom: var(--zenvanurith-space-md);
    color: var(--zenvanurith-primary-dark);
}

.zenvanurith-legal-content h3 {
    margin-top: var(--zenvanurith-space-lg);
    margin-bottom: var(--zenvanurith-space-sm);
}

.zenvanurith-legal-content ul {
    list-style: disc;
    padding-left: var(--zenvanurith-space-xl);
    margin-bottom: var(--zenvanurith-space-md);
}

.zenvanurith-legal-content ul li {
    margin-bottom: var(--zenvanurith-space-sm);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: var(--zenvanurith-font-size-2xl);
    }

    h2 {
        font-size: var(--zenvanurith-font-size-xl);
    }

    .zenvanurith-hero .zenvanurith-container {
        flex-direction: column;
    }

    .zenvanurith-hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--zenvanurith-space-xl);
    }

    .zenvanurith-hero-visual {
        height: 300px;
    }

    .zenvanurith-about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zenvanurith-menu-toggle {
        display: block;
    }

    .zenvanurith-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--zenvanurith-white);
        box-shadow: var(--zenvanurith-shadow-lg);
        transition: right var(--zenvanurith-transition-normal);
        z-index: 100;
        padding: var(--zenvanurith-space-3xl) var(--zenvanurith-space-lg);
    }

    .zenvanurith-nav.active {
        right: 0;
    }

    .zenvanurith-nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .zenvanurith-nav-link {
        padding: var(--zenvanurith-space-md) 0;
    }

    .zenvanurith-cta-buttons {
        flex-direction: column;
    }

    .zenvanurith-cta-buttons .zenvanurith-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .zenvanurith-hero {
        padding: var(--zenvanurith-space-2xl) 0;
    }

    .zenvanurith-benefits,
    .zenvanurith-featured-programs,
    .zenvanurith-testimonials,
    .zenvanurith-cta {
        padding: var(--zenvanurith-space-2xl) 0;
    }

    .zenvanurith-hero-title {
        font-size: var(--zenvanurith-font-size-2xl);
    }

    .zenvanurith-hero-text {
        font-size: var(--zenvanurith-font-size-base);
    }

    .zenvanurith-hero-visual {
        height: 250px;
    }

    .zenvanurith-circle-lg {
        width: 150px;
        height: 150px;
    }

    .zenvanurith-ring {
        width: 120px;
        height: 120px;
        border-width: 10px;
    }

    .zenvanurith-line {
        height: 150px;
    }

    .zenvanurith-nav {
        width: 85%;
    }
}