
 /* INDEX */
 /* Estilos generales */
        :root {
            --primary-color: #6aaa5c;
            --secondary-color: #504f2c;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --grey-color: #d7d7d7;
            --success-color: #27ae60;
            --warning-color: #f39c12;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Montserrat", Helvetica, Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: white;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 80vh;
            overflow: hidden;
            margin: 0;
        }
        
        .hero-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            bottom: 0;
            position: absolute;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
        }
        
        .header {
            font-size: 4px;
            position: absolute;
            top: 0;
            left: 0;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 0.5px solid white;
            box-sizing: border-box;
            z-index: 10;
            width: 80%;
            transform: translateX(10%);
        }

        .header img {
            height: 80px;
            width: auto;
        }
        
        
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #ddd;
        }
        
        .logo-container {
            text-align: center;
            margin-top: 20px;
            height: 80px;
        }
        
        .main-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            font-size: 28px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .booking-box {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .booking-box h3 {
            font-weight: normal;
            margin-bottom: 15px;
            text-align: left;
            font-size: 14px;
            color: white;
        }
        

        .booking-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            justify-content:space-between;
        }
        
        .form-group {
            display: flex;
            align-items: center;
            background-color: transparent;
            border: 1px solid white;
            padding: 8px 15px;
            color: white;
            min-height: 40px;
        }
      
        .date-range-group {
            flex: 2;
            min-width: 300px;
        }
     
        .custom-date-picker {
            position: relative;
            display: inline-block;
            min-width: 120px;
        }

        .date-picker-button {
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 5px 0px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .date-picker-button span:first-child {
            font-size: 16px;
            }

        

        .calendar-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 12px;
            z-index: 100;
            width: 400px;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .calendar-header button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }        

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }

        .calendar-grid div {
            padding: 8px;
            text-align: center;
            cursor: pointer;
            border-radius: 4px;
        }

        .calendar-grid div:hover {
            background: #f0f0f0;
        }

        .calendar-grid .day-selected {
            background: black;
            color: white;
        }

        .calendar-grid .day-disabled {
            color: #ccc;
            cursor: not-allowed;
        }
        .date-input-group {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            gap: 10px;
        }

        .date-input-group .date-input {
            flex: 1;
            padding: 8px 10px;
            border-radius: 0px;
            border: none;
        }

        .date-input-group .divider {
            width: 1px;
            height: 35px;
            background-color: white;
        }
        
        .form-group input, .form-group select {
            border: none;
            outline: none;
            background: transparent;
            color: white;
            padding: 8px 0;
            min-width: 120px;
            border-radius: 0px;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-group select {
            appearance: none;
            background: transparent;
            color: white;
        }

        .date-input {
            width:100px;
            position: relative;
            top:10px;
        }


        
        .date-input input {
            width: 120px;
        }

        .date-label {
            position: absolute;
            top: 2px;
            bottom: 5px;
            left: 0;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.8);
            display: none;
        }
        
        .room-type-dropdown {
            position: relative;
            padding-top: 12.5px;
            padding-bottom: 12.5px;
            flex: 1;
            min-width: 200px;
        }
        #room-type{
            border: none;
            font-size: 14px;
            background: transparent;
            color: white;
            width: 100%;
            padding-left: 8px;
            cursor: pointer;
        }

        #room-type option {
        color: #333;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right:0;
            background-color: white;
            border-radius: 0 0 4px 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 10;
            margin-top: -1px;
        }
        
        .dropdown-content div {
            padding: 10px 15px;
            color: #333;
            cursor: pointer;
            border-bottom: 1px solid #eee;
        }
        
        .dropdown-content div:hover {
            background-color: #f5f5f5;
        }
        
        .dropdown-content div:last-child {
            border-bottom: none;
        }
        
        .show {
            display: block;
        }
        
        .search-btn {
            background-color: white;
            color: rgb(113, 99, 54);
            border: none;
            padding: 20px 40px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
            font-size: 15px;
        }
        
        .search-btn:hover {
            background-color: #ef9e12;
        }
        

        /* Carrusel de noticias*/
        .slider-container {
            position: relative;
            margin: 80px auto;
            max-width: 1200px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .slider {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            display: flex;
            background: white;
        }
        
        .slide-image-idx {
            flex: 1;
            background-size: cover;
            background-position: center;
        }
        
        .slide-info-idx {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .room-type {
            background: var(--primary-color);
            color: white;
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .room-title {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .room-description {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #555;
        }
        
        .feature i {
            color: var(--primary-color);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 1.1rem;
            color: #7f8c8d;
            font-weight: normal;
        }
        
        .btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 1.1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: 500;
            width: fit-content;
        }
        
        .btn:hover {
            background: #2980b9;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--secondary-color);
            z-index: 10;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .slider-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        .indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Servicios idx */
        .services-idx {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .services-grid-idx {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card-idx {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card-idx:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon-idx {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        
        .service-card-idx h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .service-card-idx p {
            color: #555;
        }
        
        /* Contacto */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--secondary-color), #1a2530);
            color: white;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .contact-form h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
        }
        
        .form-group-idx {
            margin-bottom: 25px;
        }
        
        .form-group-idx label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group-idx input,
        .form-group-idx textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
        }
        
        .form-group-idx textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-button {
            width: 100%;
            padding: 15px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-button:hover {
            background: #2980b9;
        }
        
        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--light-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .footer-section p {
            margin-bottom: 15px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
 /* INDEX */

/* HABITACIONES */

        .container header {
    text-align: center;
       }

        .subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Barra de búsqueda */
        .search-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        
        .search-field {
            flex: 1;
            min-width: 200px;
        }
        
        .search-field label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }
        
        .search-field label i {
            color: var(--primary-color);
            margin-right: 8px;
        }
        
        .search-field input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .search-field input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        /* Dropdown */
        .dropdown {
            position: relative;
            flex: 1;
            min-width: 250px;
        }
        
        .dropdown-btn {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background: white;
            text-align: left;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 10;
            display: none;
            margin-top: 5px;
        }
        
        .dropdown-content.show {
            display: block;
        }
        
       .dropdown-option {
            padding: 12px 15px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .dropdown-option:hover {
            background-color: #f8f9fa;
        }
        
        .counter {
            margin-bottom: 20px;
        }
        
        .counter-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark-color);
        }
        
        .counter-controls {
            display: flex;
            align-items: center;
        }
        
        .counter-btn {
            width: 36px;
            height: 36px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.2s;
        }
        
        .counter-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .counter-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .counter-btn:disabled:hover {
            background: white;
            color: inherit;
            border-color: #ddd;
        }
        
        .counter-value {
            margin: 0 15px;
            font-size: 1.2rem;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }
        
        .apply-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .apply-btn:hover {
            background: #2980b9;
        }
        
        /* Resultados */
        .results-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .results-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .results-title {
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        
        .results-count {
            font-size: 1rem;
            color: #7f8c8d;
            background: #f8f9fa;
            padding: 5px 12px;
            border-radius: 20px;
        }
        
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            padding: 25px;
        }
        
        .room-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background: white;
        }
        
        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        
        .room-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .room-status {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--success-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .room-status.unavailable {
            background-color: var(--secondary-color);
        }
        
        .room-status.soon {
            background-color: var(--warning-color);
        }
        
        .room-details {
            padding: 20px;
        }
        
        .room-name {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .room-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .room-price span {
            font-size: 1rem;
            color: #7f8c8d;
            font-weight: normal;
        }
        
        .room-features {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .room-description {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .book-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .book-btn:hover {
            background: #2980b9;
        }
        
        /* Modal */
        .modal-hab {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            display: none;
        }
        
        .modal-hab.show {
            display: flex;
        }
        
        .modal-hab-content {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

       @keyframes modalOpen {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.8rem;
            color: #7f8c8d;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-btn:hover {
            color: var(--accent-color);
        }
        
        .modal-hab-header {
            margin-bottom: 25px;
            text-align: center;
        }
        
        .modal-hab-header h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .modal-hab-header h2 i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .modal-hab-header p {
            color: #7f8c8d;
        }
        
        .reservation-summary {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
        }
        
        .reservation-summary h3 {
            margin-bottom: 15px;
            color: #2c3e50;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .reservation-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .reservation-label {
            font-weight: 500;
            color: var(--dark-color);
        }
        
        .reservation-value {
            color: #7f8c8d;
        }
        
        .form-group-hab {
            margin-bottom: 20px;
        }
        
        .form-group-hab label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }
        
        .form-group-hab label i {
            color: var(--primary-color);
            margin-right: 8px;
            width: 20px;
        }
        
        .form-group-hab input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
        }
        
        .form-group-hab input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background: #2980b9;
        }
        
        .whatsapp-btn-hab {
            background: #25D366;
        }
        
        .whatsapp-btn-hab:hover {
            background: #128C7E;
        }
        
        .confirmation {
            text-align: center;
            padding: 30px;
        }
        
        .confirmation i {
            font-size: 4rem;
            color: var(--success-color);
            margin-bottom: 20px;
        }
        
        .confirmation h2 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .confirmation p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

/* Estados */
        .loading, .error, .no-rooms, .initial-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px 20px;
        }
        
        .spinner {
            border: 4px solid rgba(0,0,0,0.1);
            border-left-color: var(--accent-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .error i, .no-rooms i, .initial-state i {
            font-size: 3rem;
            color: #e74c3c;
            margin-bottom: 15px;
        }

        .initial-state i {
            color: #27ae60;
        }
        .no-rooms i {
            color: #3498db;
        }
        
        .availability-info {
            background-color: #fff8e1;
            color: #f57f17;
            padding: 10px;
            border-radius: 5px;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .availability-info strong {
            color: #e65100;
        }
        
/* HABITACIONES */

/* RESTAURANTE */
/* Estilos generales */
        
        section {
            padding: 80px 0;
        }
        
        .underline{
         text-align: center;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 50px;
            position: relative;
        }
        .underline::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
         
        /* Barra de opciones del restaurante */
        .restaurant-nav {
            background: var(--primary-color);
            padding: 15px 0;
        }
        
        .restaurant-options {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
        }
        
        .restaurant-options li {
            position: relative;
        }
        
        .restaurant-options li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .restaurant-options li a.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Sección de ubicación */
        .location-section {
            background: white;
            padding: 40px 0;
            text-align: center;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        
        .location-section h2 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .location-input {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
        }
        
        .location-input input {
            flex: 1;
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
        }
        
        .location-input button {
            background: var(--success-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
        }
        
        /* Carrusel de categorías */
        .category-container {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .category-container:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .category-description {
            flex: 1;
        }
        
        .category-description h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .category-description p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .category-slider {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .category-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .category-slide {
            min-width: 100%;
            padding: 30px;
            background: white;
            text-align: center;
        }
        
        .slide-image-rest {
            height: 200px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .slide-title-rest {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .slide-description-rest {
            color: #555;
            margin-bottom: 15px;
        }
        
        .slide-price-rest {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .quantity-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        .quantity-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .quantity-btn:not(:disabled):hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .quantity-value {
            font-size: 1.3rem;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }
        
        .add-to-cart {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
        }
        
        .add-to-cart:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        .add-to-cart:not(:disabled):hover {
            background: #2980b9;
        }
        
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            pointer-events: none;
        }
        
        .slider-controls button {
            pointer-events: auto;
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--secondary-color);
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .slider-controls button:hover {
            background: white;
            transform: scale(1.1);
        }
        
        /* Modal de reservas */
        .modal-rest {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
        }
        
        .modal-rest-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            width: 90%;
            max-width: 700px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .close {
            position: absolute;
            right: 20px;
            top: 10px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #aaa;
        }
        
        .close:hover {
            color: #000;
        }
        
        .form-group-rest {
            margin-bottom: 20px;
        }
        
        .form-group-rest label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group-rest input, .form-group-rest select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        button[type="submit"] {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }
        
        button[type="submit"]:hover {
            background-color: #2980b9;
        }
        
        .disponibilidad-info {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-color);
        }
        
        .disponibilidad-info p {
            margin: 5px 0;
            font-size: 0.9rem;
        }
        
        .disponibilidad-info strong {
            color: var(--primary-color);
        }
        
        /* Modal de Pedido */
        .pedido-resumen {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #eee;
        }
        
        .resumen-header {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .resumen-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .resumen-total {
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            font-size: 1.1rem;
            padding-top: 10px;
            margin-top: 10px;
            border-top: 1px solid #ddd;
        }
        
        .opciones-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }
        
        .opciones-group {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
        }
        
        .opciones-group h3 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--secondary-color);
            border-bottom: 1px solid #ddd;
            padding-bottom: 8px;
        }
        
        .opciones-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .opcion-item {
            display: flex;
            align-items: center;
        }
        
        .opcion-item input {
            margin-right: 8px;
        }
        
        .tipo-entrega {
            display: flex;
            gap: 20px;
            margin: 15px 0;
        }
        
        .entrega-option {
            flex: 1;
            text-align: center;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .entrega-option.selected {
            border-color: var(--primary-color);
            background-color: rgba(52, 152, 219, 0.1);
        }
        
        .entrega-option i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .direccion-info {
            background-color: #e8f4ff;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid var(--primary-color);
        }
        
        .direccion-info p {
            margin: 5px 0;
        }
        
        .empty-cart-message {
            text-align: center;
            padding: 30px;
            background-color: #fff8e1;
            border-radius: 8px;
            border-left: 4px solid var(--warning-color);
        }
        
        .empty-cart-message i {
            font-size: 3rem;
            color: var(--warning-color);
            margin-bottom: 15px;
        }
        

/* RESTAURANTE */

/* SERVICIOS */
        /* Carrusel de Eventos */
        .events-section {
            padding: 40px 0;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: white;
        }
        
        .events-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            height: 400px;
            margin: 0 auto;
            max-width: 900px;
        }
        
        .events-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .event-slide {
            min-width: 100%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        .event-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }
        
        .event-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }
        
        .event-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .event-description {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .event-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .event-btn:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            z-index: 3;
            pointer-events: none;
        }
        
        .carousel-controls button {
            pointer-events: auto;
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--secondary-color);
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .carousel-controls button:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        
        .indicator-serv {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator-serv.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }
        
        /* Servicios */
        .services-section {
            background-color: white;
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .service-image {
            height: 220px;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .service-description {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .service-features {
            margin-bottom: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .feature-item i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .btn-reservar {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            display: inline-block;
            text-decoration: none;
            transition: background 0.3s;
            width: 100%;
            text-align: center;
        }
        
        .btn-reservar:hover {
            background-color: #2980b9;
        }
        
        /* Modal de Reserva */
        .modal-serv {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.7);
        }
        
        .modal-serv-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            width: 90%;
            max-width: 600px;
            position: relative;
            animation: modalAppear 0.4s;
        }
        
        @keyframes modalAppear {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        .close {
            position: absolute;
            right: 25px;
            top: 15px;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            color: #aaa;
            transition: color 0.3s;
        }
        
        .close:hover {
            color: var(--accent-color);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary-color);
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        .form-group input:focus, .form-group select:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        button[type="submit"] {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 17px;
            font-weight: 500;
            width: 100%;
            transition: background 0.3s;
            margin-top: 10px;
        }
        
        button[type="submit"]:hover {
            background-color: #2980b9;
        }
        
        /* Modal de Confirmación */
        .confirmation-modal {
            text-align: center;
            padding: 30px;
        }
        
        .confirmation-icon {
            font-size: 70px;
            color: var(--success-color);
            margin-bottom: 20px;
            animation: iconPulse 1s infinite alternate;
        }
        
        @keyframes iconPulse {
            from {transform: scale(1);}
            to {transform: scale(1.1);}
        }
        
        .confirmation-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .confirmation-details {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            text-align: left;
            border-left: 4px solid var(--primary-color);
        }
        
        .confirmation-details p {
            margin: 15px 0;
            font-size: 1.1rem;
        }
        
        .confirmation-code {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-color);
            margin: 20px 0;
            letter-spacing: 3px;
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            display: inline-block;
            border: 2px dashed #ddd;
        }
        
        .payment-info {
            background-color: #fff8e1;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid var(--warning-color);
        }
        
        .payment-info h3 {
            margin-top: 0;
            color: var(--warning-color);
        }
        
        .payment-info ul {
            text-align: left;
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .payment-info ul li {
            margin-bottom: 10px;
        }
        
        .whatsapp-btn-serv {
            display: inline-block;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            padding: 16px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn-serv i {
            margin-right: 10px;
        }
        
        .whatsapp-btn-serv:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
/* SERVICIOS */

/* CONTACTO */
        /* Sección de Contacto */
        .contact-section {
            background-color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .contact-info {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .contact-title {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .contact-icon {
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-text h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: #555;
            line-height: 1.6;
        }
        
        .opening-hours {
            margin-top: 40px;
        }
        
        .hours-title {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .hours-list li span:first-child {
            font-weight: 500;
        }
        
        /* Mapa */
        .map-container {
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Formulario */
        .form-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .form-title {
            text-align: center;
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
        }
        
        .form-group-cont {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-group-cont label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary-color);
        }
        
        .form-group-cont input, 
        .form-group-cont textarea, 
        .form-group-cont select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group-cont input:focus, 
        .form-group-cont textarea:focus, 
        .form-group-cont select:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        .form-group-cont textarea {
            height: 150px;
            resize: vertical;
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            margin: 30px auto 0;
            transition: all 0.3s;
            width: 100%;
            max-width: 300px;
        }
        
        .btn-submit:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-submit i {
            margin-right: 10px;
        }
/* CONTACTO */


 @media (max-width: 900px) {
            .slide {
                flex-direction: column;
            }
            
            .slide-image-idx {
                height: 300px;
            }
            
            .category-container {
                flex-direction: column;
            }
            
            .category-container:nth-child(even) {
                flex-direction: column;
            }
            
            .opciones-container {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 400px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-wrap {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-header ul.main-menu {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-header ul.main-menu li {
                margin: 5px;
            }
            
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .room-title {
                font-size: 1.8rem;
            }
            
            .search-bar {
                flex-direction: column;
            }
            
            .rooms-grid {
                grid-template-columns: 1fr;
            }
            
            .restaurant-options {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .tipo-entrega {
                flex-direction: column;
            }
            
            .event-title {
                font-size: 1.8rem;
            }
            
            .event-description {
                font-size: 1rem;
            }
            
            .events-carousel {
                height: 350px;
            }
            
            .modal-content {
                padding: 20px;
            }
            
            .contact-info {
                padding: 30px;
            }
            
            .form-container {
                padding: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                height: 60vh;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
        }
