/* Hotels Listing Styles */
.hotels-listing {
    padding: 80px 0;
    background: #f8f9fa;
}

.listing-header {
    text-align: center;
    margin-bottom: 60px;
}

.listing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.listing-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hotel-listing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hotel-listing-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.hotel-listing-card:hover .hotel-listing-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #B8537A;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hotel-listing-content {
    padding: 25px;
}

.hotel-listing-content .rating {
    background: #4CAF50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hotel-listing-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hotel-listing-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.amenities-list span {
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.book-btn {
    width: 100%;
    background: #B8537A;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #A04668;
}

/* Terms Page Styles */
.terms-content {
    padding: 80px 0;
    background: white;
}

.terms-text {
    max-width: 800px;
    margin: 0 auto;
}

.terms-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.terms-item:last-child {
    border-bottom: none;
}

.terms-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.terms-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.terms-item ul {
    margin-left: 20px;
    color: #666;
    line-height: 1.7;
}

.terms-item li {
    margin-bottom: 8px;
}

/* Privacy Policy Styles */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.cookie-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.cookie-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-accept {
    background: #B8537A;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: #A04668;
}

.btn-reject {
    background: transparent;
    color: #666;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-reject:hover {
    color: #333;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999;
    padding: 15px 0;
    backdrop-filter: blur(4px);
}

.header-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    text-decoration: unset;
}

.logo img {
    width: 30px;
    height: 30px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.nav a:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding-top: 80px;
    height: max-content;
    padding-bottom: 40px;
    
border-bottom-right-radius: 60px;
border-bottom-left-radius: 60px;

}

.hero-content {
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content > p:first-of-type {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Search Form */
.search-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    color: #333;
    max-width: 600px;
    margin-top: 40px;
    border: 1px solid rgba(219, 219, 219, 1);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

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

.search-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.search-header p {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-header img {
    height: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #B8537A;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.search-btn {
    width: 100%;
    background: #B8537A;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #A04668;
}

/* Hotels Section */
.hotels-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.hotel-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.hotel-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.hotel-card.reverse .hotel-info {
    order: 2;
}

.hotel-card.reverse .hotel-image {
    order: 1;
}

.rating {
    background: #4CAF50;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hotel-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.hotel-info > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.amenities h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.check {
    color: #4CAF50;
    font-weight: bold;
}

.order-btn {
    background: #B8537A;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
    text-decoration: unset;
}

.order-btn:hover {
    background: #A04668;
}

.hotel-image {
    
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Categories Section */
.categories {
    padding: 60px 0;
    background: white;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    background: #B8537A;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s;
}

.category-btn:hover {
    background: #A04668;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: #B8537A;
    color: white;
}

.experience h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.experience > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
    opacity: 0.95;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    width: 60px;
    height: 60px;
}

.experience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.experience-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Cultural Icons Section */
.cultural-icons {
    padding: 80px 0;
    background: white;
}

.cultural-icons h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.cultural-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cultural-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    box-shadow: 2px 2px 0px 0px rgba(88, 88, 88, 1);
border: 1px solid rgba(88, 88, 88, 1);
padding: 24px;
border-radius: 20px;
}

.cultural-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.cultural-card.reverse .cultural-content {
    order: 1;
}

.cultural-card.reverse .cultural-image {
    order: 2;
}

.cultural-image {
    
    overflow: hidden;
}

.cultural-image img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
}

.cultural-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.cultural-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cultural-btn {
    background: #B8537A;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cultural-btn:hover {
    background: #A04668;
}

/* Gastronomic Section */
.gastronomic {
    padding: 80px 0;
    background: #f8f9fa;
}

.gastronomic h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.gastronomic-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gastronomic-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.gastronomic-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.gastronomic-card.reverse .gastronomic-content {
    order: 1;
}

.gastronomic-card.reverse .gastronomic-image {
    order: 2;
}

.gastronomic-image {
    
    overflow: hidden;
}

.gastronomic-image img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
}

.gastronomic-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.gastronomic-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.gastronomic-btn {
    background: #B8537A;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: unset;
}

.gastronomic-btn:hover {
    background: #A04668;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-contact p a {
  color: inherit;
  text-decoration: unset;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-overlay.show {
    display: flex;
}

.popup {
    background: #B8537A;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
    max-width: 500px;
    width: 90%;
}

.popup-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
}

.popup-logo img {
    width: 30px;
    height: 30px;
}

.popup h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.popup-btn {
    background: white;
    color: #B8537A;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.popup-btn:hover {
    background: #f0f0f0;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/page-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.feature {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #B8537A;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #B8537A;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: #B8537A;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #A04668;
}

/* Privacy Policy Styles */
.privacy-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/privacy-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.privacy-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.privacy-content {
    padding: 80px 0;
    background: white;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.privacy-item:last-child {
    border-bottom: none;
}

.privacy-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.privacy-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
        transition: left 0.3s ease;
        z-index: 998;
        gap: 0;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        margin: 15px 0;
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
        padding: 15px;
    }
    
    .burger-menu {
        display: flex;
    }

    .header-content {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content > p:first-of-type {
        font-size: 1.2rem;
    }
    
    .hotel-card,
    .cultural-card,
    .gastronomic-card {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .hotel-card.reverse .hotel-info,
    .cultural-card.reverse .cultural-content,
    .gastronomic-card.reverse .gastronomic-content {
        order: 1;
    }
    
    .hotel-card.reverse .hotel-image,
    .cultural-card.reverse .cultural-image,
    .gastronomic-card.reverse .gastronomic-image {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience h2,
    .cultural-icons h2,
    .gastronomic h2 {
        font-size: 2rem;
    }
    
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2rem;
        word-break: break-word;
    }
    
    .search-form {
        padding: 20px;
    }
    
    .hotel-card,
    .cultural-card,
    .gastronomic-card {
        padding: 20px;
    }
    
    .experience,
    .cultural-icons,
    .gastronomic {
        padding: 60px 0;
    }
    
    .popup {
        padding: 40px 20px;
    }
    
    .popup h2 {
        font-size: 1.5rem;
    }
}