/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

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

.section-title {
    font-size: 2.5rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.button.primary {
    background-color: #800080; /* Morado elegante */
    color: white;
}

.button.primary:hover {
    background-color: #660066;
}

.button.secondary {
    background-color: #f0f0f0;
    color: #555;
    border: 1px solid #ccc;
}

.button.secondary:hover {
    background-color: #e0e0e0;
    color: #333;
    border-color: #b3b3b3;
}

/* Header */
header {
    background-color: #fff;
    color: #333;
    padding: 1.5rem 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px; /* Ajusta el tamaño del logo */
}

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

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #800080;
}

/* Hero Section */
.hero {
    background-image: url('placeholder-hero.jpg'); /* Reemplaza con una imagen elegante */
    background-size: cover;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Overlay oscuro para mejor contraste del texto */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Featured Destinations */
.featured-destinations {
    padding: 60px 20px;
    text-align: center;
}

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

.destination-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    display: block;
    height: 250px; /* Altura fija para mantener la uniformidad */
    object-fit: cover;
}

.card-content {
    padding: 25px;
    text-align: left;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 5px;
}

.card-content .sub-title {
    color: #777;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.destination-card .button {
    margin-top: 15px;
    display: inline-block;
}

/* About Us & Contact */
.about-us, .contact {
    padding: 60px 20px;
    text-align: center;
}

.section-bg {
    background-color: #f9f9f9;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
}

/* Placeholders para imágenes - ¡Recuerda reemplazarlas! */
/* Puedes buscar imágenes de alta calidad y colocarlas en la misma carpeta con estos nombres */
/* placeholder-hero.jpg */
/* placeholder-mexico.jpg */
/* placeholder-latam.jpg */
/* placeholder-usa.jpg */
/* placeholder-canada.jpg */
/* placeholder-europa.jpg */
