/* Variables */
:root {
    --primary: #2c6e49;
    --secondary: #4c956c;
    --accent: #f8961e;
    --light: #f9f7f3;
    --dark: #2d3a3a;
    --text: #333333;
    --sand: #f4e8c1;
    --ocean: #2a9d8f;
}

.hero-gastronomia {
    margin-top: 80px; /* ajusta el valor según necesites */
    text-align: center; /* mantiene centrado el texto */
}

.hero-gastronomia h1 {
    margin-bottom: 10px; /* espacio entre el título y el párrafo */
}

.hero-gastronomia p {
    margin-bottom: 20px; /* espacio entre el párrafo y el siguiente elemento */
}

/* aqui terminanos */

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .nav li {
    width: 100%;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  .nav a {
    display: block;
    padding: 15px;
    width: 100%;
    font-size: 1.2rem;
    color: var(--primary);
  }

  .nav-toggle-label {
    display: block;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav {
    display: flex;
  }
}



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

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

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

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

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('img/hero-guanaqueros.JPG') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    background-color: #e07e0d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

/* Search Form */
.search-form {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    max-width: 900px;
    margin: 50px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.search-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.form-group input, .form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

.search-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #1d5036;
}

/* Highlights Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.section-title p {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
}

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

.highlight-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.card-content p {
    margin-bottom: 20px;
    color: #666;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Activities Section */
.activities {
    background-color: #f8f9fa;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn.active, .tab-btn:hover {
    color: var(--primary);
    border-bottom: 3px solid var(--accent);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.activity-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.activity-content .rating {
    color: var(--accent);
    margin-bottom: 10px;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e07e0d;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

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

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

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero h2 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .btn-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        margin: 0;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input, 
    .newsletter-form button {
        border-radius: 50px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* gastronomia*/
/* Tipografía base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: white;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.verde {
  color: #166534; /* Verde oscuro */
}

.naranjo {
  color: #f97316; /* Naranjo */
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav .activo {
  color: #f97316;
}

/* Título principal */
.hero-gastronomia {
  text-align: center;
  padding: 60px 20px 40px;
}

.hero-gastronomia h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-gastronomia p {
  font-size: 18px;
  color: #555;
}

/* Grilla */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
}

.cuadro {
  background-color: #ccc;
  height: 180px;
  border-radius: 8px;
}
/* gastronomia */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }

        .header {
            background: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c5530;
        }

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

        .nav-menu a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: #2c5530;
        }

        .hero-section {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .awards-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

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

        .award-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .award-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .award-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .award-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 2rem 1.5rem 1rem;
            color: white;
        }

        .restaurant-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .award-info {
            padding: 1.5rem;
            text-align: center;
        }

        .award-title {
            color: #2c5530;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .award-year {
            color: #666;
            font-size: 0.9rem;
        }

        /* Estilos específicos para cada restaurante */
        .maido {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23e8d5ff" width="400" height="300"/><circle cx="200" cy="150" r="60" fill="%23fff" opacity="0.3"/><rect x="170" y="120" width="60" height="60" rx="30" fill="%23ff6b6b"/><text x="200" y="200" text-anchor="middle" fill="%23333" font-family="Arial" font-size="14">Cocina Nikkei</text></svg>');
        }

        .mindy {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23f0f8ff" width="400" height="300"/><rect x="50" y="50" width="300" height="200" fill="%23fff" opacity="0.9" rx="10"/><rect x="100" y="100" width="200" height="100" fill="%234a90e2" opacity="0.3" rx="5"/><text x="200" y="200" text-anchor="middle" fill="%23333" font-family="Arial" font-size="14">Cocina Moderna</text></svg>');
        }

        .khufu {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23f4e4a6" width="400" height="300"/><polygon points="200,50 150,200 250,200" fill="%23d4af37" opacity="0.7"/><rect x="50" y="220" width="300" height="30" fill="%238b4513" opacity="0.6"/><text x="200" y="270" text-anchor="middle" fill="%23333" font-family="Arial" font-size="14">Vista a las Pirámides</text></svg>');
        }

        .wing {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23d8f5d8" width="400" height="300"/><rect x="100" y="100" width="200" height="100" fill="%23fff" rx="50"/><circle cx="200" cy="150" r="30" fill="%232c5530" opacity="0.3"/><text x="200" y="250" text-anchor="middle" fill="%23333" font-family="Arial" font-size="14">Cocina de Autor</text></svg>');
        }

        .pichaya {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23f5f5f5" width="400" height="300"/><rect x="150" y="100" width="100" height="100" fill="%23333" opacity="0.1" rx="10"/><circle cx="200" cy="150" r="40" fill="%23ff69b4" opacity="0.2"/><text x="200" y="250" text-anchor="middle" fill="%23333" font-family="Arial" font-size="14">Alta Cocina Tailandesa</text></svg>');
        }

        .albert {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%238b0000" width="400" height="300"/><rect x="100" y="100" width="200" height="100" fill="%23fff" opacity="0.2" rx="5"/><rect x="180" y="80" width="40" height="140" fill="%23fff" opacity="0.3"/><text x="200" y="250" text-anchor="middle" fill="%23fff" font-family="Arial" font-size="14">Cocina Mediterránea</text></svg>');
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #2c5530;
            font-size: 2.5rem;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .awards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
            
            .awards-section {
                padding: 2rem 1rem;
            }
        }
