/* -------------------------------- */
/* IMPORT GOOGLE FONTS */
/* -------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@400;700&family=Open+Sans:wght@400&family=Glacial+Indifference:wght@400&family=London:wght@400&family=Roboto:wght@100;300;400&family=Cormorant+Garamond:wght@400;700&family=Dancing+Script:wght@400;700&display=swap');

/* -------------------------------- */
/* IMPORT CUSTOM FONTS */
/* -------------------------------- */
@font-face {
    font-family: 'TT Drugs';
    src: url('/path/to/fonts/TTDrugs-Regular.woff2') format('woff2'),
         url('/path/to/fonts/TTDrugs-Regular.woff') format('woff'),
         url('/path/to/fonts/TTDrugs-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html, body {
    height: 100%;
    background-color: #FCF8F0; /* Fondo color beige */
}

/* -------------------------------- */
/* HEADER CONTENT STYLES */
/* -------------------------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 10px 20px;
    height: 60px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo-link {
    display: inline-block;
    position: relative;
    width: 130px;
    height: auto;
    text-decoration: none;
}

header .logo {
    max-width: 130px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: -35px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: #5A4634;
    margin: 4px 0;
}

/* -------------------------------- */
/* NAVIGATION STYLES */
/* -------------------------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(249, 245, 242, 0.95);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 70px;
    transition: transform 0.3s ease;
    transform: translateY(-100%);
    overflow-y: auto;
}

.menu-hidden {
    transform: translateY(-100%);
}

.showing {
    transform: translateY(0);
}

nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 15px 0;
}

nav ul li a {
    font-size: 1.2em;
    color: #5A4634;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

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

@media (min-width: 1200px) {
    nav ul li a {
        font-size: 1em;
    }
}

/* -------------------------------- */
/* FOOTER STYLES */
/* -------------------------------- */
footer {
    background: #D8B4A0; /* Color rosado claro */
    color: #5A4634;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

.footer-text {
    text-align: center;
    margin-top: 0px;
    padding: 5px 0;
    background-color: #FCF8F0;
}

.footer-text h2 {
    font-family: 'London', serif;
    font-size: 1.5em;
    color: #554321;
}

/* -------------------------------- */
/* GENERAL CONTENT STYLES */
/* -------------------------------- */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    flex-direction: row;
    position: relative;
}

.additional-text {
    max-width: 50%;
    width: 50%;
    padding: 20px;
    background-color: transparent;
    color: #333;
    font-family: 'Century Gothic', sans-serif;
    font-size: 1em;
    text-align: center;
    box-sizing: border-box;
}

.image-container {
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* -------------------------------- */
/* MEDIA QUERIES */
/* -------------------------------- */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: center;
    }

    .additional-text {
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .content-container {
        flex-direction: row;
    }

    .additional-text {
        max-width: 50%;
    }

    .image-container {
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .content-container {
        flex-direction: row;
    }

    .additional-text {
        max-width: 50%;
    }

    .image-container {
        max-width: 50%;
    }
}

/* -------------------------------- */
/* GALLERY SECTION STYLES */
/* -------------------------------- */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.gallery img {
    width: 18%;
    border-radius: 10px;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* -------------------------------- */
/* CONTAINER STYLES */
/* -------------------------------- */
.container {
    flex: 1;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0px;
    margin-top: 0px;
}

/* -------------------------------- */
/* SHOWCASE STYLES */
/* -------------------------------- */
.showcase {
    background: url('../static/showcase.jpg') no-repeat center center/cover;
    color: #5A4634;
    height: 250px;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 20px;
}

.showcase h1 {
    font-size: 2em;
}

.showcase.global-p-adjustment p {
    font-size: 0.9em;
}

/* -------------------------------- */
/* SECTION STYLES */
/* -------------------------------- */
section {
    padding: 20px 0;
    background: #FCF8F0;
    margin: 20px 0;
}
