@font-face {
    font-family: Ivymode;
    src: url("./fonts/IvyMode-Regular.ttf");
}

@font-face {
    font-family: CentraNo;
    src: url("./fonts/CentraNo1-Light-BF646c269058ce4.ttf");
}

:root {
    --primary-font: "Ivymode";
    --secondary-font: "CentraNo";
}

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

a {
    font-family: var(--secondary-font);
}

section {
    height: 100vh;
}

.home-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 150px;
    display: flex;
    flex-direction: column;
}

    h2 {
        font-family: var(--primary-font);
        font-size: 3rem;
        font-weight: 300;
    }

    h1 {
        font-size: 6rem;
        font-weight: 300;
        color: #fff;
        font-family: var(--primary-font);
    }

    p {
        font-size: 1.2rem;
        font-family: var(--secondary-font);
        color: #fff;
    }

a {
    text-decoration: none;
    transition: 0.3s ease-in;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: var(--secondary-font);
}


/* HAMBURGER (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger img {
    width: 100%;
    height:2rem;
    border-radius: 3px;
    transition: 0.3s;
}

/* MOBILE MENU */
.mob-nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 70vh;
    background: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 22px;
    transition: 0.4s ease;
    box-shadow: -3px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.mob-nav-links a {
    text-decoration: none;
    font-size: 20px;
    font-family: var(--secondary-font);
    text-transform: uppercase;
    color: #222;
    font-weight: 500;
}

.mob-book-btn {
    border: 1px solid #c49b63;
    color: #fff;
    padding: 10px 16px;
    margin-top: 10px;
}

/* Close button (mobile) */
.close-btn {
    font-size: 38px;
    background: none;
    border: none;
    padding-bottom: 20px;
    cursor: pointer;
    line-height: 20px;
}

.close-btn img {
    width: 30px;
}


.logo {
    width: 100px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    font-size: 20px;

}

.nav-links a {
    color: #fff;
    transition: 0.3s ease-in;
}

.nav-links a:hover {
    color: #794927;
    border-bottom:1px solid #794927;
}

.nav-links a.active {
        color: #794927;
    border-bottom:1px solid #794927;
}

.book-now-btn {
    border: 1px solid #fff;
    padding: 1rem 2rem;
    transition: 0.3s ease-in;
}

.book-now-btn a {
    color: #fff;
}

.book-now-btn:hover {
    border: 1px solid #391f0f;
    background-color: #fbf9ef;
}

.book-now-btn a:hover {
    color:#391f0f;
}

.hero-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}


.welcome-section {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem ;
    gap: 2rem;
    background-color: #fbf9ef;
}

    .welcome-section p {
        width: 80%;
        color: #000;
    }

    .welcome-img-container {
        display: flex;
        flex-direction: row;
        gap: 6rem;
        justify-content: center;
        width: 100%;
    }

    .leaf-overlay-1 {
        width: 600px;
        position: absolute;
        left: -5%;
        bottom: -20%;
        z-index: 1;
    }

    .leaf-overlay-2 {
        position: absolute;
        right: -5%;
        top: -10%;
        transform: rotate(-180deg);
    }

    .img-1 {
        z-index: 2;
        width: 350px;
        height: 350px;
    }

    .img-2 {
        width: 200px;
        height: 200px;
    }


.show-reel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-reel h2 {
    color: #fff;
}


.rooms-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 150px;
    background-color: #fbf9ef;

}

.rooms-section a {
    color: #000;
    transition: .3s ease-in;
}

.rooms-section a:hover {
    filter:saturate(20%);
}

    .rooms-section p {
        font-size: 16px;
        color:#b1782e;
        text-transform: uppercase;
        font-weight: 600;
        font-family: var(--secondary-font);
    }

    .rooms-section h3 {
        font-size: 52px;
        font-family: var(--primary-font);
        font-weight: 300;
        padding-bottom: 2rem;
    }

    .slider-wrapper {
        max-width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        }

.rooms-container {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    scroll-behavior: smooth;
    justify-content: space-between;
    gap: 3rem;
    height: fit-content;
}

.slider-controls {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b1782e;
    border-radius: 50%;
}

.slider-btn img {
    width: 30px;
    height: 30px;
}

