* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.allIcons {
    font-size: 25px;
}

a {
    text-decoration: none;
}

h4{
    color: #b4985e;
    font-size: 25px;
    font-weight: normal;
}

/* HEADER */

header {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 5em;
    width: 100%;
}

.leftDetailsContainer {
    flex-direction: column;
    display: flex;
}

.leftDetails {
    position: relative;
    display: flex;
    gap: 0.5em;
}

.theLogo {
    position: relative;
    right: 4.5em;
    max-width: 85px;
    height: auto;
}

.socialAccounts {
    justify-content: center;
    font-size: 35px;
    display: flex;
    gap: 0.5em;
}

.socialAccounts a {
    color: #b4985e; 
    transition: 0.4s ease-out;
}

.socialAccounts a:hover {
    color: #806b42;
}

/* NAVIGATION BAR */
.navbarContainer {
    display: flex;
    background-color: #151515;
    padding: 1em 0 1em 0;
    width: 100%;
}

.buttonsContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 4em;
}

.buttonsContainer a {
    position: relative;
    display: inline-block;
    color: #B4985e;
    font-size: 20px;
    transition: 0.3s ease;
    font-weight: 500;
}

.buttonsContainer a:hover {
    color: white;
}

.buttonsContainer a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d4985e;
    transition: 0.4s ease-out;
}

.buttonsContainer a:hover::after {
    width: 100%;
}

/* --------------------------------------------------------------------------------------- */

/* LANDING PAGE */
.backgroundImageContainer {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    background-image: url('../sources/amanpulo-hotel-the-philippines-palawan-p.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); 
    filter: blur(1px);                      
    z-index: 5;                             
}

.landingPageContainer {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 10;
    gap: 0.5em;
}

.mainTitle {
    position: relative;
    font-weight: normal;
    color: white;
    user-select: none;
}

.mainTitle h1 {
    font-size: 4vw;
}

.mainTitle h3 {
    font-size: 1.5vw;
}

/* FOR BOOKING CONTAINER */

.bookingFormContainer {
    position: relative;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 2px;
    height: 35em;
    width: 23em;
    gap: 2.5em;
}

.bookingFormContainer h2 {
    position: relative;
    top: 0;
    color: #151515;
    font-weight: 500;
    font-size: 30px;
    user-select: none;
}

.toFillup {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 80%;
    gap: 1em;
}

.toAdjust {
    margin-bottom: 0px;
}

.toFillup h3 {
    font-size: 18px;
    font-weight: normal;
}

.inputBoxes {
    width: 100%;
    height: 40px;
}

/* FORM BUTTON */
.formButton {
    height: 50px;
    width: 80%;
    border-radius: 2px;
    color: white;
    font-size: 20px;
    background-color: #B4985e;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-out;
}

.formButton:hover {
    background-color: #806b42;
}
/* ------------------------------------------------------------------------- */

/* ABOUT THE HOTEL */
.ourHotel {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    border-bottom: 1px #151515 solid;
    padding: 50px 0;
}

.aboutHotel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: center;
    gap: 2em;
}

.aboutHotel h2 {
    font-size: 50px;
}

.textSeparate {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.readMoreBtn {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #151515;
    transition: 0.3s ease-in;
}

.readMoreBtn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;    
    background-color: #b4985e;
    transition: 0.4s ease-out;
}

.readMoreBtn:hover {
    color: #B4985e;
}

.introImages {
    display: flex;
    justify-content: center;
    gap: 2em;
    width: 50%;
    height: auto;
}

.introImages img{
    position: relative;
    width: 20vw;
    height: 400px;
    object-fit: cover;
}
/* -------------------------------------------------------------- */

/* OUR SERVICES */
.ourServices {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 50px;
    gap: 1em;
}

.ourServices h2 {
    font-size: 40px;
    font-weight: normal;
}

.servicesContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-top: 30px 50px 0 50px;
    gap: 2em;
}

.servicesContainer i {
    font-size: 50px;
}

.servicesCards {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    width: 30%;
    height: 200px;
}

.servicesCards h3 {
    font-size: 25px;
}
/* -------------------------------------------------------------------------------- */

/* LISTS OF HOTEL ROOMS */
.roomLists {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    padding: 0 0 50px 0;
}

