/* Custom Styles for Landing Page */

/* Base Adjustments */
body {
    background-color: #2c1702;
    background-image: 
        radial-gradient(at 0% 0%, hsla(30, 96%, 10%, 1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(30, 96%, 15%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(30, 96%, 21%, 1) 0, transparent 50%);
    background-attachment: fixed;
}

/* Glassmorphism Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(65, 105, 225, 0.3); /* Royal Blue Hint */
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(65, 105, 225, 0.2);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(246, 211, 62, 0.15); /* Highlight Glow */
    border-color: rgba(246, 211, 62, 0.3);
}

/* Grid Lines Background */
.grid-lines {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Animations Keyframes */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

/* Light float variant for smaller, subtler motion */
@keyframes float-light {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow:
            0 35px 65px 18px rgba(246, 211, 62, 0.25),
            0 20px 50px rgba(0, 0, 0, 0.95);
    }
    50% {
        transform: translateY(-18px) rotate(1deg);
        box-shadow:
            0 4px 12px 2px rgba(246, 211, 62, 0.04),
            0 3px 10px rgba(0, 0, 0, 0.35);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow:
            0 35px 65px 18px rgba(246, 211, 62, 0.25),
            0 20px 50px rgba(0, 0, 0, 0.95);
    }
}

.float-light {
    animation: float-light 6s ease-in-out infinite;
    will-change: transform, box-shadow;
}

/* Outdoor image specific tweaks: slightly larger radius (+20% from rounded-sm) and initial shadow */
.outdoor-img {
    border-radius: 0.15rem; /* ~20% larger than Tailwind's rounded-sm (0.125rem) */
    box-shadow:
        0 35px 65px 18px rgba(246, 211, 62, 0.25),
        0 20px 50px rgba(0, 0, 0, 0.95);
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.animate-pulse-slow {
    animation: pulse-slow 6s ease-in-out infinite;
}

/* Custom Cursor Effects */
.cursor-blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Accordion Transitions */
.faq-content {
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0f1c;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4169e1;
}

/* Typography Enhancements */
h1, h2, h3 {
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #f6d33e, #4169e1);
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
