/* ================================================================ */
/* ========================= BOOKING MODAL ======================== */
/* ================================================================ */
.booking-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-overlay.active {
    display: flex;
}

.booking-modal {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.booking-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #888;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.booking-close:hover {
    background: #f0f0f0;
    color: #333;
}

.booking-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3a2e26;
    margin: 0 0 1.5rem;
    text-align: center;
}

.booking-prices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.booking-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f7f5;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
}

.booking-price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mainGreen);
}

.booking-price-label {
    font-size: 0.9rem;
    color: #555;
    text-align: right;
}

.booking-notes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.booking-notes li {
    font-size: 0.88rem;
    color: #555;
    padding-left: 1rem;
    position: relative;
}

.booking-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mainGreen);
}

.booking-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 1.25rem 0;
}

.booking-contact-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-tab {
    flex: 1;
    padding: 0.55rem 1rem;
    border: 1.5px solid rgba(82, 122, 87, 0.35);
    border-radius: 8px;
    background: transparent;
    color: var(--mainGreen);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.contact-tab:hover {
    background: rgba(82, 122, 87, 0.08);
}

.contact-tab.active {
    background: var(--mainGreen);
    color: #fff;
    border-color: var(--mainGreen);
}

.contact-panel {
    display: none;
    flex-direction: column;
    gap: 0;
}

.contact-panel.active {
    display: flex;
}

.booking-contact-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.booking-contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #f7f7f5;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.5rem;
}

.booking-contact-link {
    font-size: 1rem;
    font-weight: 600;
    color: #3a2e26;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.booking-contact-link:hover {
    color: var(--mainGreen);
}

.booking-copy-btn {
    border: 1.5px solid rgba(82, 122, 87, 0.4);
    background: transparent;
    color: var(--mainGreen);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.booking-copy-btn:hover,
.booking-copy-btn.copied {
    background: var(--mainGreen);
    color: #fff;
    border-color: var(--mainGreen);
}

/* ================================================================ */
/* ========================= LANDING PAGE ========================= */
/* ================================================================ */
.landingPage {
    display: flex;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 3rem;
    height: 80vh;
    padding: 0 2rem;
    box-sizing: border-box;
    margin-top: 7rem !important;
    margin: 0 auto;
    text-align: center;
    width: 90%;
    max-width: 1500px;
}
.mobileButton{
    display: none;
}

.landingPage button {
    border: none;
    background-color: var(--mainGreen);
    padding: 14px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(82, 122, 87, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.landingPage button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--walnut);
    border-radius: inherit;
    transform: translateX(-101%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.landingPage .left{
    text-align: left;
}

.landingPage .slider-wrapper {
    width: 100%;
}

.landingPage button:hover {
    cursor: pointer;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(82, 122, 87, 0.45);
}

.landingPage button:hover::before {
    transform: translateX(0);
}

.landingPage a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
}

.landingImage {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carouselText {
    color: var(--walnut);
    font-size: 0.8rem;
    text-align: left;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    opacity: 0.75;
}
.subCarousel{
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 6px;
    letter-spacing: 0.04em;
    color: #666;
    opacity: 1;
}
/* ============================================================ */
/* ========================= ABOUT US ========================= */
/* ============================================================ */

/* ~~~~~~~~~~~~~~~~ Global Styling ~~~~~~~~~~~~~~~~ */
:root{
    --profileGray: #94a3b8;
}
.gradient-green{
    border: 2.2px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(315deg, #378b29, #74d680);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.gradient-green-text {
    background-color: #378b29;
    background-image: linear-gradient(315deg, #378b29 0%, #74d680 74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gray_background{
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    color: var(--profileGray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~~~ Animations ~~~~~~~~~~~~~~~~~~~ */
.profile_languages h1:hover,
.bottomRow button:hover,
.bottomRow button:hover a {
    transform: translateY(-5px);
    color: white;
    cursor: pointer;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.aboutUs{
    background-color: var(--mainGreen);
    color: white;
    padding: 1rem 0;
}

.profileContainer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 600px));
    gap: 50px;
    margin: 0 auto;
    justify-content: center;
}

.profileContainer .profile:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}
.profileContainer hr {
    color: var(--profileGray);
}

.profile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 600px; 
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: 0px 0px 50px black;

}


/* ====== 1. Host img & title ====== */
.topRow{
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}
.topRow img{
    border-radius: 50%;
    width: 125px;
    height: 125px;
    object-fit: cover;
}
.topRow h1{ font-size: 2em; margin: 0px 0 10px 0; }
.topRow h2{ font-size: 1.7em; margin: 35px 0 10px 0; }
.topRow h3{ font-size: 1em; color: var(--profileGray); }
/* ====== 2. Skill attributes ====== */
.middleRow{
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    height: fit-content;
    width: fit-content;
}
.middleRow .skill{
    text-align: center; 
    background-color: transparent;
    padding-bottom: 0 !important;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--profileGray);
    transition: all 0.3s ease;
    word-break: break-word;
}
.middleRow .skill h2 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); font-weight: 600; margin: 0; }
.middleRow .skill p  {
    font-size: 0.78rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.statsRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0.25rem;
}

