/* Custom Cursor - Yellow Dot */
body,
body * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="8" fill="%23F2C6A0"/><circle cx="12" cy="12" r="5" fill="%23D4A574"/></svg>') 12 12, auto !important;
}

a,
button,
.cta-button,
.class-learn-more,
.nav-links a {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="12" fill="%23F2C6A0" opacity="0.6"/><circle cx="16" cy="16" r="8" fill="%23D4A574"/></svg>') 16 16, pointer !important;
}

:root {
    --deep-earth: #5D4E37;
    --warm-terracotta: #D4A574;
    --soft-coral: #E8B4A0;
    --creamy-beige: #F5EDE0;
    --sunset-peach: #271f1b;
    --amber-glow: #C9975B;
    --sage-mist: #A8B5A0;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Montserrat';
    background-color: var(--creamy-beige);
    color: var(--deep-earth);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling container */
body {
    overscroll-behavior-y: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    z-index: 1000;
    background-color: rgba(245, 235, 224, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(74, 44, 61, 0.15);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.logo {
    display: flex;
    align-items: center;
    height: 40px;
    text-decoration: none;
}

.logo svg {
    height: 100%;
    width: auto;
    fill: var(--deep-earth);
    transition: opacity 0.3s ease;
}

.logo:hover svg {
    opacity: 0.7;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--deep-earth);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.5s ease;
    display: inline-block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--warm-terracotta) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm-terracotta);
    box-shadow: 0 0 10px var(--warm-terracotta), 0 0 20px var(--warm-terracotta);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--warm-terracotta);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.6),
                 0 0 40px rgba(212, 165, 116, 0.3);
    font-weight: 500;
}

.nav-links a:hover::before {
    width: 140%;
    height: 140%;
    opacity: 0.15;
}

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

/* Hamburger Menu */
/* Navigation Booking Button */
.nav-booking-button {
    padding: 0.7rem 1.8rem;
    background-color: var(--warm-terracotta);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-booking-button:hover {
    background-color: var(--deep-earth);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 78, 55, 0.3);
}


.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--deep-earth);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--creamy-beige);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
}

.mobile-menu.active {
    right: 0;
}

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

.mobile-nav-links a {
    text-decoration: none;
    color: var(--deep-earth);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Cormorant', serif;
    transition: color 0.3s ease;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(193, 119, 103, 0.2);
}

.mobile-nav-links a:hover {
    color: var(--warm-terracotta);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--creamy-beige) 0%, var(--sunset-peach) 50%, var(--warm-terracotta) 100%);
}

/* Gradient overlay at the bottom for smooth transition */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to bottom, transparent 0%, var(--creamy-beige) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Gradient Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(93, 78, 55, 0.7) 0%,
        rgba(212, 165, 116, 0.6) 25%,
        rgba(232, 180, 160, 0.5) 50%,
        rgba(242, 198, 160, 0.6) 75%,
        rgba(168, 181, 160, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    left: -20%;
    text-align: center;
    z-index: 1000 !important;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
    margin-top: 15vh;
}

/* Floating Affirmations Container */
.affirmations-container {
    position: absolute;
    inset: -300px -500px;
    pointer-events: none;
    z-index: 0;
}

.affirmation {
    font-size: 2.5rem;
    position: absolute;
    font-family: 'Cormorant', serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--sunset-peach);
    opacity: 0;
    text-shadow: 0 6px 30px rgba(247, 241, 241, 0.674);
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    white-space: nowrap;
}

/* Positioned far around the main text - avoiding center */
.affirmation-1 {
    top: -5%;
    left: 5%;
    animation-name: fadeAffirmation;
    animation-delay: 0s;
}

.affirmation-2 {
    top: 0%;
    right: 2%;
    animation-name: fadeAffirmation;
    animation-delay: 1.5s;
}


.affirmation-3 {
    bottom: 5%;
    left: 15%;
    animation-name: fadeAffirmation;
    animation-delay: 3s;
}

.affirmation-4 {
    bottom: 20%;
    right: -5%;
    animation-name: fadeAffirmation;
    animation-delay: 4.5s;
}

.affirmation-5 {
    top: 10%;
    left: -5%;
    animation-name: fadeAffirmation;
    animation-delay: 9s;
}

.affirmation-6 {
    top: 65%;
    right: 5%;
    animation-name: fadeAffirmation;
    animation-delay: 10.5s;
}

