* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    color: #800000;
    font-weight: 600;
}

.nav-btn {
    background: #800000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.nav-btn:hover {
    background: #5c0000;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../images/sampurn_bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-logo{
position:absolute;
width:40%;
max-width:550px;
top:10%;
right:5%;
margin-bottom:20px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}
@media (max-width:768px){

.hero-logo{
position:relative;
width:80%;
max-width:350px;
top:auto;
right:auto;
display:block;
margin:20px auto;
}

}
.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #800000;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #5c0000;
}


/* Booking Page */

.booking-container {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../images/room_bg.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-card {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.booking-card h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #800000;
}

.booking-card input,
.booking-card select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.booking-card button {
    background: #800000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.booking-card button:hover {
    background: #5c0000;
}

.footer{
background:#1f1f1f;
color:white;
padding:50px 10%;
margin-top:60px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-section h3,
.footer-section h4{
margin-bottom:15px;
color:#fff;
}

.footer-section p{
color:#ccc;
font-size:14px;
}

.footer-section a{
display:block;
color:#ccc;
text-decoration:none;
margin-bottom:6px;
}

.footer-section a:hover{
color:white;
}
.footer-section i{
margin-right:8px;
color:#ffffff;
}

/* SOCIAL ICONS */

.social-icons a{
font-size:22px;
margin-right:10px;
text-decoration:none;
}


/* WHATSAPP BUTTON */

.whatsapp-btn{
display:inline-block;
background:#25D366;
color:white;
padding:10px 18px;
border-radius:6px;
margin-top:10px;
text-decoration:none;
font-weight:500;
}


/* COPYRIGHT */

.footer-bottom{
border-top:1px solid #444;
margin-top:30px;
padding-top:15px;
text-align:center;
color:#aaa;
}


/* MOBILE */

@media(max-width:768px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}