.room {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: calc(33.333% - 2rem);

}
.room p {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--secondary-font);
    color: #dbc56d;
}

.room-description {

    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #391f0f;
    justify-content: space-between;
}


    .room-description h4 {
        font-size: 24px;
        font-weight: 400;
        font-family: var(--primary-font);
    }

    .room-description p {
        font-size: 22px;
        font-weight: 400;
        color: #b1782e;
    }

    .room-description span {
        font-size: 16px;
        text-transform: none;
        color: #000;
    }


.room-occupancy {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.room-occupancy p img {
    width: 30px;
    height: 25px;
}

.room-occupancy p {
    font-size: 16px;
    font-weight: 500;
    color: #b1782e;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.room-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

  .bg-overlay-img {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

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

  /* --- Slides --- */
  .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }

  /* --- Overlay title --- */
  .slider h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 1px;
    z-index: 2;
    font-family: var(--primary-font);
  }

  /* --- Arrows --- */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2rem;
    z-index: 3;
    border-radius: 50%;
    transition: background 0.3s ease;

    img {
        width: 50px;
        height: 50px;
    }
  }

  .arrow.left {
    left: 30px;
  }

  .arrow.right {
    right: 30px;
  }

  /* --- Responsive text --- */
  @media (max-width: 768px) {
    .slider h1 {
      font-size: 2rem;
    }
  }

.restraunt {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 3rem;
    padding: 150px;
    background-color: #fff;
}

.branch-img-1 {
    position: absolute;
    bottom: -30%;
    left: 0;
    width: 800px;
    z-index: 1;
    transform: rotate(35deg);
}

.left-div {
    display: flex;
    flex: 1;
    z-index: 2;
    flex-direction: column;
    gap: 1rem;

}


    .left-div p {
        font-size: 16px;
        font-family: var(--secondary-font);
        font-weight: 600;
        text-transform: uppercase;
        color: #b1782e;
    }

    .left-div h3 {
        font-size: 42px;
        font-family: var(--primary-font);
        font-weight: 300;
    }

    .left-div span {
        font-size: 20px;
        width: 90%;
        font-family: var(--secondary-font);
        font-weight: 400;
    }


.learn-more-btn {
    width: fit-content;
    border: 1px solid #b1782e;
    padding: 1rem 2rem;
    transition: 0.3s ease-in;
}

.learn-more-btn a {
    color: #b1782e;
}

.learn-more-btn:hover {
    border: 1px solid #391f0f;
    background-color: #fbf9ef;
}

.learn-more-btn a:hover {
    color:#391f0f;
}

.right-div {
    position: relative;
    flex: 1;
    z-index: 2;
}
    .restraunt-img1 {
        position: absolute;
        right: 10%;
        width: 450px;
        height: 450px;
    }

    .restraunt-img2 {
        position: absolute;
        width: 400px;
        bottom: -15%;
        left: -30%;
        height: 300px;
    }


.experiences-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 150px;
    gap: 3rem;
    background-color: #fff;
    align-items: center;
}