.affirmation-7 {
    bottom: 25%;
    left: -8%;
    animation-name: fadeAffirmation;
    animation-delay: 12s;
}

.affirmation-8 {
    top: 35%;
    right: -10%;
    animation-name: fadeAffirmation;
    animation-delay: 13.5s;
}

/* Simple fade in/out animation - NO rotation */
@keyframes fadeAffirmation {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }
    20%, 80% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Affirmation animations with more variation */

.hero h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--white) !important;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1001 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero h1 em {
    font-style: italic;
    display: block;
    color: var(--sunset-peach) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--white) !important;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1001 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--warm-terracotta);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1001 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--deep-earth);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(193, 119, 103, 0.4);
}

/* Section Styling */
section {
    padding: 8rem 5%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.section-title {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--deep-earth);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--warm-terracotta);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--deep-earth);
    opacity: 0.8;
    max-width: 700px;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Classes Section */
.classes {
    background-color: var(--creamy-beige);
}

.classes-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    height: 500px;
}

.class-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    flex: 1;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* When hovering over the grid, shrink non-hovered cards */
.classes-grid:hover .class-card {
    flex: 0.5;
}

/* When hovering a specific card, make it grow */
.classes-grid .class-card:hover {
    flex: 2;
}

.class-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay for better text readability */
.class-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    transition: opacity 0.6s ease;
}

.class-card:hover .class-image::before {
    opacity: 0.6;
}

.class-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.class-title {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    transition: font-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.class-card:hover .class-title {
    font-size: 2.5rem;
}

.class-description {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.class-card:hover .class-description {
    opacity: 1;
    transform: translateY(0);
}

.class-learn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    align-self: flex-start;
}

.class-card:hover .class-learn-more {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.class-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Individual card background images */
.class-card:nth-child(1) .class-image {
    background-image: linear-gradient(to bottom, rgba(212, 165, 116, 0.4), rgba(93, 78, 55, 0.6)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="500"><rect fill="%23D4A574" width="400" height="500"/></svg>');
}

.class-card:nth-child(2) .class-image {
    background-image: linear-gradient(to bottom, rgba(232, 180, 160, 0.4), rgba(201, 151, 91, 0.6)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="500"><rect fill="%23E8B4A0" width="400" height="500"/></svg>');
}

.class-card:nth-child(3) .class-image {
    background-image: linear-gradient(to bottom, rgba(168, 181, 160, 0.4), rgba(93, 78, 55, 0.6)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="500"><rect fill="%23A8B5A0" width="400" height="500"/></svg>');
}

/* About Section */
.about {
    background-color: var(--creamy-beige);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
    margin-top: 1vh;
    padding: 0%;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--deep-earth);
    font-weight: 300;
}

.about-image {
    height: 500px;
    background: linear-gradient(135deg, var(--warm-terracotta), var(--deep-earth));
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease-out;
}

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

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}


.stats-bar {
    padding: 0 5%;
    margin: 1rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

/* Noisy Texture Overlay */
.stats-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive Stats Bar */
@media (max-width: 768px) {
    .stats-bar {
        margin: 5rem 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3rem 2rem;
        border-radius: 20px;
    }

    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        padding: 2.5rem 1.5rem;
    }
}

/* Full Width Image Section */
.full-width-image-section {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(26, 26, 46, 0) 0%, rgba(160, 5, 230, 0.46) 40%, #c43529 70%, #1a1a2e 100%);
}

/* Gradient overlay at the bottom for smooth transition */
.full-width-image-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, var(--creamy-beige) 100%);
  z-index: 2;
  pointer-events: none;
}

.full-width-image {
  width: 100%;
  height: auto;
  min-height: 60vh;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Affirmations over tree image */
.full-width-image-section .affirmations-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

/* Centered text in tree section */
.tree-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  text-align: center;
  pointer-events: none;
}

.tree-section-text h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6),
               0 8px 60px rgba(0, 0, 0, 0.4);
  margin: 0;
  line-height: 1.2;
}

/* Centered Headline */
.tree-section-headline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  text-align: center;
  pointer-events: none;
}

.tree-section-headline h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6),
               0 8px 60px rgba(0, 0, 0, 0.4);
  margin: 0;
  line-height: 1.2;
}

.full-width-image-section .affirmation {
    font-size: 2.5rem;
    position: absolute;
    font-family: 'Cormorant', serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--sunset-peach);
    opacity: 0;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    white-space: nowrap;
}

