* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7em;
    margin: 60px 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(45deg, #ffcccc, #ccffcc, #ccccff);
    background-attachment: fixed;
    background-size: cover;
}

a {
    color: #fff;
    text-decoration: none;
}

h1,
h2,
h3 {
    padding-bottom: 20px;
}

p {
    margin: 10px 0;
}

/* Utilities */

@import url("https://fonts.googleapis.com/css2?family=Forum&display=swap");

.logo {
    font-family: "Forum", serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 30px;
    height: 30px;
}

.container {
    margin: auto;
    max-width: 1100px;
    overflow: hidden;
    padding: 0 20px;
}

.text-primary {
    color: #cc8400;
}

.lead {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #333;
}

.btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    border-radius: 15px;
}

.btn:hover {
    background: #f7c08a;
    color: #333;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.btn-light {
    background: #f4f4f4;
    color: #333;
    border-radius: 15px;
}

.bg-dark {
    background: #333;
    color: #fff;
}

.bg-primary {
    background: #f7c08a;
    color: #333;
}

.bg-light {
    background: #f4f4f4;
    color: #333;
}

.clr {
    clear: both;
}

.l-heading {
    font-size: 30px;
}

.f-head {
    margin-top: 25px;
    margin-bottom: 05px;
}

.p-text {
    color: #967b32;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif
}

#gallery-text {
    transform: translateY(18px);
}

.common {
    text-align: center;
}


/* Navbar */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #333;
    z-index: 9999;
    transition: all 0.1s ease-in-out;
}

#navbar {
    background: #333;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#navbar a {
    color: #fff;
}

#navbar h1 {
    float: left;
    padding-top: 20px;
}

#navbar ul {
    list-style: none;
    float: right;
}

#navbar li {
    float: left;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

#navbar li a {
    display: block;
    padding: 20px;
    text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    background: #444;
    color: rgb(22, 189, 0);
}

/* Showcase */
#showcase {
    background-image: url("../img/showcase.jpg");
    background-size: cover;
    background-position: cover/center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

#showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 170px;
}

#showcase .showcase-content h1 {
    font-size: 50px;
    line-height: 1.2em;
}

#showcase .showcase-content p {
    padding-bottom: 20px;
    line-height: 1.7em;
}

/* Home Info */
#home-info {
    height: 70vh;
}

#home-info .info-img {
    float: left;
    width: 50%;
    background: url("../img/hotel.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100%;
}

#home-info .info-content {
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 50px 30px;
    overflow: hidden;
}

#home-info .info-content p {
    padding-bottom: 20px;
}


/* features */
.box {
    float: left;
    width: 33.3%;
    padding: 50px;
    text-align: center;
    height: 500px;
}

.box img {
    margin-bottom: 10px;
    width: 30%;
    height: 30%;
}

.service {
    text-align: center;
    margin: 20px;
    transform: translateY(30px);
}

#text0 {
    text-align: center;
    margin: 20px;
    transform: translateY(80px);
    margin-bottom: 20px;
}

#text1 {
    text-align: center;
    margin: 10px;
    font-size: 21px;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.slide-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    overflow: hidden;
    padding: 50px;
}

.slide {
    width: 100%;
    max-width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: brightness(0.5);
    z-index: 1;
    position: relative;
}

.slide:hover img {
    transform: scale(1.3);
    filter: brightness(1);
    transition: all 0.3s ease;
    z-index: 2;
}

/* About */
#about-info .info-right {
    float: right;
    width: 50%;
    min-height: 100%;
}

#about-info .info-right img {
    display: block;
    margin: auto;
    width: 90%;
    border-radius: 10px;
    border: 3px solid #333;
}

#about-info .info-left {
    float: left;
    width: 50%;
    min-height: 100%;
}

#about-info .info-right:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}



/* padding */
.opt-1 {
    padding: 10px 0;
}

.opt-2 {
    padding: 20px 0;
}

.opt-3 {
    padding: 30px 0;
}

/* testimonials */
#testimonials {
    height: 600px;
    padding-top: 40px;
    background-image: url("../img/review.jpg");
    background-size: cover;
    background-position: cover/center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

#testimonials .testimonials {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    opacity: 0.9;
}

#testimonials .testimonials:hover {
    background-color: #0056b3;
    color: #fff;
    box-shadow: 0px 4px 8px #333;
    transform: scale(1.03);
    transition: all 0.3s ease;
}

#testimonials .testimonials img {
    width: 100px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

#testimonials h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 40px;
}

/* Facilities */
.sections {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 80px;
}

.sections section {
    flex: 1;
    max-width: 48%;
}

.box1 img,
.box2 img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.box1 {
    text-align: center;
    padding: 20px;
    background: #f7c08a;
    color: #333;
    border-radius: 10px;
    margin: auto;
}

.box2 {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    border-radius: 10px;
}

.box1:hover {
    box-shadow: 0px 4px 8px #333;
    transform: scale(1.04);
    transition: all 0.3s ease;
}

.box2:hover {
    box-shadow: 0px 4px 8px #333;
    transform: scale(1.04);
    transition: all 0.3s ease;
}

#facility-text {
    text-align: center;
    transform: translateY(60px);
}

/* Contact */
#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #002fff;
    border-radius: 5px;
}

#contact-form textarea {
    height: 200px;
}

#contact-form .customer {
    display: flex;
    justify-content: space-evenly;
}

#customer {
    display: flex;
    align-items: center;
}

#customer #label1 {
    font-size: 20px;
}

#customer input {
    width: 80px;
    margin-left: 80px;
}

#about-r {
    margin-top: 90px;
}

#submit {
    display: block;
    margin: 10px auto;
}

.contact-etc {
    margin-top: 60px;
    text-align: center;
}

.map {
    display: block;
    margin: 100px auto;
    width: 40%;
    height: 400px;
    border: 2px solid #444;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

#map {
    text-align: center;
    transform: translateY(100px);
}

/* footer */
#main-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    background: #444;
    color: #fff;
    overflow: hidden;
    padding: 50px;
}

#main-footer input,
#main-footer textarea {
    background-color: #e6d6d6;
    padding: 10px;
}

.button:hover {
    box-shadow: 0px 4px 8px #333;
    transform: scale(1.07);
    transition: all 0.3s ease;
}

.abtn {
    color: #ccc;
}

.abtn:hover {
    color: #007bff;
    background-color: #f0f8ff;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.typebox {
    border: 2px solid #000000;
    border-radius: 4px;
}

#c-info {
    flex: 1;
    text-align: left;
    padding-right: 15px;
}

#social {
    flex: 1;
    text-align: left;
    padding-right: 15px;
}

#social button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

#news {
    flex: 1;
    text-align: left;
}

#news button {
    background-color: #28A745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.form-submit {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


#copy {
    text-align: center;
    margin-top: 20px;
    flex-basis: 100%;
}

#media {
    flex: 1;
    text-align: left;
    padding-right: 5px;
}


.popup-container {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
}

.popup-container button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    background: #333;
    color: #fff;
    transition: transform 0.2s ease;
}

.popup-container button:hover {
    transform: scale(1.1);
}

.popup-content a{
    color: #333;
    text-decoration: none;
}

.popup-content a:hover{
    color: #b19c86;
}

.popup-content ul {
    list-style: none;
    padding: 0;
}

.popup-content ul li{
    padding: 10px 0;
}


.popup.show {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background-color: rgb(255, 211, 211);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    z-index: 1001; /* Ensure it appears above other elements */
}

.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it appears above other elements */
}

.popup.show .popup-content {
    transform: scale(1);
}