:root {
    --gold: #c5a059;
    --dark: #0a0a0a;
    --dark-soft: #141414;
    --gray-text: #888;
    --white: #f5f5f5;
}

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

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    padding-top: 80px; /* Added padding to prevent content overlap */
    max-width: 920px;
    margin: auto;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: var(--dark-soft);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: 700; }
.logo span { color: var(--gold); }
.sub-text-logo{
    display: block;
    font-size: 0.75rem;
    color: var(--gray-text);
    letter-spacing: 2px;
    margin-top: 4px;
}
nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    margin-left: 30px;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: 0.3s;
}

nav a:hover { opacity: 1; color: var(--gold); }

/* Tipografías */
h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 3px; }

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px); /* Adjusted height for fixed header */
    padding: 20px 6%;
    display: flex;
    flex-direction: column;
}

.hero-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    gap: 40px;
}

.hero-content { flex: 1; margin-top: 20px; width: 100%; }

.brand-name {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 25px;
    text-shadow: 
        0 0 20px rgba(0,0,0,0.8),
        0 10px 40px rgba(0,0,0,0.9);
}

.tagline { color: var(--gold); font-size: 0.8rem; letter-spacing: 5px; display: block; margin-bottom: 15px; }


.hero-description { color: var(--gray-text); max-width: 400px; margin-bottom: 40px; font-weight: 300;      color: #e0e0e0; text-shadow: 0 5px 20px rgba(0,0,0,0.9); }

.btn-primary {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.4s;
}

.btn-primary:hover { background: var(--gold); color: black; }

.hero-image-container {     flex: 1;
    position: absolute;
    z-index: -1;
    width: 100%;
    max-width: 920px;
    height: 100%;
    /* max-height: 920px; */
    bottom: 0; }
.img-main { width: 100%; height: 100%;max-height: 100%;; object-fit: cover; }

/* Experience Section */
.experience { padding: 100px 6%; background: var(--dark-soft); }

.experience-header { display: flex; align-items: center; gap: 20px; margin-bottom: 60px; }
.gold-line { width: 50px; height: 2px; background: var(--gold); }

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.perk {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--gray-text);
    background-color: var(--dark);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.perk span {
    color: var(--gold);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.perk h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.perk p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Services */
.services { padding: 100px 6%; }
.section-container { display: flex; gap: 100px; align-items: center; }

.services-info { flex: 1; }
.service-list { list-style: none; margin: 30px 0; }
.service-list li { 
    padding: 12px 0; 
    border-bottom: 1px solid #222; 
    color: var(--gray-text);
    font-size: 0.95rem;
}
.service-list li::before { content: "•"; color: var(--gold); margin-right: 15px; }

.price-tag { 
    font-family: 'Oswald', sans-serif; 
    font-size: 1.5rem; 
    color: var(--gold); 
    border-top: 1px solid var(--gold);
    display: inline-block;
    padding-top: 10px;
}

.services-image img { width: 400px; height: 500px; object-fit: cover; border: 10px solid var(--dark-soft); }

/* Gallery Grid */
.gallery { padding: 50px 2%; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.grid-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: 0.5s; cursor: pointer; }
.grid-item:hover img { filter: brightness(1); }

.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

/* Videos Section */
.videos {
    padding: 100px 6%;
    background: var(--dark-soft);
    position: relative;
}

.videos .section-title {
    margin-bottom: 40px;
}

.video-slider {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.slide video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border: 3px solid var(--gold);
    border-radius: 12px;
}

/* Botones */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    color: black;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.slider-btn.prev {
    left: -10px;
}

.slider-btn.next {
    right: -10px;
}

.slider-btn:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 20px 6% 80px 6%;
    background: var(--dark-soft);
    text-align: center;
}

.footer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-content p {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-style: italic;
}

.socials a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
    text-decoration: none;
}

.socials a:hover { 
    color: var(--gold);
    transform: scale(1.1); /* Added scale effect */
}

/* WhatsApp */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    text-decoration: none; /* Remove underline */
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 130px; /* Adjust for new header height */
    }

    .main-header {
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: space-between;
        align-items: center;
    }

    .main-header nav {
        order: 1; /* Move nav to the end */
        flex-basis: 100%; /* Take full width to force a new line */
        margin-top: 10px;
        justify-content: center;
        display: flex;
    }
    
    .main-header nav a {
        margin: 0 10px; /* Adjust spacing for mobile nav links */
    }

    .hero-main { flex-direction: column; text-align: center; }
    .brand-name { font-size: 3rem; }
    .section-container { flex-direction: column; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .price .cop { font-size: 1.5rem; }
}

/* Contenedor General de Servicios */
.services-catalog {
    padding: 100px 6%;
    background-color: #0a0a0a;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Estilo Base de la Tarjeta */
.service-card {
    background: #141414;
    padding: 40px 30px;
    border: 1px solid #222;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #c5a059;
}

/* Encabezado y Precios */
.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.price {
    margin-bottom: 20px;
}

.price .cop {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c5a059;
    font-family: 'Oswald', sans-serif;
}

.price .usd {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

/* Descripción y Lista */
.description {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 25px;
    min-height: 45px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features li {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "—";
    color: #c5a059;
    margin-right: 10px;
}

.duration {
    font-size: 0.75rem;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Estilos Especiales */
.featured {
    background: #1a1a1a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.gold-border {
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.prestige {
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 3px solid #c5a059;
}

/* Servicios Adicionales */
.extra-services {
    margin-top: 80px;
    border-top: 1px solid #222;
    padding-top: 50px;
}

.extra-services h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #c5a059;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #111;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: 0.3s;
}

.extra-item:hover {
    background: #1a1a1a;
    color: #c5a059;
}



/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher button {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.3s;
}

.language-switcher button:hover {
    background: var(--gold);
    color: var(--dark);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--dark);
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    color: var(--white);
    border: 1px solid var(--gold);

    transform: translateY(40px) scale(0.95);;
    transition: all 0.4s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}



.modal select {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    background: #222;
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-size: 1rem
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    cursor: pointer;
    font-size: 22px;
}
.extras-options {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.extra-option {
    padding: 12px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: 0.3s;
    background: #111;
}

.extra-option:hover {
    background: var(--gold);
    color: var(--dark);
}

.extra-option.active {
    background: var(--gold);
    color: var(--dark);
    font-weight: bold;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1001; /* Higher than the header */
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.image-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close-image-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-image-modal:hover,
.close-image-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Animation */
.image-modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}