.roomCards {
    height: 400px;
    width: 450px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGES */
.roomCards img {
    position: relative;
    width: auto;
    object-fit: cover;
    z-index: 4;
}

#image1 {
    height: 600px;
    background-position: -600px 0;
    background-image: url('../sources/HEADER_Stay-at-Jupiter-Beach-Resort.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

#image2 {
    background-image: url('../sources/25-PIONEER-BEACH-HOTEL-SUPERIOR-DELUXE-ROOM-SV.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -300px 0;
    height: 600px;
}

#image3 {
    background-image: url('../sources/201077a028f23630008e10851dd4f093.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -200px 0;
    height: 600px;
}

#image4 {
    background-image: url('../sources/island-view-room-double_standard.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -100px 0;
    height: 600px;
}

.imagesOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    filter: blur(1px);                      
    z-index: 5;
    transition: 0.3s ease-in;    
}

/* ROOM DETAILS */
.roomDetails {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    z-index: 10;
}

.roomDetails h3 {
    user-select: none;
    color: white;
    font-size: 35px;
    transform: translateY(-50px);
    transition: 0.3s ease-in;
    z-index: 10;
}

.roomDetails p {
    color: white;
    font-size: 20px;
    font-weight: normal;
    transform: translateY(40px);
    transition: 0.3s ease-in;
    z-index: 10;
}

.roomPrice {
    color: #B4985e;
    font-weight: bold;
    font-size: 32px;
}

/* TO HOVER ANIMATION */
.roomCards:hover .imagesOverlay{
    opacity: 1;
}

.roomCards:hover .roomDetails h3{
    transform: translateY(50px);
}

.roomCards:hover .roomDetails p{
    transform: translateY(-50px);
}
/* ------------------------------------------------------------------ */

/* GET ROOM BUTTON */
.getRoomBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnHolder a {
    position: relative;
    bottom: -30px;
    height: 60px;
    width: 280px;
    border-radius: 2px;
    color: white;
    font-size: 25px;
    background-color: #B4985e;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-out;
}

.btnHolder:hover a {
    background-color: #806b42;
}
/* ------------------------------------------------------------------- */

/* FOR CONTACTS */
.contactsContainer {
    width: 100%;
    height: auto;
    background-color: #151515;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 5em;
    padding: 20px 0px;
}

.leftSocialDetails {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.belowSocialIcons {
    position: relative;
    bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 1.5em;
}

.belowSocialIcons a {
    color: #B4985e;
    font-size: 35px;
    transition: 0.3s ease;
}

.iconsBorder {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #B4985e;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    transition: 0.3s ease;
}

.iconsBorder a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconsBorder:hover {
    background-color: #806b42;
    border-color: #806b42;
}

.iconsBorder:hover a{
    color: white;
}

/* RIGHT CONTACTS */
.rightDetails {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 50em;
    height: 200px;
    padding-top: 20px;
    gap: 1em;
}

.rightDetails h2 {
    color: #B4985e;
    font-size: 30px;
    margin-bottom: 10px;
}

.contactDetails {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.conctactInfo {
    display: flex;
    gap: 10em;
}

.rightDetails p {
    color: white;
    font-size: 16px;
}

/* GET LATEST */
.getLatest {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.submitContainer {
    display: flex;
}

/* SUBMIT BUTTON */

.latestSubmitBox {
    width: 80%;
    height: 50px;
    background-color: #272727;
    border: none;
    color: white;
    padding: 0 5px;
    outline: none;
}

.latestSubmit {
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    background-color: #B4985e;
    border: none;   
    transition: 0.3s ease;
}

.latestSubmit:hover {
    background-color: #806b42;
}
/* ----------------------------------------------------------------------- */

/* FOOTER DETAILS */
.footerDetails {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #272727;
    height: 60px;
}

.listsCredits {
    display: flex;
    gap: 2em;
}

.listsCredits p {
    white-space: nowrap;
}

.listsCredits a, .copyrightCredits{
    color: white;
}

.coderCredit {
    color: #B4985e;
    font-weight: bold;
}

/* FOR SMALLER SCREEN DEVICES */
@media (max-width: 600px) {
    .backgroundImageContainer {
        height: 30vh; /* Adjust height for smaller screens */
    }
}