/* montserrat-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/montserrat-v29-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v29-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v47-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v47-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/roboto-v47-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Mobile-First Approach */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    font-family: 'Montserrat', 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4 { 
    font-weight: 800;
    color: #000;
}

p {
    color: #000;
}

/* Navigation Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    padding: 1rem;
    font-family: 'Montserrat', 'Roboto', 'sans-serif';
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e67e22
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Intro Section Styles */
.text-content {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.intro-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Gallery */
.image-holder {
    background: #fff;
    overflow: hidden;
    padding: 0 2rem;
    text-align: center;
}

.image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Card Styles */
.city-cards {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.image-card {
    background: #f1f1f1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-holder {
    background: #f1f1f1;
    text-align: left;
}

.offer-type {
    font-size: 1.5rem;
}

.card-line {
    margin: 1rem 0;
    border: 1px solid #e67e22;
    width: 60px;
}

.card-description {
    margin-bottom: 1rem;
    line-height: 1.6;
} 

/* Footer Menu Styles */
.footer-section {
    position: relative;
    width: 100%;
    padding: 4rem 1.5rem;
    color: #fff;
    background-image: url(/imagens/ent-5.jpg);
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color:#e67e22;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info p {
    color: #fff;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color:#e67e22;
}

.google-map {
    border-radius: 8px;
    box-shadow: 0 4px 12px (0,0,0,0.2);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer a {
    text-decoration: none;
    color: grey;
}

footer p {
    color: #fff;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        height: fit-content;
    }

    .nav-container {
        padding: 1rem 5%;
    }

    /* Card Styles */
    .image-card {
        display: flex;
        flex-direction: row;
    }

    .content-holder,
    .image-div {
        width: 50%;
    }

    .sin {
        flex-direction: row-reverse;
    }

    .content-holder {
        display: flex;
        flex-direction: column;
        padding: 0.5rem 1rem 0.5rem 1rem;
    }

    .card-action {
        margin-top: auto;
        justify-content: start;
    }

    .image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    /* Footer Section Styles */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        text-align: left;
    }

    .footer-nav,
    .contact-info {
        flex: 1;
        max-width: 300px;
    }

    .footer-section {
        background-attachment: fixed;
    }
}
