/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #B8956A;
    transition: color 0.3s ease;
    margin: 0;
}

.navbar.scrolled .logo h1 {
    color: #B8956A;
}

.nav-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a:hover {
    color: #B8956A;
}

.tienda-btn {
    background: #B8956A;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease;
    font-size: 0.85rem;
}

.tienda-btn:hover {
    background: #A0834F;
    color: white !important;
}

/* Hero Section - VERSIÓN ÚNICA Y LIMPIA */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quecchch {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* --- CLASE RESPONSIVE (Modificaciones para móvil/tablet) --- */

@media (max-width: 1024px) {
    /* Ajustes para Tablets */
    .hero-section-responsive {
        height: 70vh !important;
    }
}

@media (max-width: 768px) {
    /* Ajustes para Celulares */
    .hero-section-responsive {
        height: 55vh !important; /* Altura más cómoda para no tapar todo el móvil */
    }

    /* Ajuste específico de la imagen de contacto dentro de esta sección */
    .hero-section-responsive .hero-img-contact {
        object-position: left !important; /* Enfoca más a la izquierda donde está el equipo */
    }
}

@media (max-width: 480px) {
    /* Ajustes para Celulares pequeños */
    .hero-section-responsive {
        height: 45vh !important;
    }
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: #FFF7F1;;
    min-height: auto;
    position: relative;
    z-index: 1;
}


.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
    align-items: start;
}

.contact-left {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right {
    width: 100%;
}

.contact-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-header h2 {
    color: #591112;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    font-family: 'DreamCottage' !important;
}

.team-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    margin: 1rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

/* Contact Form */
.contact-form {
    background: transparent;
    border-radius: 15px;
    box-shadow: none;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #800208;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    background: white;
    color: #5B0105;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5B0105;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B8956A;
    font-weight: 400;
    font-size: 1.05rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #E9E6E6;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
  background: white;
  font-family: '';
}
.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #5B0105;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.checkbox-text {
  color: #5B0105;
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.4;
  font-family: 'Roboto' !important;
  font-weight: 300;
}

/* Submit Button */
.submit-btn {
    background: #5B0105;
    color: white;
    border: none;
    padding: 0.9rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 1.5rem auto 0;
    min-width: 140px;
}

.submit-btn:hover {
  background: #450104;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(91, 1, 5, 0.3);
  font-family: 'Roboto' !important;
  font-weight: 300;
}

.reception-img {
    border-radius: 10px;
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Mobile */
@media (max-width: 438px) {
    .team-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .contact-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-section {
        height: 100vh;
    }
}

/* Tablets y Desktop */
@media (min-width: 768px) {
    .hero-section {
        height: 100vh;
    }

    .contact-section {
        padding: 5rem 0;
    }

    .contact-container {
        grid-template-columns: 45% 55%;
        gap: 3rem;
        padding: 0 2rem;
        align-items: center;
    }

    .contact-left {
        text-align: left;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-header h2 {
        font-size: 2.2rem;
        text-align: left;
        max-width: 500px;
    }

    .team-image {
        max-width: 100%;
        margin: 0;
    }


    .form-group {
        margin-bottom: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.1rem 1.3rem;
        font-size: 1.1rem;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 1.1rem;
    }

    .checkbox-container {
        font-size: 0.85rem;
    }

    .checkbox-text {
        font-size: 0.85rem;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }

    .submit-btn {
        padding: 1rem 3.5rem;
        font-size: 1.1rem;
        margin: 2rem auto 0;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .hero-section {
        height: 100vh;
    }

    .contact-container {
        max-width: 1400px;
        grid-template-columns: 50% 50%;
        gap: 4rem;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    .team-image {
        max-width: 600px;
    }
}

.location-section {
    background-color: #FFF7F1 !important;
}