/* Diseño ultra moderno y atractivo para Bodegas Pavoni */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-color: #3E2723;
    --secondary-color: #D4A373;
    --accent-color: #F1E3D3;
    --dark-color: #1E1B18;
    --light-color: #FAF8F6;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--light-color);
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1400px;
    margin: auto;
    padding: 20px;
}

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 70px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* HERO SECTION */
#hero {
    background: url('fotos_arsys/bodega.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 220px 0;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

#hero h2 {
    font-size: 3.8em;
    font-family: var(--font-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* BOTONES MEJORADOS */
.btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--dark-color);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
    background: var(--primary-color);
    text-align: center;
    padding: 40px 0;
    color: var(--accent-color);
    font-size: 1.1em;
    margin-top: 50px;
}
