:root {
    --color-brown-dark: #1a1a1a;
    /* Darker background */
    --color-brown-light: #2d2d2d;
    --color-green-dark: #004d00;
    --color-green-light: #00ff00;
    /* Neon Green */
    --color-cream: #f0f0f0;
    --color-accent: #39ff14;
    /* Neon Green Accent */
    --color-text: #ffffff;

    --font-heading: 'Rye', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

body {
    font-family: var(--font-body);
    background-color: #000;
    color: var(--color-text);
    overflow-x: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('sincelejo_fondo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 999999;
    /* Extremely high to ensure it's on top of everything */
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Manta Follower */
.manta-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    /* Adjust size as needed */
    height: auto;
    pointer-events: none;
    z-index: 9997;
    /* Below cursor (9999) and particles (9998/9999) but above content */
    opacity: 0;
    /* Hidden initially until moved */
    transition: opacity 0.3s;
    transform: translate(-50%, -50%);
}

body:hover .manta-follower {
    opacity: 1;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    /* Below cursor, above content? No, below content usually, but for click effects maybe above? Let's put it on top but pointer-events none */
    pointer-events: none;
    z-index: 9999;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: 0.3s;
    border-bottom: 1px solid var(--color-green-dark);
}

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

.nav-logo {
    height: 50px;
    width: auto;
}

.mobile-logo {
    display: none;
    /* Hidden on desktop */
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-green-light);
    text-shadow: 0 0 10px var(--color-green-dark);
}

.menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    /* Ensure above the mobile menu (998) */
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-green-light);
    text-shadow: 0 0 10px var(--color-green-light);
}

/* Responsive Header */
@media (max-width: 768px) {
    .navbar {
        justify-content: center;
        /* Center everything */
    }

    .pc-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        height: 40px;
        /* Smaller on mobile */
    }

    .brand-name {
        display: none;
        /* Hide text on mobile */
    }

    .menu-toggle {
        display: none;
        /* Removed from HTML, but good to ensure hidden */
    }

    .nav-links {
        display: none;
        /* Completely hide nav links on mobile */
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    /* Background handled in body */
}

.hero-logo {
    width: 300px;
    display: block;
    /* Ensure no extra space */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.bull-eyes-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.eye {
    position: absolute;
    width: 20px;
    /* Estimated size, might need adjustment */
    height: 14px;
    background: transparent;
    /* Or white if the original eyes are white */
    border-radius: 50%;
    overflow: hidden;
    /* Debug borders - remove later */
    /* border: 1px solid red; */
}

/* Positioning eyes - Calculated from 1080x1080 original */
.eye-left {
    top: 35.5%;
    left: 55.3%;
    transform: translate(-50%, -50%);
    /* Center on the coordinate */
}

.eye-right {
    top: 35.7%;
    right: auto;
    /* Reset right */
    left: 63.2%;
    transform: translate(-50%, -50%);
    /* Center on the coordinate */
}

.pupil {
    width: 5px;
    /* Scaled for 300px logo width (approx 22px original -> ~6px) */
    height: 5px;
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Subtle outline just in case */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    text-shadow: 4px 4px 0px #000;
    margin-bottom: 1rem;
}

.main-title .highlight {
    color: var(--color-green-light);
    display: inline-block;
    text-shadow: 0 0 20px var(--color-green-dark);
}

.tagline {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px black;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    background-color: var(--color-green-light);
    border: none;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--color-green-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--color-green-light);
    background-color: white;
}

/* Sections */
.content-section {
    padding: 6rem 2rem;
}

.alt-bg {
    background-color: rgba(0, 0, 0, 0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-green-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 0px #000;
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #eee;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    border: 1px solid var(--color-green-dark);
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--color-green-light);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-green-light);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.card p {
    color: #ccc;
}

/* Map Section */
.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--color-green-dark);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Schedule List */
.schedule-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    transition: background-color 0.3s, padding-left 0.3s;
}

.schedule-item:hover {
    background-color: white;
    padding-left: 2rem;
    border-radius: 10px;
}

.schedule-item .time {
    font-weight: 700;
    color: var(--color-green-dark);
}

/* Footer */
footer {
    background-color: black;
    color: white;
    padding: 4rem 2rem 8rem;
    /* Extra padding bottom for player */
    text-align: center;
    border-top: 1px solid var(--color-green-dark);
}

.socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--color-green-light);
    text-shadow: 0 0 10px var(--color-green-light);
}

/* Sticky Player */
.sticky-player {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    z-index: 10000;
    color: white;
    border: 1px solid var(--color-green-dark);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-art {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    animation: spin 10s linear infinite;
    animation-play-state: paused;
}

.player-art.playing {
    animation-play-state: running;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.track-details {
    display: flex;
    flex-direction: column;
}

.player-title {
    font-weight: 700;
    font-size: 1rem;
}

.player-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1rem;
}

.player-btn {
    background: var(--color-accent);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown-dark);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.player-btn:hover {
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider {
    width: 80px;
    accent-color: var(--color-accent);
}

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

    .nav-links {
        display: none;
        /* Mobile menu to be implemented if needed, for now hidden */
    }

    .sticky-player {
        width: 95%;
        bottom: 10px;
        padding: 0.8rem;
    }

    .volume-control {
        display: none;
    }
}