
/* HOTEL TITLE */
.hotel-title{
    text-align:center;
    background-color:orange;
    color:white;
    padding:15px 0;
    margin:0;
}

/* SLIDER */
.slider{
    width:100%;
    overflow:hidden;
}

.slides img{
    width:100%;
    height:250px;
    object-fit:cover;
}


/* RESET */
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

/* BODY */
body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:linear-gradient(135deg,#f5f7fa 0%,#c3cfe2 100%);
    min-height:100vh;
}

/* FORM CONTAINER */
.form-container{
    background:#f0f0f0;
    padding:35px 30px;
    border-radius:12px;
    width:100%;
    max-width:420px;
    margin:60px auto; 
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* HEADING */
h1{
    text-align:center;
    margin-bottom:25px;
    color:#333;
    font-size:28px;
    font-weight:bold;
}

/* LABELS */
label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    color:#333;
}

/* INPUTS */
input, textarea{
    width:100%;
    padding:12px;
    margin-bottom:18px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
    background:white;
}

/* TEXTAREA */
textarea{
    height:60px;
    resize:none;
}

/* INPUT FOCUS */
input:focus, textarea:focus{
    outline:none;
    border-color:#4e84c4;
}

/* BUTTON */
button {
    width: 100%;
    padding: 0.75rem;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

/* BUTTON HOVER */
button:hover{
    background: #3b6fa8;
}

/* MESSAGE */
#message{
    margin-top:10px;
    text-align:center;
    font-weight:600;
}

.success{
    color:green;
}

.error{
    color:red;
}



/* FOOTER */
.container{
    max-width:1100px;
    margin:auto;
}

.footer{
    background-color:#003366;
    padding:20px 0;
}

.footer-row{
    display:flex;
    flex-wrap:wrap;
}

.footer-col{
    width:25%;
    padding:0 15px;
}

.footer-col h4{
    font-size:18px;
    color:#ffffff;
    margin-bottom:35px;
    position:relative;
}

.footer-col h4::before{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    background-color:#e91e63;
    height:2px;
    width:50px;
}

.footer-col ul{
    list-style:none;
}

.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;
}

.footer-col ul li a:hover{
    color:white;
    padding-left:8px;
}

.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:white;
}

.footer-col .social-links a:hover{
    background-color:white;
    color:#24262b;
}

/* RESPONSIVE */
@media(max-width:767px){
    .footer-col{
        width:50%;
        margin-bottom:30px;
    }
}

@media(max-width:574px){
    .footer-col{
        width:100%;
    }
}