:root {
    --primary-color-rgb: 212, 175, 55;
    --primary-color: #D4AF37;
    --primary-color-hover: #b5952f;
    --whatsapp-green: #00d25b;
    --whatsapp-green-hover: #00a949;
    --whatsapp-green-rgb: 0, 210, 91;
    --text-color: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.6);
    --topbar-bg: #e6e6e6;
    /* Light gray from mockup */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: #111;
    overflow-x: hidden;
}

/* Header & Topbar */
.topbar {
    background-color: var(--topbar-bg);
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    position: absolute;
    top: 0;
    /* Centered between 80px topbar and background */
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    z-index: 11;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: #000000;
    border: 1px solid #ffffff;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-icon i {
    font-size: 32px;
    color: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon i:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    /* Fill the rest of the screen */
    min-height: 700px;
    background-image: url('assets/images/background.webp');
    background-size: cover;
    background-position: center 35%;
    /* Frames the singer's face and body better on wide screens */
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

/* Dark overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Yellowtail', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    transform: rotate(-5deg);
    /* Slight tilt like the image */
}

.hero-description {
    font-family: 'Anonymous Pro', monospace;
    font-size: clamp(14px, 3.5vw, 18px);
    letter-spacing: 2px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.pointer-icon {
    font-size: 30px;
    animation: bounce 2s infinite;
}

/* Call to Action Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 25px rgba(var(--whatsapp-green-rgb), 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 1px;
}

.whatsapp-btn i {
    font-size: 26px;
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(var(--whatsapp-green-rgb), 0.6), inset 0 0 15px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.whatsapp-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

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

    60% {
        transform: translateY(-7px);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .topbar {
        padding: 0 15px;
    }

    .logo-container {
        width: 120px;
        height: 120px;
        top: 20px;
        /* Centers 120px logo on the 80px topbar's bottom edge */
    }

    .hero-section {
        padding-top: 150px;
        /* Space for the logo */
        padding-bottom: 100px;
        /* Más espacio abajo para evitar que se corte el botón */
        background-attachment: scroll;
        /* Fixes iOS fixed background bug */
        min-height: 100svh;
        /* Usa svh (small viewport height) para considerar la barra de Safari en iOS */
        background-size: auto 115%;
        /* Makes image taller than screen to allow vertical shift */
        background-position: center bottom;
        /* Crops the extra space at the top of the photo */
    }


    .hero-content {
        gap: 20px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-family: 'Anonymous Pro', monospace;
        font-size: clamp(14px, 3.5vw, 18px);
        letter-spacing: 2px;
        line-height: 1.8;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        font-weight: 600;
    }

    .hero-description br {
        display: none;
        /* Let text wrap naturally on smaller screens */
    }

    .whatsapp-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #000000;
    color: var(--text-color);
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
}

.footer-title {
    font-family: 'Yellowtail', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--primary-color);
    transform: rotate(-2deg);
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-price-label {
    font-family: 'League Spartan', sans-serif;
    font-size: 24px;
    margin-top: 20px;
}

.footer-price {
    font-family: 'League Spartan', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3);
}

.footer-note {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 40px;
}

.footer-cta-container {
    margin-bottom: 50px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-socials a {
    color: var(--text-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-copyright {
    font-size: 14px;
    color: #888888;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-color);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(var(--whatsapp-green-rgb), 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-green-hover);
    box-shadow: 0 6px 20px rgba(var(--whatsapp-green-rgb), 0.6);
    color: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/* Policy Section */
.policy-section {
    padding: 120px 20px 60px;
    min-height: 100vh;
    color: var(--text-color, #fff);
}

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

.policy-container h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-container h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policy-container p,
.policy-container li {
    font-family: 'Anonymous Pro', monospace;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-container strong,
.policy-container b {
    font-weight: 700;
    -webkit-text-stroke: 0.5px currentColor;
    text-shadow: 0.5px 0 0 currentColor;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}