.statsRow .skill {
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.85rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
    cursor: default;
}

.statsRow .skill:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.amenitiesWrapper{
    gap: clamp(2rem, 5vw, 6rem);
}
.leftColumn, .rightColumn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.leftColumn h1, .rightColumn h1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 3vw, 1.3rem);
}

/* ====== 3. Bottom Row (2) ====== */
.bottomRow{
    margin: 0 auto;
    width: 100%;
    color: white;
    text-align: justify;
    hyphens: auto;
    line-height: 1.5;
}

.bottomRow p{ 
    margin: 0; 
    font-size: clamp(0.9rem, 2vw, 1rem);
}
/* ----- 3.1. Profile Description & Languages ----- */
.profile_languages{
    display: flex;
    justify-content: center;
    gap: 5%;
}
.profile_languages h1{ 
    font-size: 1rem;
    font-weight: 400; 
    padding: 0.5rem clamp(0.5rem, 2vw, 1rem);
    color: white;
}
/* ----- 3.2. Book Now - Button ----- */
.bottomRow button{
    display: block;
    margin: 1.5rem auto 0;
    padding: 12px 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottomRow button:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.bottomRow button a{
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
/* ================================== */
/* ======== Long Description ======== */
.longDescription {
    margin: 5rem auto;
    width: 80%;
    text-align: justify;
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    line-height: 2;
    hyphens: auto;
}

.longDescription h2 {
    text-align: center;
    margin-bottom: 1rem;
}
.teaser-fade {
    position: relative;
}
.teaser-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--mainGreen));
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.teaser-fade.expanded::after {
    opacity: 0;
}

.readMoreWrapper{
    margin: 0 auto;
    text-align: center;
}
#readMore{
    background-color:rgba(0, 0, 0, 0.141);
    color: whitesmoke;
    border: 1px solid white;
    padding: 0.25em 1em;
    transform: all 0.3s ease-in-out;
    margin-top: 20px;
}
#readMore:hover{
    color: lightgray;
    border: 1px solid lightgray;
}
/* ================================== */
/* ======== Bedroom Gallery ========= */
/* ================================== */

/* ~~~~~~~~~~~~~~~~~~ Animations ~~~~~~~~~~~~~~~~~~~ */
.cardBox:hover{ transform: translateY(-20px); }
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.bedroomGallery {
    margin: 0 auto;
    padding-bottom: 3rem;
}

.bedroomGallery h2 { margin-bottom: 2rem; text-align: center; }

.gridWrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    justify-items: center;
    align-items: center;
    max-width: 800px;
}

.cardBox {
    height: fit-content; 
    width: fit-content;
    box-sizing: border-box;
    border: 2px solid white;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.608);
    transition: all 0.15s ease-in;
}

.grid {
    height: 250px;
    width: 350px;
    border-bottom: 2px solid white;
    object-fit: cover;
    object-position: center;
}

.gridWrapper h3 {
    margin: 20px 20px 5px 20px;
}

.gridWrapper p {
    margin-left: 20px;
    color: whitesmoke;
}
/* ================================================================= */
/* ========================= PHOTO GALLERY ========================= */
/* ================================================================= */
.photoGallery{
    margin: 0 auto;
    width: 80%;
    padding-bottom: 5rem;
}
.photoGallery h1{
    color: var(--walnut);
}

/* Reset CSS */
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: inline-block;
}

/* Main CSS */
.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}
/* ================================================================= */
/* ========================= SIGNATURE ============================= */
/* ================================================================= */
.advertisement{
    text-align: center;
    text-decoration: underline;
    margin-top: 1%;
}

.advertisement a {
    text-decoration: none;
    color: black;
}
.advertisement a:hover {
    color: blue;
}

.footer-image{
    margin: -2% 0 2% 0;
    text-align: center;
}

.footer-image img{
    width: 300px;
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
}

.footer-image img:hover{
    transform: scale(1.3);
}