@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
@import url('https://db.onlinewebfonts.com/c/b3a5566bf1f995a754d7c4f86b2e6779?family=Beaufort-Bold');

    @font-face {
    font-family: 'Burtinomatic';
    font-style: normal;
    font-weight: normal;
    src: local('Burtinomatic'), url('../Burtinomatic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'BurtinomaticBold';
    font-style: normal;
    font-weight: normal;
    src: local('BurtinomaticBold'), url('../BurtinomaticBold.woff') format('woff');
    }

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

:root {
    --primary-color: #e8e4d5;
    --secondary-color: #1D1E18;
    --accent-color: #438945;
    --accent-dark: #317033;
    --accent-light: #55a657;
    --highlight: #f1f0eb;
    --font-main: 'Montserrat', sans-serif;
    --font-special: "Beaufort-Bold";
    --camp-bg: #2a3d2b;
    --font-logo: 'Burtinomatic';
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--secondary-color);
    background: var(--primary-color);
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    height: 80px;
    pointer-events: all;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: opacity 0.8s ease;
}

header.scrolled .hero-image {
    opacity: 0;
    pointer-events: none;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: all;
}

header.scrolled .logo-container {
    top: -40px;
    left: 60px;
    transform: translate(0, -50%) scale(0.1);
}

.logo-container img {
    width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.titlespacer {
    text-align: center;
}

.spacer-svg {
    width: 300px;
    height: auto;
}

.dark {
    color:var(--secondary-color);
}

.light {
    color:var(--primary-color);
}

/* Navbar */
nav {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    transition: top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

header.scrolled nav {
    top: 0;
}

.nav-title {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--highlight);
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
    white-space: nowrap;
    margin-left: 0;
}

header.scrolled .nav-title {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    margin-right: 0;
}

.nav-links a {
    color: var(--highlight);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.nav-links .login-link {
    padding: 0.5rem 1.2rem;
    background: var(--accent-dark);
    border-radius: 2px;
    border: 2px solid var(--primary-color);
}

.nav-links .login-link:hover {
    background: var(--primary-color);
    color: var(--accent-dark);
}

nav {
    pointer-events: all;
}

nav a {
    pointer-events: all;
}

/* Scroll prompt */
.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--highlight);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.8s ease;
    z-index: 10;
    pointer-events: all;
    display: block;
}

header.scrolled .scroll-prompt {
    opacity: 0;
    pointer-events: none;
}

.scroll-prompt p {
    font-family: var(--font-special);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sections */
section {
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

section h2 {
    font-family: var(--font-special);
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 2rem auto 0 auto;
    text-align: center;
}

section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Hexagon Button */
.hex-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--highlight);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-special);
    font-size: 1.2rem;
    text-transform: uppercase;
    border: none;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hex-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hex-button:hover {
    background: var(--accent-color);
}

.hex-button:hover::before {
    animation-duration: 1.5s;
}

.hex-button i {
    margin-right: 0.5rem;
}

#camp .hex-button {
    max-width: 175px;
    margin: 1rem auto 0 auto;
}

/* Intro section */
#intro {
    text-align: center;
    margin-top: 25vh;
    background: var(--secondary-color);
    color: var(--highlight);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

#intro p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

#intro h2 {
    color: var(--highlight);
    z-index: 1;
}

#intro::before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  width: 600px;
  aspect-ratio: 1 / 1;
  background-image: url('../img/intro.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

/* Quest section with parallax */
#quest {
    background: var(--primary-color);
    position: relative;
    border-bottom:20px solid transparent;
    border-image: url('../img/metal2.png') 100;
    background-clip: padding-box;
    z-index: 2;
    isolation: isolate;
}

.quest-content {
    position: relative;
    z-index: 2;
    margin: 0 20vw;
}

#quest::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 4000px;
  height: 90px;
  
  margin-top:18px;
  background-image: url('../img/ink_top.png');
  opacity: 0.95;
  background-size: 4000px 150px;
  background-repeat: no-repeat;
  background-position: center;
  
  pointer-events: none;
}

/* Fixed map background - behind all sections */
.map-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../img/map_2k.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Destination section with parallax */
#destination {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--primary-color);
}

/* Parallax images */
.parallax-image {
    position: absolute;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
    -webkit-filter: drop-shadow(1px 1px 5px #000);
    filter: drop-shadow(1px 1px 5px #000);
}

.parallax-left-1 {
    left: -10%;
    top: 20%;
    transform: rotate(-3deg);
}

.parallax-left-2 {
    left: -30%;
    top: 40%;
    transform: rotate(5deg);
}

.parallax-left-3 {
    left: -18%;
    top: 68%;
    transform: rotate(-8deg);
}

.parallax-right-1 {
    right: -13%;
    top: 5%;
    transform: rotate(7deg);
}

.parallax-right-2 {
    right: -25%;
    top: 20%;
    transform: rotate(-4deg);
}

.parallax-right-3 {
    right: -13%;
    top: 77%;
    transform: rotate(9deg);
}

.destination-wrap {
    display: flex;
    max-width: 800px;
    gap: 3rem;
    align-items: center;
    margin: 2rem auto;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    z-index: 10;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
}

.destination-wrap h2 {
    color: var(--primary-color);
}
.destination-grid > div {
    flex: 1;
    min-width: 300px;
}

#destination h2 {
    position: relative;
    z-index: 10;
}

#destination .titlespacer {
    position: relative;
    z-index: 10;
}