/* Position affirmations AROUND the center headline */
.full-width-image-section .affirmation-1 {
    top: 15%;
    left: 40%;
    animation-name: fadeAffirmation;
    animation-delay: 0s;
}

.full-width-image-section .affirmation-2 {
    top: 20%;
    right: 12%;
    animation-name: fadeAffirmation;
    animation-delay: 1.5s;
}

.full-width-image-section .affirmation-3 {
    top: 35%;
    left: 5%;
    animation-name: fadeAffirmation;
    animation-delay: 3s;
}

.full-width-image-section .affirmation-4 {
    top: 31%;
    right: 45%;
    animation-name: fadeAffirmation;
    animation-delay: 4.5s;
}

.full-width-image-section .affirmation-5 {
    top: 20%;
    left: 8%;
    animation-name: fadeAffirmation;
    animation-delay: 6s;
}

.full-width-image-section .affirmation-6 {
    top: 48%;
    right: 8%;
    animation-name: fadeAffirmation;
    animation-delay: 7.5s;
}

.full-width-image-section .affirmation-7 {
    top: 45%;
    left: 10%;
    animation-name: fadeAffirmation;
    animation-delay: 9s;
}

.full-width-image-section .affirmation-8 {
    bottom: 15%;
    right: 15%;
    animation-name: fadeAffirmation;
    animation-delay: 10.5s;
}

/* Coaching Section */
.coaching {
    background-color: var(--creamy-beige);
    padding: 8rem 5%;
}

.coaching-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.coaching-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coaching-header {
    max-width: 600px;
}

.coaching-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--sage-mist);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.coaching-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--deep-earth);
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.coaching-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--deep-earth);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid var(--deep-earth);
    transition: all 0.3s ease;
}

.coaching-button:hover {
    background-color: var(--deep-earth);
    color: var(--white);
}

.coaching-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 1.5rem 1.8rem;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--warm-terracotta);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'Cormorant', serif;
    font-size: 1.25rem;
    color: var(--deep-earth);
    margin-bottom: 0.6rem;
    font-weight: 400;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--deep-earth);
    opacity: 0.7;
    font-weight: 300;
}

.coaching-image-large {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-terracotta), var(--warm-terracotta));
    align-self: stretch;
}

.coaching-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Events Section */
.events {
    position: relative;
    padding: 10rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background Container */
.events-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.events-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    filter: blur(20px);
}

/* Dark Overlay */
.events-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 44, 61, 0.75);
    z-index: 1;
}

.events-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.events-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--warm-terracotta);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.events-header .section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.events-header .section-title em {
    color: var(--warm-terracotta);
}

.events-header .section-subtitle {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.events-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.events-button:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.event-card {
    background-color:#e6dbd0;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-info {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--warm-terracotta);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    font-weight: 400;
}

.event-title {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.event-location {
    color: var(--deep-earth);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
}

.event-description {
    color: var(--deep-earth);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.event-details-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: transparent;
    color: var(--deep-earth);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid var(--deep-earth);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.event-details-button:hover {
    background-color: var(--deep-earth);
    color: var(--white);
    border-color: var(--deep-earth);
}

.event-image-container {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm-terracotta), var(--deep-earth));
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--deep-earth), var(--warm-terracotta));
    color: var(--white);
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 3rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

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

.newsletter-button {
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--deep-earth);
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--creamy-beige);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--deep-earth);
    color: var(--creamy-beige);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--warm-terracotta);
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 300;
}

