:root {
    --bg-color: #0d0d0d;
    --card-bg: #161616;
    --accent-color: #d4af37;
    /* Gold */
    --accent-hover: #f9d668;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --spacing-container: 1200px;
    --transition-speed: 0.3s;
}

/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Accessibility: Visually Hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
[role="button"]:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-button {
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    color: var(--accent-color) !important;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--bg-color) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('Photos Lumpiny 24/1758093887917.jpg');
    /* Using first image as hero */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-tag {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.hero-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    background: var(--accent-hover);
}

/* Sections General */
section {
    padding: 6rem 0;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

/* Details Section */
.details-section {
    background: var(--card-bg);
}

.details-section .container {
    display: block;
}

#details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-speed);
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.detail-card i {
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.detail-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.detail-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.video-card {
    background: var(--card-bg);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.video-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.video-card video {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 16/9;
    background: #000;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: zoom-in;
    aspect-ratio: 4/3;
    /* Enforce uniform shape */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crop to fit */
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay i {
    color: white;
    width: 48px;
    height: 48px;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 85vh;
    object-fit: contain;
    animation: zoom 0.4s;
}

@keyframes zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Location */
.location-section {
    text-align: center;
}

.contact-email-text {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }

    .lightbox-content {
        width: 100%;
    }
}

.location-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.map-wrapper {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-btn-container {
    margin-top: 1.5rem;
}

.map-link-btn {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link-btn:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--card-bg);
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

footer > .container > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Contenedor de botones de contacto */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    min-width: 180px;
}

.contact-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Botón de Email - Principal */
.contact-btn-email {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.contact-btn-email:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-color);
}

/* Botón de teléfono */
.contact-btn-phone {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.contact-btn-phone:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Botón de WhatsApp */
.contact-btn-whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.contact-btn-whatsapp:hover {
    background: #25D366;
    color: var(--bg-color);
}

/* Texto de email/teléfono debajo de los botones */
.contact-email-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-email-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email-text a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.contact-phone-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

#contact-phone-container,
#contact-whatsapp-container {
    margin-top: 1rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .navbar .nav-links {
        display: none;
        /* simple hide for now, could add hamburger */
    }

    .navbar {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}