/* Irie.mx Custom Styles - With Tailwind Fallbacks */

/* ========================================
   BASE RESET & DEFAULTS
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        sans-serif;
    color: #292524;
    background-color: #b21f1f;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   FONTS
   ======================================== */
.font-heading {
    font-family: Poppins, sans-serif;
}

.font-body {
    font-family: Inter, sans-serif;
}

/* ========================================
   CUSTOM COLORS
   ======================================== */
.bg-ired {
    background-color: #b21f1f;
}

.bg-igold {
    background-color: #f6c81d;
}

.bg-igreen {
    background-color: #296330;
}

.bg-idark {
    background-color: #1a1a1a;
}

.bg-icream {
    background-color: #fff8dc;
}

.bg-white {
    background-color: #fff;
}

.bg-stone-50 {
    background-color: #fafaf9;
}

.bg-stone-800 {
    background-color: #292524;
}

.text-ired {
    color: #b21f1f;
}

.text-igold {
    color: #f6c81d;
}

.text-igreen {
    color: #296330;
}

.text-idark {
    color: #1a1a1a;
}

.text-icream {
    color: #fff8dc;
}

.text-white {
    color: #fff;
}

.text-stone-400 {
    color: #a8a29e;
}

.text-stone-600 {
    color: #57534e;
}

.text-stone-700 {
    color: #44403c;
}

.text-stone-800 {
    color: #292524;
}

.border-ired {
    border-color: #b21f1f;
}

.border-igold {
    border-color: #f6c81d;
}

.border-igreen {
    border-color: #296330;
}

.border-icream {
    border-color: #fff8dc;
}

.border-white {
    border-color: #fff;
}

/* Hover states */
.hover\:text-ired:hover {
    color: #b21f1f;
}

.hover\:text-igreen:hover {
    color: #296330;
}

.hover\:text-white:hover {
    color: #fff;
}

.hover\:bg-ired:hover {
    background-color: #b21f1f;
}

.hover\:bg-igreen:hover {
    background-color: #296330;
}

.hover\:bg-icream:hover {
    background-color: #fff8dc;
}

.hover\:bg-yellow-400:hover {
    background-color: #facc15;
}

.hover\:bg-emerald-800:hover {
    background-color: #065f46;
}

.hover\:bg-green-400:hover {
    background-color: #4ade80;
}

.hover\:bg-red-700:hover {
    background-color: #b91c1c;
}

.hover\:border-ired:hover {
    border-color: #b21f1f;
}

.hover\:border-igreen:hover {
    border-color: #296330;
}

.hover\:border-igold:hover {
    border-color: #f6c81d;
}

/* Color modifiers with opacity */
.bg-icream\/30 {
    background-color: rgb(255 248 220 / 30%);
}

.bg-icream\/50 {
    background-color: rgb(255 248 220 / 50%);
}

.bg-igreen\/10 {
    background-color: rgb(41 99 48 / 10%);
}

.bg-igold\/10 {
    background-color: rgb(246 200 29 / 10%);
}

.bg-igold\/20 {
    background-color: rgb(246 200 29 / 20%);
}

.bg-ired\/10 {
    background-color: rgb(178 31 31 / 10%);
}

.bg-white\/10 {
    background-color: rgb(255 255 255 / 10%);
}

.bg-white\/20 {
    background-color: rgb(255 255 255 / 20%);
}

.bg-white\/90 {
    background-color: rgb(255 255 255 / 90%);
}

.text-white\/60 {
    color: rgb(255 255 255 / 60%);
}

.text-white\/80 {
    color: rgb(255 255 255 / 80%);
}

.text-white\/90 {
    color: rgb(255 255 255 / 90%);
}

.text-idark\/80 {
    color: rgb(26 26 26 / 80%);
}

/* ========================================
   LAYOUT - FLEXBOX & GRID
   ======================================== */
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

/* Grid columns */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (width >= 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:text-right {
        text-align: right;
    }
}

