/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4; /* Light pastel beige */
    color: #5a5a5a; /* Soft grey */
}
  
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #80e0a7; /* Pastel green */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}
  
header .logo img {
    height: 50px;
}
  
header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}
  
header nav a:hover {
    color: #f0d1b1; /* Pastel beige */
}
  
/* Hero Section */
.hero {
    height: 100vh;
    background: url('fotos/navidadper.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
  
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
  
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
  
.hero .btn {
    background: #f0d1b1; /* Pastel beige */
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
  
.hero .btn:hover {
    background: #e0b089; /* Slightly darker pastel beige */
}
  
/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}
  
.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #5a5a5a; /* Soft grey */
}
  
.service-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
  
.service-item {
    background: #e0f0d1; /* Soft pastel green */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 250px;
}
  
.service-item img {
    max-width: 100%;
    border-radius: 10px;
}
  
.service-item h3 {
    margin: 15px 0;
    color: #5a5a5a; /* Soft grey */
}
  
/* Gallery Section */
.gallery {
    padding: 50px 20px;
    text-align: center;
}
  
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
  
.gallery-grid img {
    width: 100%;
    border-radius: 10px;
}
  
/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4; /* Light pastel beige */
}
  
.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}
  
.contact input, .contact textarea, .contact button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
  
.contact button {
    background: #a1d8b1; /* Pastel green */
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
  
.contact button:hover {
    background: #8ec08d; /* Slightly darker pastel green */
}
  
/* Footer */
footer {
    background: #c4c4c4; /* Soft pastel brown */
    color: white;
    text-align: center;
    padding: 10px 0;
}