.footer-title {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--warm-terracotta);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--creamy-beige);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--warm-terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 213, 185, 0.2);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .affirmation {
        font-size: 2rem;
    }

    .affirmations-container {
        inset: -150px -200px;
    }
    nav {
        top: 1rem;
        padding: 1rem 2rem;
        gap: 2rem;
        justify-content: space-between;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-booking-button {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 6rem 5% 3rem;
    }

    /* Tree section headline mobile */
    .tree-section-headline h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        padding: 0 1rem;
    }

    /* Full-width image section responsive */
    .full-width-image-section .affirmation {
        font-size: 1.3rem;
    }

    /* Better mobile positioning to avoid overlap */
    .full-width-image-section .affirmation-1 {
        top: 5%;
        left: 2%;
    }

    .full-width-image-section .affirmation-2 {
        top: 15%;
        right: 2%;
    }

    .full-width-image-section .affirmation-3 {
        top: 30%;
        left: 2%;
    }

    .full-width-image-section .affirmation-4 {
        top: 45%;
        right: 2%;
    }

    .full-width-image-section .affirmation-5 {
        top: 60%;
        left: 2%;
    }

    .full-width-image-section .affirmation-6 {
        top: 75%;
        right: 2%;
    }

    .full-width-image-section .affirmation-7 {
        bottom: calc(10% + 30px);
        left: 5%;
    }

    .full-width-image-section .affirmation-8 {
        bottom: calc(5% + 30px);
        right: 5%;
    }

    .classes-grid {
        flex-direction: column;
        height: auto;
    }

    .class-card {
        min-height: 400px;
    }

    .classes-grid:hover .class-card {
        flex: 1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coaching-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coaching-image-large {
        height: 400px;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-image-container {
        min-height: 300px;
    }

    .event-info {
        padding: 2.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Scroll Animations - Smooth and Pleasant */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Alternative fade-in from sides */
.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1.4s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1.4s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Gentle scale and fade */
.fade-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Blur effect for spiritual feel */
.fade-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 1.6s cubic-bezier(0.23, 1, 0.32, 1),
                filter 1.6s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-blur.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Magical Cursor Aura */
.cursor-aura {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.8), rgba(212, 165, 116, 0.3) 50%, transparent);
    filter: blur(15px);
}

.cursor-aura-inner {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    background: radial-gradient(circle, rgba(242, 198, 160, 0.95), rgba(242, 198, 160, 0.5) 50%, transparent);
    filter: blur(5px);
}

.cursor-aura-outer {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.6), rgba(212, 165, 116, 0.2) 50%, transparent);
    filter: blur(20px);
}

/* Custom Cursor - 64x64px */
body,
body * {
    cursor: url('../images/custom-cursor.png') 32 32, auto !important;
}

/* Hover Cursor für Links und Buttons */
a,
button,
.cta-button,
.class-learn-more,
.coaching-button,
.event-details-button,
.events-button,
.newsletter-button,
.nav-links a {
    cursor: url('../images/custom-cursor.png') 32 32, pointer !important;
}

/* Custom Cursor Dot */
.custom-cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.custom-cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #F2C6A0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.custom-cursor-ring.active {
    opacity: 1;
    visibility: visible;
}

body {
    cursor: none !important;
}

body * {
    cursor: none !important;
}

/* Force cursor none on all interactive elements */
a,
a *,
button,
button *,
input,
textarea,
select,
[role="button"],
[onclick],
.cta-button,
.cta-button *,
.class-learn-more,
.class-learn-more *,
.nav-links a,
.nav-links a *,
.newsletter-button,
.newsletter-button *,
.hamburger,
.hamburger * {
    cursor: none !important;
}

/* Mobile Booking Button */
.mobile-booking-button {
    display: inline-block;
    padding: 1rem 2rem !important;
    background-color: var(--warm-terracotta) !important;
    color: var(--white) !important;
    text-align: center;
    border-radius: 30px !important;
    margin-top: 2rem;
    font-weight: 500 !important;
    border: none !important;
    transition: all 0.3s ease;
}

.mobile-booking-button:hover {
    background-color: var(--deep-earth) !important;
    transform: translateY(-2px);
    padding-left: 2rem !important;
}

/* Polaroid Gallery Section */
.polaroid-gallery {
    background-color: #C8B8A8;
    padding: 10rem 5%;
    overflow: hidden;
    position: relative;
}

.polaroid-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -7%;
}

/* VERBESSERTE BLUR-ANIMATION FÜR POLAROIDS 1-5 */
.polaroid {
    position: absolute;
    background: var(--white);
    padding: 15px;
    padding-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    filter: blur(20px);
    transform: translateY(60px) scale(0.9);
}

.polaroid.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.polaroid-6.visible {
    opacity: 1;
    filter: blur(0);
    transform: rotate(8deg) scale(1.7) !important;
}

.polaroid:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 10 !important;
}

.polaroid-image {
    width: 280px;
    height: 320px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 2px;
}

.polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polaroid-caption {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-earth);
    margin-top: 12px;
    font-weight: 400;
}

/* Individual Polaroid Positions & Rotations mit gestaffelten Delays */
.polaroid-1 {
    left: -4%;
    top: -60%;
    transform: rotate(-8deg) translateY(60px) scale(0.9);
    z-index: 1;
    transition-delay: 0.2s;
}

.polaroid-1.visible {
    transform: rotate(-8deg) translateY(0) scale(1);
}

