<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Delicias de Crepas</title>
    <link rel="stylesheet" href="estilos.css">
</head>
<body>

    <!-- Encabezado / Menú -->
    <header>
        <div class="logo">
            <h1>Crepas Express</h1>
        </div>
        <nav>
            <a href="#inicio">Inicio</a>
            <a href="#menu">Menú</a>
            <a href="#contacto">Contacto</a>
        </nav>
    </header>

    <!-- Banner Principal -->
    <section id="inicio" class="hero">
        <h2>Las mejores crepas, hechas a tu gusto</h2>
        <p>Dulces, saladas y con los ingredientes más frescos.</p>
        <a href="#menu" class="btn">Ver Menú</a>
    </section>

    <!-- Sección de Menú -->
    <section id="menu" class="menu-section">
        <h2>Nuestro Menú</h2>
        <div class="contenedor-crepas">
            <!-- Crepa 1 -->
            <div class="crepa-tarjeta">
                <img src="imagenes/crepa_nutella.jpg" alt="Crepa de Nutella">
                <h3>Crepa de Nutella y Fresa</h3>
                <p>Deliciosa crepa rellena de Nutella con fresas frescas y azúcar glass.</p>
                <span class="precio">Q25.00</span>
            </div>
            <!-- Crepa 2 -->
            <div class="crepa-tarjeta">
                <img src="imagenes/crepa_jamon.jpg" alt="Crepa de Jamón y Queso">
                <h3>Crepa de Jamón y Queso</h3>
                <p>Una opción salada con jamón premium, queso derretido y un toque de mantequilla.</p>
                <span class="precio">Q30.00</span>
            </div>
        </div>
    </section>

    <!-- Pie de página / Contacto -->
    <footer id="contacto">
        <p>¡Haz tu pedido!</p>
        <p>Teléfono: 5555-5555 | Ubicación: Guatemala</p>
        <p>&copy; 2026 Crepas Express. Todos los derechos reservados.</p>
    </footer>

</body>
/* Estilos Generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

/* Encabezado */
header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    color: #d63031;
}

nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #d63031;
}

/* Banner Principal */
.hero {
    background-color: #ffeaa7; /* Color cálido de fondo */
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #d63031;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #b2bec3;
}

/* Menú */
.menu-section {
    padding: 50px 5%;
    text-align: center;
}

.contenedor-crepas {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.crepa-tarjeta {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
}

.crepa-tarjeta img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.crepa-tarjeta h3 {
    margin: 15px 0 10px 0;
}

.crepa-tarjeta p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.precio {
    display: block;
    font-size: 1.2rem;
    color: #d63031;
    font-weight: bold;
    margin-top: 15px;
}

/* Pie de página */
footer {
    background-color: #2d3436;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}
</html>
/* Sección de Pedido */
.pedido-section {
    background-color: #f9f9f9;
    padding: 60px 5%;
    text-align: center;
}

.pedido-section h2 {
    margin-bottom: 10px;
}

.form-pedido {
    max-width: 500px;
    margin: 30px auto 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.grupo-form {
    margin-bottom: 20px;
}

.grupo-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #444;
}

.grupo-form input[type="text"],
.grupo-form input[type="number"],
.grupo-form select,
.grupo-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

.grupo-form textarea {
    resize: vertical;
}

.btn-enviar {
    width: 100%;
    background-color: #25D366; /* Color verde oficial de WhatsApp */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-enviar:hover {
    background-color: #128C7E;
}