#map {
    width: 100%;
    height: 275px;
    border: 3px solid var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Supplies with accordions */
#supplies {
    background: var(--primary-color);
    position: relative;
    padding: 100px 0;
    z-index: 2;
    border-top:20px solid transparent;
    border-image: url('../img/metal.png') 100;
    background-clip: padding-box;
}

#supplies::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 4000px;
  height: 90px;
  
  margin-bottom:17px;
  background-image: url('../img/ink_btm.png');
  opacity: 0.95;
  background-size: 4000px 150px;
  background-repeat: no-repeat;
  background-position: center;
  
  pointer-events: none;
}

#supplies::after {
    content: '';
    position: absolute;
    bottom: -95px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../img/border_btm.svg') no-repeat;
    background-size: cover;
    z-index: 10;
}

.accordion {
    background-color: var(--highlight);
    max-width: 800px;
    margin: 2rem auto;
    border-top: 6px solid var(--accent-color);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.accordion__item {
    border-bottom: 1px solid rgba(67, 137, 69, 0.2);
}

.accordion__item input {
    display: none;
}

.accordion__title {
    display: block;
    padding: 15px 15px 15px 40px;
    position: relative;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.accordion__title:hover {
    background: rgba(67, 137, 69, 0.05);
}

.accordion__title h5 {
    display: inline-block;
    margin: 0;
    border-bottom: 1px solid var(--primary-color);
    transition: border-bottom-color 0.3s ease;
}

.accordion__title:hover h5 {
    border-bottom-color: var(--accent-color);
}

.accordion__title h5 i {
    margin-right: 0.8rem;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.accordion__title::before {
    content: "+";
    font-size: 20px;
    position: absolute;
    left: 15px;
    top: 12px;
    color: var(--accent-color);
    transition: transform 0.3s;
    font-weight: bold;
}

.accordion__item input:checked + label::before {
    content: "-";
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion__item input:checked ~ .accordion__content {
    max-height: 500px;
}

.accordion__content-inner {
    padding: 0 40px 15px 40px;
}

.accordion__content-inner ul {
    list-style: none;
    padding: 0;
}

.accordion__content-inner li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(67, 137, 69, 0.1);
    display: flex;
    align-items: center;
}

.accordion__content-inner li:last-child {
    border-bottom: none;
}

.accordion__content-inner li i {
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 25px;
}

.supplies-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* Camp section with horizontal carousel */
#camp {
    background: var(--camp-bg);
    position: relative;
    padding: 80px 0 100px 0;
    overflow: visible;
    z-index: 2;
}

#camp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.15"/></svg>');
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

#camp h2,
#camp > p {
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    text-align: center;
}

#camp h2 {
    color: var(--primary-color);
}

/* Carousel wrapper - 100vw with fade overlays */
.rooms-container {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin: 0.5rem 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    left: 50%;
    transform: translateX(-50%);
}

.rooms-container:active {
    cursor: grabbing;
}

/* Left fade overlay */
.rooms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, var(--camp-bg) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Right fade overlay */
.rooms-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to left, var(--camp-bg) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Carousel track - holds all rooms - MODIFIED FOR JS */
.carousel-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
    /* Removed CSS animation - now controlled by JavaScript */
}

/* Each room group */
.room-group {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    padding: 0 1rem;
}

.room-group h3 {
    font-family: var(--font-special);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: .5rem;
    text-align: center;
    white-space: nowrap;
}

/* Banner container */
.banner-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
}

/* Emblem styles */
.emblem {
    width: 120px;
    aspect-ratio: 3 / 5;
    position: relative;
    flex-shrink: 0;
}

.emblem .frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 500"><defs><linearGradient id="frame" x1="0" y1="0" x2="1" y2="1"><stop offset="0%25" stop-color="%23f7f4e9"/><stop offset="100%25" stop-color="%23d4c9a8"/></linearGradient></defs><path d="M 10,10 L 290,10 L 290,450 L 150,490 L 10,450 Z" fill="none" stroke="url(%23frame)" stroke-width="8"/><path d="M 20,20 L 280,20 L 280,445 L 150,480 L 20,445 Z" fill="none" stroke="url(%23frame)" stroke-width="4" opacity="0.5"/><circle cx="150" cy="15" r="8" fill="%23f7f4e9"/><circle cx="30" cy="30" r="6" fill="%23f7f4e9"/><circle cx="270" cy="30" r="6" fill="%23f7f4e9"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 3;
}

