:root {
    --bg-color: #050505;
    --text-color: #f1f1f1;
    --primary-red: #8B0000;      /* Dark red */
    --accent-red: #ff2a2a;       /* Neon red accent */
    --gold: #D4AF37;             /* Gold details */
    --dark-grey: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
}

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

.text-center {
    text-align: center;
}

/* Typography styles */
.section-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar .logo {
    font-size: 1.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.6);
}

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

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
    opacity: 0.5;
    filter: brightness(0.6) contrast(1.2) sepia(0.3) hue-rotate(-20deg) saturate(1.5);
}

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    color: var(--accent-red);
    text-shadow: 0 0 20px rgba(255, 42, 42, 0.5), 0 0 40px rgba(139, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: 1px solid var(--primary-red);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.btn:hover {
    background: transparent;
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: 0 0 25px rgba(255, 42, 42, 0.6);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-full {
    width: 100%;
}

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

/* About Section */
.about {
    background: linear-gradient(to bottom, #050505, #0a0000, #050505);
}

.editorial-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #aaa;
    font-style: italic;
    font-family: var(--font-heading);
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    background: var(--bg-color);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    height: 400px;
    width: 260px;
    margin-right: 20px;
    flex-shrink: 0;
    background-image: url('images/hermanos.png');
    background-size: cover;
    background-position: top center;
    border-radius: 5px;
    overflow: hidden;
    filter: grayscale(30%) brightness(0.7);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

.gallery-item.restricted {
    filter: blur(5px) brightness(0.6);
}

.restricted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); }
}

.restricted-overlay span {
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border: 1px solid var(--accent-red);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.3);
}

/* VIP Section */
.vip-memberships {
    background: url('images/hermanos.png') center/cover fixed;
    position: relative;
}

.vip-memberships::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(5,5,5,0.9);
}

.vip-memberships .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.vip-card {
    background: var(--dark-grey);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem;
    width: 350px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.vip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    border-color: var(--primary-red);
}

.vip-card.premium {
    background: linear-gradient(145deg, var(--dark-grey), #220000);
    border-color: var(--primary-red);
}

.vip-card h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.vip-card .price {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vip-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.vip-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.95rem;
}

.vip-card ul li::before {
    content: '\2726'; /* ✦ */
    color: var(--accent-red);
    margin-right: 10px;
}

.vip-card .btn {
    margin-top: auto;
}

/* Contact Section */
.contact {
    background: var(--bg-color);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 1.5rem;
    display: flex;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    background: #000;
    border-top: 1px solid rgba(255,0,0,0.1);
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 10px;
    color: var(--accent-red);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations & Utility */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-200%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}
