 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            /* color: #333; */
            color: #000;
            overflow-x: hidden;
            background: url('lowlunge.jpg?w=1600&q=80');
            background-attachment: fixed;
            background-size: cover;
        }

        header {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.95), rgba(72, 149, 239, 0.95));
            color: white;
            padding: .5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
       
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .img-protect {
            user-select: none;
            pointer-events: none;
            -moz-user-select: none;
        }

        .om-symbol {
            width: 30px;
            height: 30px;
            border: 3px solid #FF8C42;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
            flex-shrink: 0;
        }

        .om-symbol svg {
            width: 24px;
            height: 24px;
        }

        .om-gradient-start {
            stop-color: #FFB366;
            stop-opacity: 1;
        }

        .om-gradient-mid {
            stop-color: #FF8C42;
            stop-opacity: 1;
        }

        .om-gradient-end {
            stop-color: #D96B2E;
            stop-opacity: 1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
            font-weight: 500;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .nav-links a:hover {
            opacity: 0.7;
            color: #FF8c42;
        }

        /* --- Nav / footer Om text (font-size 70, standard position) --- */
        .om-text {
            font-size: 70px;
            font-family: Arial, sans-serif;
            filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
        }


        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .hero {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.75), rgba(72, 149, 239, 0.75)),
                        url('zen.jpg?w=1600&q=80') center/cover ;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            padding: 6rem 2rem 2rem;
        }

        .hero-container {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            width: 100%;
        }

        .hero-image-container {
            animation: fadeIn 1.5s ease-out;
            flex-shrink: 0;
        }

        .hero-profile-img {
            width: 300px;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 5px solid white;
            transition: transform 0.3s ease;
            pointer-events: none;
            user-select: none;
            -moz-user-select: none;
        }

        .hero-profile-img:hover {
            transform: scale(1.05);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            flex: 1;
            padding: 1rem;
            animation: fadeInUp 1s ease-out;
            text-align: center;
        }

        .hero-content-verbiage {
            text-align: center;
        }

        .hero h1 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        /* --- Hero Om text (font-size 81, slightly different position) --- */
        .om-text-hero {
            font-size: 81px;
            font-family: Arial, sans-serif;
            filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
        }

        .hero-om-symbol {
            width: clamp(32px, 6vw, 40px);
            height: clamp(32px, 6vw, 40px);
            border: 3px solid #FF8C42;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
        }

        .hero-om-symbol svg {
            width: 93%;
            height: 93%;
        }

        .footer-om-symbol {
            width: 13px;
            height: 13px;
            border: 2px solid #FF8C42;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
        }

        .footer-om-symbol svg {
            width: 21px;
            height: 21px;
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .hero-tagline {
            font-size: clamp(1rem, 2.2vw, 1.2rem);
            font-style: italic;
            margin-top: 1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            letter-spacing: 1px;
            color: #FFB366;
        }

        .hero-circle {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            margin: 0 8px;
            vertical-align: middle;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .cta-button {
            display: inline-block;
            padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
            background: white;
            color: #6c63ff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            margin: 0.5rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

         /* This sets the standard width of all sections */
        section {
            padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 3vw, 2rem);
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            scroll-margin-top: 25px ; /* this sets the distance between the header and the top of the section */
        }

        /* This is the background and characteristics of each section except for the hero section */
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('lowlung.jpg?w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.03;
            z-index: -1;
            pointer-events: none;
        }

        /* Section font style and alignment */
        .section-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 2.5rem);
            margin-bottom: 3rem;
            color: #6c63ff;
            position: relative;
        }

        /* Line style after section title */
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #6c63ff, #4895ef);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .section-note {
            text-align: center;
            font-size: clamp(1.5rem, 5vw, 2.5rem);
            margin-bottom: 3rem;
            color: #6c63ff;
            position: relative;
        }

          /* --- Classes section --- */
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .class-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }

        .class-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .class-card h3 {
            color: #6c63ff;
            margin-bottom: 1rem;
            font-size: clamp(1.3rem, 3vw, 1.5rem);
        }

        .class-card p {
            color: #666;
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .class-time {
            font-weight: bold;
            color: #4895ef;
        }

           /* --- Workshops section --- */
        .workshops {
            background: linear-gradient(135deg, rgba(255, 240, 230, 0.9), rgba(255, 220, 200, 0.85)),
                        url('zen.jpg?w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .workshops-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .workshops-intro {
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .workshops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .workshops-private-retreat {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .workshops-private-card {
            max-width: 400px;
            width: 100%;
        }

        .workshops-cta-box {
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .workshops-cta-heading {
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: #666;
            margin-bottom: 1rem;
        }

        .workshops-cta-body {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #666;
        }

         /* --- About section --- */
        .about {
            background: linear-gradient(135deg, rgba(240, 248, 255, 0.85), rgba(230, 242, 255, 0.80)),
                url('zenwater.jpg?w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-intro {
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.8;
            color: #555;
        }

        .about-text {
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.8;
            text-align: justify;
            color: #555;
        }
        .about p { margin-bottom: .5rem;}

        .about-images {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .about-images img {
            width: min(200px, 45vw);
            height: min(300px, 67.5vw);
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 5px solid white;
        }

         /* --- Pricing section --- */
        .pricing {
            background: transparent;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.75), rgba(72, 149, 239, 0.75)),
                url('singingbowl.jpg?w=1600&q=80'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            margin-bottom: 6rem;
        }

        .pricing-grid { 
            margin-top: 2rem; 
            display: grid;     
            grid-template-rows: repeat(3, 1fr); /* Creates 3 equal-width columns */
            gap: .05rem; /* Adds space between grid items */
            align-items: center; 
            background-color: transparent;
        }

         .pricing-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .pricing-item {
            padding: 1.5rem;
            background: white;
            color: 333;
            border-radius: 10px;
            min-width: min(250px, 100%);
            flex: 1 1 250px;
            max-width: 350px;
        }

        .pricing-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .pricing h2 { color: white; background: transparent;}
        .pricing h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, white);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .pricing-item h3 {
            color: #6c63ff;
            margin-bottom: 0.5rem;
            text-align: center;
            font-size: clamp(1.3rem, 3vw, 1.5rem);
        }

        .pricing-item p {
            color: #666;
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }
    
        /* --- Contact section --- */
        .contact {
            background: transparent;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            /* scroll-margin-top: 30px ;  */
            margin-bottom: 9rem;
          }

        .contact span {
            text-align: center;
            font-size: clamp(1rem, 5vw, 2rem);
            margin-bottom: 3rem;
            /* color: #FFB366; */
            color: white;
            position: relative;
        }

        .contact-info {
            display: flex; 
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .contact-item h3 {
            margin-bottom: 0.5rem;
            text-align: center;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        }

        .contact-item {
            padding: 1.5rem;
            background: linear-gradient(135deg, #6c63ff, #4895ef);
            color: white;
            border-radius: 10px;
            min-width: min(250px, 100%);
            flex: 1 1 250px;
            max-width: 350px;
        }

        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
   
  
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: calc(100vh - 70px);
                background: linear-gradient(135deg, rgba(108, 99, 255, 0.98), rgba(72, 149, 239, 0.98));
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transition: right 0.3s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.2);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }

            nav {
                padding: 0 1rem;
            }

            .hero {
                padding-top: 5rem;
            }

            .hero-container {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-profile-img {
                width: min(250px, 80vw);
                height: min(333px, 106vw);
            }

            .about-images img {
                width: min(150px, 42vw);
                height: min(225px, 63vw);
            }
        }

        /* Tablet adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .classes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .hero-image-container {
                margin-top: 1rem;
            }

            .classes-grid {
                gap: 1.5rem;
            }

            .class-card {
                padding: 1.5rem;
            }

            .contact-info {
                gap: 1.5rem;
            }

            .about-images img {
                width: min(120px, 80vw);
                height: min(180px, 120vw);
            }


        }