/* Base Styles & Typography */
:root {
    --primary: #3a5a40;
    --secondary: #a3b18a;
    --accent: #dad7cd;
    --highlight: #588157;
    --dark-text: #344e41;
    --light-text: #f8f9fa;
    --background: #f8f9fa;
    --transition: all 0.4s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark-text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title:after {
    content: none;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--highlight);
}

.section-title.centered {
    text-align: center;
}

.section-title.centered:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    text-align: center;
    font-weight: 300;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--highlight);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.button, button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--highlight);
    color: var(--light-text);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

.button:hover, button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: #fff;
}

/* Header & Navigation */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 12px;
    transition: var(--transition);
}

.site-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
    transition: var(--transition);
}

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

.nav-link {
    color: var(--dark-text);
    font-weight: 600;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--highlight);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section with Parallax */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.layer-1 {
    background-image: url('images/banner.png');
    opacity: 0.8;
}

.layer-2 {
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    opacity: 0.5;
    filter: blur(3px);
}

.layer-3 {
    background: radial-gradient(ellipse at center, rgba(88, 129, 87, 0) 0%, rgba(58, 90, 64, 0.6) 100%);
}

.layer-4 {
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1632&q=80');
    opacity: 0.3;
    filter: blur(2px);
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    color: var(--light-text);
    backdrop-filter: blur(5px);
    border-radius: var(--radius);
    background-color: rgba(52, 78, 65, 0.3);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-button {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    background-color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-text);
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    border-right: 2px solid var(--light-text);
    border-bottom: 2px solid var(--light-text);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-15px) rotate(45deg);
    }
    60% {
        transform: translateY(-7px) rotate(45deg);
    }
}

/* About Section */
.about-section {
    padding: 100px 5%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--light-text);
    padding: 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-elements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.philosophy-element {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius);
    background-color: rgba(163, 177, 138, 0.1);
    transition: var(--transition);
}

.philosophy-element:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background-color: rgba(163, 177, 138, 0.2);
}

.element-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.philosophy-element h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Plant Synergy Visualizer */
.synergy-section {
    padding: 100px 5%;
    background-color: rgba(218, 215, 205, 0.3);
}

.synergy-visualizer {
    position: relative;
    height: 600px;
    margin-top: 50px;
}

.central-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--highlight), var(--primary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 30px rgba(88, 129, 87, 0.4);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(58, 90, 64, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
}

.orbit-2 {
    width: 350px;
    height: 350px;
}

.orbit-3 {
    width: 500px;
    height: 500px;
}

.plant-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.plant-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--rotation)) translateX(250px) rotate(calc(-1 * var(--rotation)));
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    max-width: 150px;
    z-index: 1;
}

.plant-icon {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    border: 3px solid var(--light-text);
    transition: var(--transition);
}

.plant-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plant-info {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}

.plant-element:hover .plant-info {
    opacity: 1;
    transform: translateY(0);
}

.plant-element:hover .plant-icon {
    transform: scale(1.1);
    border-color: var(--highlight);
}

.plant-info h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.plant-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.synergy-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Services Section */
.services-section {
    padding: 100px 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--light-text);
    transition: var(--transition);
}

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

.service-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-image {
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.service-features li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--highlight);
}

.service-button {
    margin-top: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Seasonal Herb Map */
.herb-map-section {
    padding: 100px 5%;
    background-color: rgba(218, 215, 205, 0.2);
}

.season-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.season-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 10px 25px;
}

.season-button.active, .season-button:hover {
    background-color: var(--primary);
    color: var(--light-text);
}

.herb-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.herb-map {
    position: relative;
    min-height: 500px;
}

.nz-outline {
    position: relative;
    width: 100%;
    height: 100%;
}

.nz-svg {
    width: 100%;
    height: auto;
}

.north-island, .south-island {
    fill: rgba(163, 177, 138, 0.3);
    stroke: var(--primary);
    stroke-width: 2;
    transition: var(--transition);
}

.north-island:hover, .south-island:hover {
    fill: rgba(163, 177, 138, 0.5);
}

.herb-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

.herb-markers.hidden {
    opacity: 0;
    pointer-events: none;
}

.herb-marker {
    position: absolute;
    cursor: pointer;
}

