/* Volvé a madera - Warm Rustic Design */

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

:root {
    --wood-brown: #6b3e27;       /* deep wood tone */
    --dark-choco: #3a1e12;       /* darker shadows */
    --amber: #d1a25d;            /* light golden amber */
    --terracotta: #b45a3c;       /* warm reddish clay */
    --light-beige: #f6e7d0;      /* parchment tone */
    --muted-blue: #4b7a8d;       /* from the drum stripes */
    --soft-black: #1b0e08;       /* text or background base */
    --white: #ffffff;

    --text-main: var(--light-beige);
    --text-dark: var(--soft-black);
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-main);
    background: var(--dark-choco);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    background: var(--wood-brown);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--amber);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--amber);
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    transition: 0.3s;
    border-radius: 4px;
}

.nav-links a:hover {
    background: var(--amber);
    color: var(--soft-black);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #532819, #b45a3c);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--amber);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.6);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.4rem;
    color: var(--light-beige);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.btn {
    padding: 0.9rem 1.8rem;
    border: 2px solid var(--amber);
    border-radius: 4px;
    color: var(--amber);
    background: transparent;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--amber);
    color: var(--soft-black);
}

/* About */
.about {
    background: var(--wood-brown);
    color: var(--light-beige);
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--amber);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--muted-blue);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--amber);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border: 6px solid var(--muted-blue);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Gallery */
.gallery {
    background: var(--dark-choco);
    padding: 6rem 0;
    color: var(--text-main);
}

.slide {
    background: var(--wood-brown);
    border: 4px solid var(--amber);
    border-radius: 10px;
    padding: 3rem;
    margin: 1rem;
    text-align: center;
    color: var(--light-beige);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Contact */
.contact {
    background: var(--muted-blue);
    color: var(--light-beige);
    padding: 6rem 0;
}

.contact-item {
    background: rgba(0,0,0,0.2);
    border-left: 4px solid var(--amber);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}
.contact-item:hover {
    background: rgba(255, 162, 0, 0.3); /* semi-transparent amber */
    cursor: pointer; /* optional for visual feedback */
    transform: translateY(-3px);
    transition: all 0.3s ease;
}


/* repeat for all slides */

.contact-form {
    background: rgba(0,0,0,0.25);
    padding: 2rem;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: var(--dark-choco);
    text-align: center;
    padding: 2rem 1rem;
    color: var(--light-beige);
    font-size: 0.9rem;
}

.footer a {
    color: var(--amber);
    margin: 0 0.5rem;
}

.footer a:hover {
    color: var(--muted-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}
