/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #e9f0f8;
    color: #2c3e50;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: #2c3e50;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.social-icons a {
    margin-left: 10px;
}

.social-icons img {
    height: 20px;
}


/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    margin-top: 60px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f4a261;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border-radius: 5px;
}

.booking-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.booking-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.booking-form button {
    padding: 10px 20px;
    background-color: #f4a261;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    .booking-form {
        flex-direction: column;
    }
}

/* About Section */
.about {
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #ffffff;
    padding: 20px;
    width: 100px;
    text-align: center;
    border-radius: 5px;
}

.stat-card span {
    font-size: 44px;
    color: #f4a261;
    display: block;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
}

.explore-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f4a261;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .stats {
      flex-wrap: wrap;
        align-items: center;
    }
}

/* Rooms Section */
.rooms {
    padding: 50px 0;
    background-color: #ffffff;
}

.rooms h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.room-card {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
 
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin: 10px 0;
}

.room-card p {
    font-size: 14px;
    color: #f4a261;
    margin-bottom: 10px;
}

.room-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f4a261;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Luxury Living Section */
.luxury {
    position: relative;
    height: 400px;
    margin: 50px 0;
}

.luxury-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.luxury-overlay h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.luxury-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
}

.luxury-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.luxury-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f4a261;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .luxury {
        height: 300px;
    }
    .luxury-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: #ffffff;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
}

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonial Section */
.testimonials {
    padding: 50px 0;
    background-color: #ffffff;
}

.testimonials .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 20px;
    width: 400px;
    border: 1px solid #ddd;
    text-align: center;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

@media (max-width: 768px) {
    .testimonials .container {
        flex-direction: column;
        align-items: center;
    }
}

/* Team Section */
.team {
    padding: 50px 0;
    background-color: #ffffff;
}

.team h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.team-grid {
    display: flex
;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-direction: column;
}
.team-card {
    background-color: #292a31;
    padding: 20px;
    display: flex
;
    gap: 50px;
    text-align: start;

    align-items: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.team-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f4a261;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 50px 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.newsletter h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #f4a261;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-form input {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    max-width: 200px;
}

.footer-contact h3,
.footer-company h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-company ul {
    list-style: none;
}

.footer-company li {
    margin-bottom: 5px;
}

.footer-company a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom p {
    font-size: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-contact,
    .footer-company {
        margin-top: 20px;
    }
}


html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}
.burger {
    display: none;
  }

@media (max-width: 768px) {
    .burger {
        display: block;
        outline: none;
        background-color: transparent;
        font-weight: 700;
        color: #fff;
        font-size: 29px;
        border: none;
    }
  
    .nav {
      position: fixed;
      top: 77px;
      right: -100%;
      height: 100vh;
      width: 60%;
      background-color: #2c3e50;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease;
    }
  
    .nav.active {
      right: 0;
    }
  
    .nav-list {
      flex-direction: column;
      gap: 30px;
    }
    .nav-list a {
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        display: block;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
    }
    .testimonial-card {
        background-color: #ffffff;
        padding: 20px;
        width: 100%;
        border: 1px solid #ddd;
        text-align: center;
    }
    .team-card {
        background-color: #292a31;
        padding: 20px;
        display: flex
    ;
        gap: 50px;
        text-align: start;
        align-items: center;
        flex-direction: column;
    }
    .team-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        text-align: center;
        color: #fff;
        margin-bottom: 10px;
    }
    .footer-brand p {
        font-size: 14px;
        max-width: 100%;
    }
  }