@media (width >= 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* ========================================
   SPACING
   ======================================== */
.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-28 {
    padding-top: 7rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.pb-28 {
    padding-bottom: 7rem;
}

.m-0 {
    margin: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

@media (width >= 768px) {
    .md\:p-10 {
        padding: 2.5rem;
    }

    .md\:pt-40 {
        padding-top: 10rem;
    }

    .md\:pb-36 {
        padding-bottom: 9rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .md\:w-44 {
        width: 11rem;
    }

    .md\:h-44 {
        height: 11rem;
    }
}

/* ========================================
   SIZING
   ======================================== */
.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-7 {
    width: 1.75rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-11 {
    width: 2.75rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-36 {
    width: 9rem;
}

.w-full {
    width: 100%;
}

.h-1 {
    height: 0.25rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-7 {
    height: 1.75rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-11 {
    height: 2.75rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-36 {
    height: 9rem;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.italic {
    font-style: italic;
}

.leading-relaxed {
    line-height: 1.625;
}

/* ========================================
   BORDERS & ROUNDED
   ======================================== */
.border {
    border-width: 1px;
    border-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-l-4 {
    border-left-width: 4px;
    border-left-style: solid;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* ========================================
   SHADOWS
   ======================================== */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
}

.shadow {
    box-shadow:
        0 1px 3px 0 rgb(0 0 0 / 10%),
        0 1px 2px -1px rgb(0 0 0 / 10%);
}

.shadow-md {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 10%),
        0 2px 4px -2px rgb(0 0 0 / 10%);
}

.shadow-lg {
    box-shadow:
        0 10px 15px -3px rgb(0 0 0 / 10%),
        0 4px 6px -4px rgb(0 0 0 / 10%);
}

.shadow-xl {
    box-shadow:
        0 20px 25px -5px rgb(0 0 0 / 10%),
        0 8px 10px -6px rgb(0 0 0 / 10%);
}

.hover\:shadow-lg:hover {
    box-shadow:
        0 10px 15px -3px rgb(0 0 0 / 10%),
        0 4px 6px -4px rgb(0 0 0 / 10%);
}

.hover\:shadow-xl:hover {
    box-shadow:
        0 20px 25px -5px rgb(0 0 0 / 10%),
        0 8px 10px -6px rgb(0 0 0 / 10%);
}

.drop-shadow {
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 10%)) drop-shadow(0 1px 1px rgb(0 0 0 / 6%));
}

.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 4%)) drop-shadow(0 4px 3px rgb(0 0 0 / 10%));
}

/* ========================================
   POSITIONING
   ======================================== */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.bottom-6 {
    bottom: 1.5rem;
}

.right-6 {
    right: 1.5rem;
}

.z-50 {
    z-index: 50;
}

.z-\[60\] {
    z-index: 60;
}

/* ========================================
   TRANSITIONS
   ======================================== */
.transition {
    transition-property:
        color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

/* ========================================
   EFFECTS
   ======================================== */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.cursor-default {
    cursor: default;
}

/* ========================================
   GRADIENTS
   ======================================== */
.gradient-rasta {
    background: linear-gradient(180deg, #b21f1f 0%, #f6c81d 50%, #296330 100%);
}

.gradient-green {
    background: linear-gradient(180deg, #296330 0%, #1d4a24 100%);
}

.gradient-green-light {
    background: linear-gradient(180deg, #5db36a 0%, #4a9956 100%);
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-icream\/50 {
    --tw-gradient-from: rgb(255 248 220 / 50%);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-igreen {
    --tw-gradient-from: #296330;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.to-white {
    --tw-gradient-to: #fff;
}

.to-emerald-800 {
    --tw-gradient-to: #065f46;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-bg {
    background:
        linear-gradient(180deg, rgb(178 31 31 / 85%) 0%, rgb(246 200 29 / 75%) 50%, rgb(41 99 48 / 85%) 100%),
        url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Disable parallax on mobile/touch devices - iOS doesn't support it */
@supports (-webkit-touch-callout: none) {
    .hero-bg {
        background-attachment: scroll;
    }
}

@media (width <= 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
}

/* ========================================
   RASTA STRIPE
   ======================================== */
.rasta-stripe {
    height: 6px;
    background: linear-gradient(90deg, #b21f1f 33%, #f6c81d 33% 66%, #296330 66%);
}

/* ========================================
   WAVE DECORATIONS
   ======================================== */
.wave-decoration {
    position: relative;
}

.wave-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E")
        no-repeat bottom;
    background-size: cover;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

.pulse-glow {
    position: relative;
}

.pulse-glow::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgb(246 200 29 / 60%) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 2s ease-in-out infinite;
    will-change: transform, opacity;
}

/* ========================================
   CARD HOVER EFFECTS
   ======================================== */
.card-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

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

.icon-hover {
    transition: transform 0.3s ease;
    will-change: transform;
}

.card-hover:hover .icon-hover {
    transform: scale(1.15) rotate(5deg);
}

/* ========================================
   GRADIENT TEXT
   ======================================== */
.gradient-text {
    background: linear-gradient(135deg, #f6c81d 0%, #fff 50%, #296330 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SM BREAKPOINT UTILITIES
   ======================================== */
@media (width >= 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

/* ========================================
   GLASSMORPHIC DESIGN SYSTEM
   ======================================== */
.glass-card {
    background: rgb(28 28 30 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgb(255 255 255 / 40%);
    border-radius: 20px;
}

.glass-card-dark {
    background: rgb(28 28 30 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgb(255 255 255 / 40%);
    border-radius: 20px;
}

/* Mobile: more transparent for better background visibility */
@media (width <= 768px) {
    .glass-card {
        background: rgb(28 28 30 / 15%);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .glass-card-dark {
        background: rgb(28 28 30 / 15%);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}

/* Glass buttons - dark glass like Kev's site */
.glass-btn,
.glass-btn-gold,
.glass-btn-green,
.glass-btn-outline {
    background: rgb(28 28 30 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgb(255 255 255 / 40%);
    transition: all 0.2s ease;
}

.glass-btn:hover,
.glass-btn-gold:hover,
.glass-btn-green:hover,
.glass-btn-outline:hover {
    background: rgb(28 28 30 / 50%);
    transform: scale(1.05);
}

/* ========================================
   FLOATING PILL NAVIGATION
   ======================================== */
.floating-pill {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 55;
    padding: 8px;
    background: rgb(28 28 30 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgb(255 255 255 / 40%);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
}

.pill-button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgb(28 28 30 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgb(255 255 255 / 40%);
    width: 48px;
    height: 48px;
    border-radius: 24px;
    transition: all 0.2s ease;
    color: rgb(255 255 255 / 90%);
    text-decoration: none;
}

.pill-button:hover {
    background: rgb(246 200 29 / 80%);
    border-color: #f6c81d;
    transform: scale(1.05);
}

.pill-button:active {
    transform: scale(0.95);
}

.pill-button.whatsapp-btn {
    background: rgb(37 211 102 / 30%);
    color: white;
    border-color: rgb(255 255 255 / 40%);
}

.pill-button.whatsapp-btn:hover {
    background: rgb(37 211 102 / 50%);
}

/* Hamburger icon in pill */
.menu-dots {
    display: flex;
    gap: 3px;
}

.menu-dots span {
    display: block;
    width: 5px;
    height: 5px;
    background-color: currentcolor;
    border-radius: 50%;
}

/* Pill menus */
.pill-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: 260px;
    background: rgb(28 28 30 / 70%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 32px rgb(0 0 0 / 50%);
    border-radius: 22px;
    border: 2px solid rgb(255 255 255 / 40%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

.pill-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.pill-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: rgb(255 255 255 / 95%);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    transition: all 0.2s ease;
}

.pill-menu a:last-child {
    border-bottom: none;
}

.pill-menu a:hover {
    background: rgb(255 255 255 / 10%);
}

.pill-menu a svg,
.pill-menu a i {
    width: 20px;
    height: 20px;
    color: rgb(255 255 255 / 90%);
    font-size: 18px;
}

/* Language menu styling */
.lang-pill-menu {
    width: 180px;
}

.lang-pill-menu a {
    gap: 16px;
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 54;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   HAMMOCK SECTION DIVIDER
   ======================================== */
.hammock-divider {
    position: relative;
    height: 80px;
    overflow: visible;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hammock-divider img {
    height: 70px;
    width: auto;
}

/* ========================================
   SECTION BACKGROUNDS WITH PARALLAX
   ======================================== */
.section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 85%);
    z-index: 0;
}

.section-bg > * {
    position: relative;
    z-index: 1;
}

/* Disable parallax on mobile */
@media (width <= 768px) {
    .section-bg {
        background-attachment: scroll;
    }

    .section-bg::before {
        background: rgb(255 255 255 / 90%);
    }
}

@supports (-webkit-touch-callout: none) {
    .section-bg {
        background-attachment: scroll;
    }
}

/* ========================================
   TROPICAL SWAY ANIMATIONS
   ======================================== */
@keyframes palm-sway {
    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes gentle-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(1deg);
    }

    50% {
        transform: translateY(-10px) rotate(0deg);
    }

    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes wave-motion {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.sway-animation {
    animation: palm-sway 5s ease-in-out infinite;
    transform-origin: bottom center;
}

.gentle-float {
    animation: gentle-float 6s ease-in-out infinite;
}

.wave-motion {
    animation: wave-motion 3s ease-in-out infinite;
}

/* ========================================
   ENHANCED FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgb(37 211 102 / 40%);
    z-index: 50;
    transition: all 0.3s ease;
    animation: gentle-float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgb(37 211 102 / 60%);
    animation-play-state: paused;
}

.whatsapp-float svg,
.whatsapp-float i {
    width: 32px;
    height: 32px;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse ring effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgb(37 211 102 / 40%);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ========================================
   AUDIO INDICATOR (for reggae sound)
   ======================================== */
.audio-indicator {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgb(246 200 29 / 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(246 200 29 / 40%);
}

.audio-indicator:hover {
    transform: scale(1.1);
    background: #f6c81d;
}

.audio-indicator svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
}

/* Sound wave animation when playing */
.audio-indicator.playing::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #f6c81d;
    animation: sound-wave 1s ease-out infinite;
}

@keyframes sound-wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
