*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}




.gallery {
    padding: 30px 20px;
    text-align: center;
    background: #f9f9f9;
}

.gallery-box {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.gallery-box img {
    width: 300px;   
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

.gallery-box img:hover {
    transform: scale(1.05);
}


.slider {
  width: 100%;
  overflow: hidden;
}

.slides img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-content {
    text-align: center;
}


.image-content {
    text-align: center;
}



*{
    box-sizing: border-box;
}

body{
    background: linear-gradient(135deg,#eaf4ff,#cfe6ff,#eaf4ff);
    color: #485e74;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
}
.container{
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
  margin: 0;
}

ul{
    list-style: none;
    padding: 0;
}

.brand{
    text-align: center;
}

.brand span{
    color: #fff;
}

/* WRAPPER */
.wrapper{
    box-shadow: 0 0 20px 0 rgba(72, 94, 116, 0.7);
     margin-top: 20px;
}

.wrapper > *{
    padding: 1em;
}

/* COMPANY INFO */
.company-info{
    background: #c9e6ff;
}

.company-info h3,
.company-info ul{
    text-align: center;
    margin: 0 0 1rem 0;
}

/* CONTACT */
.contact{
    background: #f9feff;
}

/* FORM STYLES */
.contact form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.contact form label{
    display: block;
}

.contact form p{
    margin: 0;
}

.contact form .full{
    grid-column: 1 / 3;
}

.contact form button,
.contact form input,
.contact form textarea{
    width: 100%;
    padding: 1em;
    border: 1px solid #c9e6ff;
}

.contact form button{
    background: #c9e6ff;
    border: 0;
    text-transform: uppercase;
}

.contact form button:hover,
.contact form button:focus{
    background: #92bde7;
    color: #fff;
    outline: 0;
    transition: background-color 2s ease-out;
}

/* ALERT */
.alert{
    text-align: center;
    padding: 10px;
    background: #79c879;
    color: #fff;
    margin-bottom: 10px;
    display: none;
}

/* LARGE SCREENS */
@media (min-width: 700px){
.wrapper{
        display: grid;
        grid-template-columns: 1fr 2fr;
}

.wrapper > *{
padding: 2em;
}

.company-info h3,
.company-info ul,
.brand{
        text-align: left;
    }
}





/* ================= FOOTER ================= */

.footer {
    background-color: #003366;
    padding: 40px 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #e91e63;
    height: 2px;
    width: 50px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #bbbbbb;
    display: block;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Social Icons */

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}


/* ================= HOTEL TITLE ================= */

.hotel-title {
    text-align: center;
    background-color: orange;
    color: white;
    padding: 15px 0;
    margin: 0;
   
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-col {
        width: 100%;
    }

    .gallery-box img {
        width: 100%;
        height: auto;
    }
}



.contact-wrapper{
display:flex;
gap:40px;
margin-top:30px;
}

.company-info{
flex:1;
background:#f4f4f4;
padding:20px;
border-radius:10px;
}

.contact{
flex:2;
background:#ffffff;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact input,
.contact textarea{
width:100%;
padding:10px;
margin-top:5px;
border:1px solid #ccc;
border-radius:5px;
}

.contact button{
background:#2E86C1;
color:white;
border:none;
padding:10px 20px;
cursor:pointer;
border-radius:5px;
}

.contact button:hover{
background:#1B4F72;
}