.experience-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: fit-content;
}

    .experience-header p {
        font-size: 16px;
        text-transform: uppercase;
        color: #b1782e;
        font-family: var(--secondary-font);
        font-weight: 600;
    }

    .experience-header h3 {
        font-family: var(--primary-font);
        font-weight: 300;
        font-size: 42px;
    }

    .experience-header span {
        width: 60%;
        text-align: center;
        font-size: 20px;
        font-family: var(--secondary-font);
    }

      
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .blog-card {
            background: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .blog-card:hover {
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            border-color: #e0e0e0;
        }
        
        .blog-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0052cc;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
        }

        .blog-image img {
            height: 100%;
            width: 100%;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-badge {
            font-family: var(--secondary-font);
            display: inline-block;
            padding: 4px 10px;
            background: #f0f4ff;
            color: #0052cc;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .blog-title {
            font-family: var(--primary-font);
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .blog-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
            font-size: 12px;
            color: #999;
        }
        
        .blog-author {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .author-avatar {
            width: 24px;
            height: 24px;
            background: #e0e0e0;
            border-radius: 50%;
        }
        
        .read-time {
            font-size: 12px;
            color: #999;
        }


.location {
    display: flex;
    height: fit-content;
    flex-direction: row;
    padding: 50px 150px;
    justify-content: center;
    background-color: #fbf9ef;

}

.location-description {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

    .location h3 {
        font-size: 42px;
        font-weight: 500;
        font-family: var(--primary-font);
    }

    .location span {
        font-family: var(--secondary-font);
        font-size: 20px;
        width: 80%;
        color: #391f0f;
    }

    .location-btn {
        width: max-content;
        border: 1px solid #391f0f;
    }

    .location-btn a {
        color: #391f0f;
    }



.amenities-section {
    display: flex;
    align-items: center;
    padding: 0 150px;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
    background-color: #fbf9ef;

}


    .amenities-section h3 {
        font-size: 42px;
        color: #391f0f;
        font-family: var(--primary-font);
        font-weight: 300;
    }

    .amenities-section span {
        font-size: 20px;
        color: #794927;
        font-family: var(--secondary-font);
        font-weight: 600;
    }

.amenities-container {
    padding: 3rem 0 0;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

.amenity {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-direction: row;
}

    .amenity img {
        width: 30px;
    }

    .amenity h4 {
        font-size: 24px;
        font-family: var(--primary-font);
    }

    .amenity p {
        font-size: 16px;
        color: #00000080;
        font-weight: 500;
        font-family: var(--secondary-font);
    }

    .amenity-title {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }


.footer {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 150px 150px;
    height: fit-content;
    background-color: #2d4d3a;
    color: #fff;
    font-family: var(--secondary-font);

    a {
        color: #fff;
    }
}

.footer-overlay-1 {
    position: absolute;
    bottom: 0;
    transform: rotate(-180deg);
    right: 0;
    width: 550px;
    filter: opacity(20%);
}

.footer-overlay-2 {
    position: absolute;
    bottom: -18%;
    left: 0;
    width: 550px;
    filter: opacity(20%);
}

.logo-container {
    flex: 1;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;

    img {
        width: 200px;
        height: 200px;
    }
}

.address-container {
    flex: 1;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    
}

    .address {
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

.links-menu {
    height: 250px;
    padding: 0 2rem;
    z-index: 2;
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


.social-svg {
    display: flex;
    gap: 20px;
    flex-direction: row;
    
    img {
        width: 25px;
        height: 25px;
    }
}


.credits {
    background-color: #2d4d3a;
    padding: 0 150px;

    h1 {
        padding: 20px 0;
        font-family: var(--secondary-font);
        color: #ffffff60;
        font-weight: 300;
        width: 100%;
        border-top: 1px solid #ffffff60;
        font-size: 16px;

        a {
            color: #fff;
        }
    }
}

    .parallax-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: url('/assets/images/property/poolsidedark.jpeg') center/cover no-repeat;
      z-index: -1; 
    }



    @media screen and (max-width: 1024px) {
        .home-section, 
        .welcome-section
        .rooms-section, 
        .experiences-section, 
        .location-section, 
        .amenities-section, 
        .footer,
        .wedding-section {
            padding: 3rem 2rem;
        }

        .wedding-section,
        .amenities-section,
        .experiences-section,
        .location-section {
            height: fit-content;
        }


        .welcome-section {
            align-items: center;
            justify-content: center;
        }

        .restraunt {
            flex-direction: column;
        }

        .left-div {
            flex: none;
        }

        .restraunt-img2 {
            left: 20%;
            height: 400px;
            width: 550px;
        }

        .restraunt-img1 img {
            object-fit: cover;
        }

        .restraunt-img2 img {
            width: 100%;
            height: 100% ;
            object-fit: cover;
        }

        .location-section {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 3rem;
        }

        .map {
            width: 100%;

        }

        iframe {
            width: 100%;
        }

    }

    @media screen and (max-width: 438px) {


        h2 {
            font-size: 2rem;
        }

        p {
            font-size: 1.2rem;
        }


        .home-section {
            padding: 0 2rem;
        }

        .hero-content {
            gap: 2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            text-align: center;
            line-height: 90%;
        }

        .hero-content p {
            text-align: center;
        }

        nav {
            width: 100%;

        }

        .nav-links {
            display: none;
        }

            .nav-links,
    .book-now-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    .welcome-img-container {
        position: relative;
        gap: 0;
        flex-direction: column;
    }

    .img-1 {
        position: absolute;
        width: 200px;
        right: -25%;
        bottom: -10%;
        height: 200px;
    }

    .img-2 {
        left: -10%;
        width: 250px;
        top: 0;
        height: 300px;
    }

    .show-reel h2 {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .rooms-section {
        padding: 0 20px;
        align-items: flex-start;
    }

    .rooms-section h3 {
        font-size: 2rem;
    }

    .room {
        min-width: 100%;
    }

    .restraunt {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 20px;
    }

    .restraunt h3 {
        font-size: 2rem;
    }

    .restraunt span {
        font-size: 16px;
    }

    .restraunt p {
        font-size: 14px;
    }

    .branch-img-1 {
        width: 100%;
        overflow-x: hidden;
        top: 0%;
        left: -15%;
        z-index: 1;
        transform: rotate(-15deg);
    }

    .left-div {
        height: fit-content;
        flex: 0;
    }

    .restraunt-img1 {
        height: 70%;
    }

    .restraunt-img2 {
        position:absolute;
        bottom: 0;
        left: -30%;
        width: 100%;
        height: 200px;
    }

    .experiences-section {
        gap: 1rem;
        height: max-content;
        padding: 100px 20px;
    }

    .experiences-section h3 {
        font-size: 2rem;
    }

    .experiences-section p {
        font-size: 14px;
        text-align: left;
        width: 100%;
    }

    .experiences-section span {
        font-size: 16px;
        width: 100%;
        text-align: left;
    }

    .experiences-container {
        display: flex;
        flex-direction: column;
    }

    .experience h4 {
        font-size: 1.4rem;
    }

    .wedding-section {
        flex-direction: column-reverse;
    }

    .location-section {
        padding: 0 20px;
        height: 100vh;
        flex-direction: column;
        gap: 1rem;
    }

    .location-section h3 {
        font-size: 2rem;
    }
    .location-section span {
        font-size: 16px;
    }

    iframe {
        width: 100%;
        height: 250px;
    }

    .amenities-section {
        padding: 100px 20px;
        height: fit-content;
    }

    .amenities-section h3 {
        font-size: 2rem;
        text-align: left;
        width: 100%;
    }

    .amenities-section span {
        font-size: 16px;
    }

    .amenities-container {
        display: flex;
        flex-direction: column;
    }

    .amenity img {
        width: 25px;
    }

    .amenity h4 {
        font-size: 1rem;
    }
    .amenity p {
        font-size: .8rem;
    }

    .footer {
        padding: 0 20px;
        gap: 3rem;
        flex-direction: column;
    }

    .address {
        flex-direction: column;
        gap: 10px;
    }
    .address-container {
        gap: 1.5rem;
    }

    .links-menu {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: auto;
        padding: 0;
    }


    .credits {
        padding: 0 20px;
        font-size: 14px;
    }

    .footer-overlay-1 {
        width: 250px;
        top: 0;
    }

    .footer-overlay-2 {
        width: 250px;
        bottom: 0;
    }
                .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
}

/* Open state */
.mob-nav-links.open {
    left: 0;
    }


    /* Floating Chat Button */
#chatbot-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

#chatbot-button img {
  width: 65%;
  height: 65%;
}

/* Chat Popup */
#chatbot-popup {
    font-family: var(--secondary-font);
  width: 320px;
  height: 380px;
  background: #fff;
  position: fixed;
  bottom: 110px;
  right: 25px;
  border-radius: 15px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
}

.chat-header {
  background: #25D366;
  color: white;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}

.chat-body {
  flex: 1;
  padding: 15px;
  background: #f8f8f8;
  overflow-y: auto;
}

.bot-msg {
  background: white;
  color: black;
  padding: 10px 15px;
  border-radius: 12px;
  width: fit-content;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.chat-input-area {
  display: flex;
  padding: 10px;
  background: #fff;
  border-top: 1px solid #ddd;
}

#chat-input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#chat-send {
  background: #25D366;
  border: none;
  color: white;
  padding: 10px 15px;
  margin-left: 8px;
  border-radius: 8px;
  cursor: pointer;
}
