/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}

/* Header */
header {
    background: #ff4f9a;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 22px;
    font-weight: bold;
}

header nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('images/hostel-banner.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text h1 {
    color: #fff;
    font-size: 40px;
}

.hero-text p {
    color: #fff;
    font-size: 20px;
}

.btn {
    background: #ff4f9a;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}

/* Sections */
.section {
    padding: 60px 10%;
    text-align: center;
}

.section.light {
    background: #fff0f6;
}

h2 {
    color: #ff4f9a;
    font-size: 30px;
}

/* Rooms */
.room-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.room-box {
    width: 30%;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
}

.room-box img {
    width: 100%;
    border-radius: 8px;
}

/* Amenities */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.a-box {
    background: #ffb3d9;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
}

/* Contact */
.contact-box {
    font-size: 18px;
    line-height: 30px;
}

footer {
    background: #ff4f9a;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
/* Slider Wrapper */
.slider {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

/* Slides Area */
.slides {
    width: 500%;
    height: 100%;
    display: flex;
}

/* Hide Radio Buttons */
.slides input {
    display: none;
}

/* Individual Slide */
.slide {
    width: 20%;
    transition: 0.6s;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Manual Navigation */
.manual-navigation {
    position: absolute;
    width: 100%;
    bottom: 20px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid #fff;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
    margin: 0 6px;
}

.manual-btn:hover {
    background: #ff4f9a;
}

/* Manual Navigation Logic */
#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -20%;
}

#radio3:checked ~ .first {
    margin-left: -40%;
}

/* Auto Navigation */
.auto-navigation {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    bottom: 60px;
}

.auto-navigation div {
    border: 2px solid #fff;
    padding: 4px;
    border-radius: 50%;
    margin: 0 5px;
}