.polaroid-1:hover {
    transform: rotate(-8deg) translateY(-10px) scale(1.05) !important;
}

.polaroid-2 {
    left: 17%;
    top: -60%;
    transform: rotate(5deg) translateY(60px) scale(0.9);
    z-index: 2;
    transition-delay: 0.4s;
}

.polaroid-2.visible {
    transform: rotate(5deg) translateY(0) scale(1);
}

.polaroid-2:hover {
    transform: rotate(5deg) translateY(-10px) scale(1.05) !important;
}

.polaroid-3 {
    left: 38%;
    top: -60%;
    transform: rotate(-3deg) translateY(60px) scale(0.9);
    z-index: 3;
    transition-delay: 0.6s;
}

.polaroid-3.visible {
    transform: rotate(-3deg) translateY(0) scale(1);
}

.polaroid-3:hover {
    transform: rotate(-3deg) translateY(-10px) scale(1.05) !important;
}

.polaroid-4 {
    left: 58%;
    top: -60%;
    transform: rotate(7deg) translateY(60px) scale(0.9);
    z-index: 4;
    transition-delay: 0.8s;
}

.polaroid-4.visible {
    transform: rotate(7deg) translateY(0) scale(1);
}

.polaroid-4:hover {
    transform: rotate(7deg) translateY(-10px) scale(1.05) !important;
}

.polaroid-5 {
    right: -2%;
    top: -60%;
    transform: rotate(-5deg) translateY(60px) scale(0.9);
    z-index: 5;
    transition-delay: 1.0s;
}

.polaroid-5.visible {
    transform: rotate(-5deg) translateY(0) scale(1);
}

.polaroid-5:hover {
    transform: rotate(-5deg) translateY(-10px) scale(1.05) !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .polaroid-container {
        height: 400px;
    }

    .polaroid-image {
        width: 220px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .polaroid-gallery {
        padding: 6rem 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .polaroid-container {
        height: 450px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: max-content;
        padding: 0 5%;
        gap: 2rem;
    }

    .polaroid {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin: 0;
        transform: rotate(0deg) !important;
        flex-shrink: 0;
    }

    .polaroid.visible {
        transform: rotate(0deg) !important;
    }

    .polaroid-image {
        width: 260px;
        height: 300px;
    }

    /* Hide scrollbar but keep functionality */
    .polaroid-gallery::-webkit-scrollbar {
        display: none;
    }

    .polaroid-gallery {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Polaroid-6 - Special standalone polaroid between Hero and Classes */
.polaroid-6 {
    position: absolute;
    right: 19%;
    top: 30%;
    background: var(--white);
    padding: 15px;
    padding-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(8deg) scale(2.2) !important;
    z-index: 100;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Flip Animation für Polaroid-6 */
.polaroid-6:hover {
    animation: flipCard 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flipCard {
    0% {
        transform: rotate(8deg) scale(2.2) rotateY(0deg);
    }
    50% {
        transform: rotate(8deg) scale(2.2) rotateY(90deg);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: rotate(8deg) scale(2.2) rotateY(180deg);
    }
}

/* Rückseite des Polaroids */
.polaroid-6::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--warm-terracotta) 0%, var(--soft-coral) 100%);
    border-radius: 12px;
    opacity: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.polaroid-6:hover::after {
    opacity: 1;
}

.polaroid-6 .polaroid-image {
    width: 280px;
    height: 320px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 2px;
}

.polaroid-6 .polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polaroid-6 .polaroid-caption {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-earth);
    margin-top: 12px;
    font-weight: 400;
}

/* Mobile: Center hero content and stack polaroid below */
@media (max-width: 768px) {
    .hero-content {
        left: 0 !important;
        text-align: center;
    }

    .polaroid .polaroid-image {
        width: 240px;
        height: 280px;
    }
}

/* Ensure Hero section has proper overflow handling */
.hero {
    position: relative;
    overflow: visible;
}

/* Ensure Classes section stays below */
.classes {
    position: relative;
}

/* Polaroid-6 Mobile Positioning */

/* Polaroid-6 Tablet/Medium Screens - Later scaling for smaller screens */
@media (max-width: 1280px) {
    .hero-content {
        left: 0;
        text-align: center;
    }

    .polaroid-6 {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        margin: -3rem auto 0 auto;
        transform: rotate(0deg) scale(1) !important;
        display: block;
        width: fit-content;
    }

    .polaroid-6.visible {
        transform: rotate(0deg) scale(1) !important;
    }
}