.marker-dot {
    width: 15px;
    height: 15px;
    background-color: var(--highlight);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.marker-info {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background-color: var(--light-text);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

.marker-info:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: var(--light-text) transparent transparent transparent;
}

.herb-marker:hover .marker-dot {
    background-color: var(--primary);
    transform: scale(1.3);
}

.herb-marker:hover .marker-info {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.marker-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.marker-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.season-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.season-info {
    display: none;
    animation: fadeIn 0.5s ease;
}

.season-info.active {
    display: block;
}

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

/* Rituals Section */
.rituals-section {
    padding: 100px 5%;
}

.rituals-header {
    text-align: center;
    margin-bottom: 50px;
}

.rituals-container {
    display: flex;
    justify-content: center;
}

.ritual-wheel {
    position: relative;
    width: 600px;
    height: 600px;
}

.ritual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(58, 90, 64, 0.3);
    z-index: 2;
}

.ritual-item {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: rotate(var(--angle)) translateX(250px) rotate(calc(-1 * var(--angle)));
    width: 220px;
    text-align: center;
    transition: var(--transition);
}

.ritual-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.ritual-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.ritual-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}

.ritual-item:hover .ritual-content {
    opacity: 1;
    transform: translateY(0);
}

.ritual-item:hover {
    z-index: 10;
}

/* Sensory Journey Section */
.sensory-journey-section {
    padding: 100px 5%;
    background-color: rgba(218, 215, 205, 0.3);
}

.sensory-journey-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
}

.sensory-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
}

.sensory-layer.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sensory-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.sensory-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 600px;
}

.sensory-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sensory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sensory-layer:hover .sensory-image img {
    transform: scale(1.05);
}

.sensory-content p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.sensory-navigation {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.sensory-nav-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.sensory-nav-button.active, .sensory-nav-button:hover {
    background-color: var(--primary);
    color: var(--light-text);
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-content {
    padding-right: 50px;
}

.contact-info {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--highlight);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    position: relative;
    overflow: hidden;
}

.social-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--highlight);
    transform: translateX(-100%);
    transition: var(--transition);
}

.social-link:hover:after {
    transform: translateX(0);
}

.contact-form-container {
    background-color: rgba(218, 215, 205, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(58, 90, 64, 0.2);
    border-radius: var(--radius);
    background-color: var(--light-text);
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--highlight);
    outline: none;
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.submit-button {
    background-color: var(--primary);
    color: var(--light-text);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    background-color: var(--highlight);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    position: relative;
    background-color: var(--primary);
    color: var(--light-text);
    padding: 80px 5% 30px;
    overflow: hidden;
}

.footer-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.layer-1 {
    background: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1015&q=80') center/cover no-repeat;
}

.layer-2 {
    background: radial-gradient(circle at 70% 30%, rgba(163, 177, 138, 0.5) 0%, transparent 60%);
}

.layer-3 {
    background: radial-gradient(circle at 30% 70%, rgba(218, 215, 205, 0.5) 0%, transparent 60%);
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo .logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 1.8rem;
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--highlight);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-newsletter h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-newsletter h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--highlight);
}

.footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: var(--radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--light-text);
    transform: translateY(-2px);
}

.copyright {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .ritual-wheel {
        width: 500px;
        height: 500px;
    }
    
    .ritual-item {
        transform: rotate(var(--angle)) translateX(200px) rotate(calc(-1 * var(--angle)));
        width: 180px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-container,
    .herb-map-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card.featured {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .ritual-wheel {
        width: 400px;
        height: 400px;
    }
    
    .ritual-item {
        transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle)));
        width: 160px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .spiral-nav {
        display: none;
    }
    
    .spiral-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-text);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .spiral-nav.active ul {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .philosophy-elements {
        grid-template-columns: 1fr;
    }
    
    .synergy-visualizer {
        height: 800px;
    }
    
    .plant-element {
        transform: none !important;
        position: relative;
        top: auto;
        left: auto;
        max-width: none;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .plant-info {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        text-align: left;
    }
    
    .ritual-wheel {
        width: 100%;
        height: auto;
    }
    
    .ritual-item {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        width: 100%;
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        text-align: left;
    }
    
    .ritual-content {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    
    .sensory-journey-container {
        height: auto;
    }
    
    .sensory-layer {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-bottom: 50px;
    }
    
    .sensory-layer:not(.active) {
        display: none;
    }
    
    .sensory-navigation {
        position: relative;
        padding: 20px 0;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .season-selector {
        flex-wrap: wrap;
    }
}

/* Animation Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Initial State for Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* First Layer Visible by Default */
/* #visual-layer {
    opacity: 1;
    transform: translateX(0);
} */
 .text-wrapper h2, .text-wrapper h3{
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-wrapper h1{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}
.text-wrapper h2{
  font-size: 1.5rem;
}

.text-wrapper{
  margin: 30px auto;
  max-width: 1200px;
}