/* 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;
}

/* Hero Section */
.hero-section {
    margin-top: 60px;
    height: calc(100vh - 60px);
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1 ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.cta-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 600px;
}

.cta-button {
    padding: 30px 40px;
    border-radius: 20px;
    background: none;
    border: none;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    color: #f1f1f1;
    box-shadow: inset 15px 15px 20px rgba(214, 211, 231, 0.1),
    inset -5px -5px 10px rgba(222, 222, 222, 0.5),
    10px 15px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button::before {
    content: "";
    position: absolute;
    inset: 10px;
    box-shadow: inset 10px 10px 10px #fff;
    border-radius: 20px;
    filter: blur(20px);
}

.cta-button:hover {
    transform: translateY(-20px);
}
/**
.cta-button {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    font-size: 1.1rem;
    font-family: 'Montserrat', 'Roboto', 'sans-serif';
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.5s ease, background 0.5s ease;
}

.cta-button:hover {
    background: #e67e22;
    color: #fff;
    transform: scale(1.05);
}
    **/

/* About Section Styles */
.about-section {
    background: #fff;
}

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

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

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

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

/* Rooms Link */
.rooms {
    display: flex;
    flex-direction: column;
}

.rooms-img {
    width: 100%;
    height: auto;
}

.rooms-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 1.5rem;
}

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

.rooms-description {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.rooms-link {
    text-decoration: underline ;
    cursor: pointer;
    color: #000;
}

.rooms-link i {
    margin-left: 1rem;
    display: inline-block;
    transition: transform 0.5s ease;
    margin-bottom: 1rem;
}

.rooms-link:hover i {
    transform: translateX(8px);
}

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

.image-card {
    background: white;
    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;
}

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

.card-content {
    padding: 1.5rem;
    background: #fff;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.card-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.card-link i {
    margin-left: 1rem;
    display: inline-block;
    transition: transform 0.5s ease;
    margin-bottom: 1rem;
}

.card-link:hover i {
    transform: translateX(8px);
}

/* Features Section Styles */
.features-section {
    position: relative;
    width: 100%;
    padding: 4rem 1.5rem;
    isolation: isolate;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card-content {
    padding: 1.5rem;
    text-align: center;
}

.feature-card-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.feature-card-link:hover::after {
    transform: scaleX(1);
}

.feature-card-link i {
    margin-left: 1rem;
    display: inline-block;
    transition: transform 0.5s ease;
    margin-bottom: 1rem;
}

.feature-card-link:hover i {
    transform: translateX(8px);
}

/* 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%;
    }

    .cta-text {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }

    .rooms {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-around;
    }

    .rooms-img {
        width: 55%;
        align-items: flex-start;
    }

    /* Card Styles */
    .card-image {
        height: auto;
    }

    .card-content {
        padding: 2rem;
    }

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

    /* Features Section Styles */
    .features-content {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }

    .feature-card {
        width: 400px;
    }

    .feature-image {
        height: 250px;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .features-background {
        opacity: 1;
    }

    /* 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;
    }
}