.emblem .flag {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 91%, 50% 100%, 0% 91%);
}

.emblem .flag svg,
.emblem .flag i {
    font-size: 4rem;
    max-width: 70%;
    max-height: 70%;
    position: relative;
    z-index: 2;
}

.emblem .name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    color: var(--primary-color);
    text-align: center;
    padding: 0.8rem 0.5rem;
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emblem .pronouns {
    position: absolute;
    bottom: 1.5em;
    left: 0;
    right: 0;
    color: var(--primary-color);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rules section */
#rules {
    background: #e8e4d5;
    position: relative;
    padding: 100px 0;
    z-index: 2;
}

#rules::before, #quest::before {
    content: '';
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('../img/border_top.svg') no-repeat;
    background-size: cover;
    z-index: 10;
}

.rules-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--highlight);
    border-left: 5px solid var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.rules-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Schedule section */
#schedule {
    background: var(--secondary-color);
    color: var(--highlight);
    padding: 100px 0;
    z-index: 2;
}

#schedule h2 {
    color: var(--highlight);
}

.tab-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
    justify-content: center;
}

.tab-button {
    padding: 1rem 2rem;
    background: var(--accent-dark);
    color: var(--highlight);
    border: none;
    border-radius: 2px;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    min-width: 150px;
}

.tab-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--accent-light);
    box-shadow: 0 4px 15px rgba(85, 166, 87, 0.4);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.events-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.events-list li {
    padding: 1.2rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.events-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.event-time {
    font-weight: 700;
    color: var(--accent-light);
    margin-right: 0.5rem;
}

.event-name {
    font-weight: 700;
    text-transform: uppercase;
}

.event-desc {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

footer {
    height: 1rem;
    font-size:0.6rem;
    line-height: 1rem;
    background: var(--accent-color); 
    color: var(--primary-color); 
    text-align: center; 
    margin-top: 0;
    z-index: 2;
    position: relative;
}

/* Mobile responsive */
@media (max-width: 768px) {
    section > *:not(.rooms-container):not(.art-background) {
        margin-left: 5vw;
        margin-right: 5vw;
    }
    
    .quest-content {
        margin: 0 5vw;
    }
    
    header.scrolled .logo-container {
        left: 40px;
        transform: translate(0, -100%) scale(0);
    }
    
    nav {
        padding: 0 2rem 0 100px;
    }
    
    .nav-links {
        display: none;
    }
    
    .destination-grid {
        flex-direction: column;
    }
    
    .parallax-image {
        display: none;
    }
    
    .art-background {
        display: none;
    }
    
    .paper-tear-bottom {
        display: none;
    }
    
    .tab-container {
        flex-direction: column;
    }
    
    .room-group {
        min-width: 250px;
        padding: 0 1rem;
    }
    
    .room-group h3 {
        font-size: 1.6rem;
    }
    
    .banner-container {
        gap: 1rem;
    }
    
    .emblem {
        width: 160px;
    }
    
    .emblem .name {
        font-size: 1.4rem;
        height: 70px;
    }
    
    .carousel-track {
        gap: 2rem;
    }
    
    .rooms-container::before,
    .rooms-container::after {
        width: 100px;
    }
}
/* Mobile Header - Hidden on desktop */
.mobile-header {
    display: none;
    min-height: 80vh;
}

.mobile-sticky-button {
    display: none;
}

/* Override mobile styles */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    body {
        position: relative;
    }
    
    #intro { margin-top: 0; } 

    /* Hide desktop header completely on mobile */
    .desktop-header {
        display: none !important;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 4rem 5vw;
        text-align: center;
        position: relative;
        z-index: 1;
        min-height: 50vh;
    }
    
    .mobile-logo {
        max-width: 300px;
        width: 80vw;
        height: auto;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
    }
    
    /* Mobile Sticky Button */
    .mobile-sticky-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        position: fixed;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: var(--accent-color);
        color: var(--primary-color);
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        font-family: var(--font-special);
        text-transform: uppercase;
        box-shadow: 0 8px 20px rgba(67, 137, 69, 0.5);
        transition: all 0.3s ease;
        border: 3px solid var(--secondary-color);
    }
    
    .mobile-sticky-button:hover,
    .mobile-sticky-button:active {
        background: var(--accent-light);
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 12px 30px rgba(67, 137, 69, 0.6);
    }
    
    .mobile-sticky-button i {
        font-size: 1.3rem;
    }
    
    /* Add padding to footer so sticky button doesn't cover content */
    footer {
        padding-bottom: 80px !important;
    }
}
