*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f4f4;
}

header{
    background:#0d3b66;
    color:white;
    padding:20px;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
}

.hero{
    height:80vh;
    background:url('https://images.unsplash.com/photo-1566073771259-6a8506099945') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}

.hero h1{
    font-size:50px;
}

.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#f4a261;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

.container{
    width:80%;
    margin:auto;
    padding:40px 0;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 5px rgba(0,0,0,0.2);
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

form{
    background:white;
    padding:30px;
    border-radius:10px;
}

input, select{
    width:100%;
    padding:10px;
    margin:10px 0;
}

button{
    background:#0d3b66;
    color:white;
    border:none;
    padding:12px;
    cursor:pointer;
    width:100%;
}

footer{
    background:#0d3b66;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:30px;
}
.container h2{
    color:#b03060;
    margin-bottom:15px;
}

.card{
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card-content h3{
    color:#b03060;
}

footer{
    background:#b03060;
}

body{
    background:#fffafc;
}

header{
    background:#7a1f3d;
}

.logo{
    color:white;
}

.hero{
    height:90vh;
    background:
    linear-gradient(rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:65px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.btn{
    background:#c2185b;
    color:white;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.btn:hover{
    background:#a3154b;
}

.container h2{
    color:#7a1f3d;
    text-align:center;
    margin-bottom:20px;
}

.card{
    border-radius:15px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card-content h3{
    color:#c2185b;
}

footer{
    background:#7a1f3d;
    color:white;
    text-align:center;
    padding:20px;
}
/* Registration Page */

.register-section{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
    linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),
    url("https://images.unsplash.com/photo-1512918728675-ed5a9ecdebfd?auto=format&fit=crop&w=1400&q=80");

    background-size:cover;
    background-position:center;
    padding:50px 20px;
}

.register-box{
    width:450px;
    background:rgba(255,255,255,0.95);
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    text-align:center;
}

.register-box h1{
    color:#7a1f3d;
    margin-bottom:10px;
}

.register-box p{
    color:#555;
    margin-bottom:25px;
    line-height:1.6;
}

.register-box input{
    width:100%;
    padding:14px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.register-box input:focus{
    outline:none;
    border-color:#c2185b;
}

.register-box button{
    width:100%;
    padding:14px;
    background:#c2185b;
    color:white;
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    margin-top:10px;
}

.register-box button:hover{
    background:#a3154b;
}

.login-link{
    margin-top:20px;
    color:#555;
}

.login-link a{
    color:#c2185b;
    text-decoration:none;
    font-weight:bold;
}

.login-link a:hover{
    text-decoration:underline;
}
/* BOOKING PAGE */

.booking-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 20px;

    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
}

.booking-box{
    width:600px;
    background:rgba(255,255,255,0.95);
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.booking-box h1{
    text-align:center;
    color:#7a1f3d;
    margin-bottom:15px;
}

.booking-box p{
    text-align:center;
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.booking-box label{
    display:block;
    margin-top:12px;
    margin-bottom:5px;
    color:#7a1f3d;
    font-weight:bold;
}

.booking-box input,
.booking-box select,
.booking-box textarea{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.booking-box input:focus,
.booking-box select:focus,
.booking-box textarea:focus{
    outline:none;
    border-color:#c2185b;
}

.booking-box textarea{
    resize:none;
}

.booking-box button{
    width:100%;
    padding:15px;
    background:#c2185b;
    color:white;
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.booking-box button:hover{
    background:#a3154b;
    transform:translateY(-2px);
}