/* Variables de color basadas en el logo */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E07A;
    --gold-dark: #B8941F;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
    --white: #ffffff;
    --text-light: #cccccc;
}

/* Override Bootstrap styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--black);
    color: var(--text-light);
    line-height: 1.6;
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.custom-navbar .navbar-brand .logo-img {
    height: 50px;
    width: auto;
}

.custom-navbar .nav-link {
    color: var(--gold) !important;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 10px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--gold-light) !important;
    text-shadow: 0 0 10px var(--gold);
}

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 80%;
}

.custom-navbar .navbar-toggler {
    border-color: var(--gold);
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.banner-title {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
}

.banner-subtitle {
    color: var(--text-light);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(45deg, var(--gold), var(--gold-light)) !important;
    border: none !important;
    color: var(--black) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px !important;
    border-radius: 30px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--black) !important;
}

/* Carousel indicators */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Section titles */
.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    color: var(--gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* Novedades Cards */
.novedad-card {
    background: var(--dark-gray);
    border: none !important;
    border-radius: 15px !important;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.novedad-card:hover {
    transform: translateY(-10px);
}

.card-img-wrapper {
    height: 300px;
}

.card-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.novedad-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    top: 0 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.novedad-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay .card-title {
    color: var(--gold) !important;
    font-family: 'Cinzel Decorative', serif;
}

/* Instagram Section */
.instagram-button {
    background: linear-gradient(45deg, #E4405F, #C13584) !important;
    border: none !important;
    color: white !important;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
    color: white !important;
}

/* Form Controls */
.form-control:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
}

.form-control::placeholder {
    color: var(--text-light) !important;
}

.form-control.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 15px 0;
    transform: scale(0.95);
    transform-origin: 0 0;
}

@media (max-width: 576px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Social Links */
.social-links .btn {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-2px);
}

/* Form Message */
.form-message {
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    display: none;
}

.form-message.success {
    background: rgba(46, 125, 50, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem !important;
    }
    
    .banner-subtitle {
        font-size: 1.2rem !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px !important;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2rem !important;
    }
    
    .banner-subtitle {
        font-size: 1rem !important;
    }
    
    .custom-navbar .nav-link {
        text-align: center;
        margin: 5px 0;
    }
}/* Variables de color basadas en el logo */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E07A;
    --gold-dark: #B8941F;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
    --white: #ffffff;
    --text-light: #cccccc;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
    text-shadow: 0 0 10px var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.banner-container {
    height: 100%;
    position: relative;
}

.banner-slider {
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.banner-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.banner-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Banner dots */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Section titles */
.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* Novedades Section */
.novedades-section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.novedades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.novedad-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.novedad-card:hover {
    transform: translateY(-10px);
}

.novedad-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.novedad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.novedad-card:hover .novedad-image img {
    transform: scale(1.1);
}

.novedad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 20px 20px;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.novedad-card:hover .novedad-overlay {
    transform: translateY(0);
}

.novedad-content h3 {
    color: var(--gold);
    font-family: 'Cinzel Decorative', serif;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.novedad-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background: var(--black);
}

.instagram-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

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

.instagram-info i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.instagram-info h3 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.instagram-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.instagram-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #E4405F, #C13584);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 80px 0 30px;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    max-width: 400px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(51, 51, 51, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: rgba(46, 125, 50, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: var(--text-light);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .novedades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}