.booking {
    padding: 50px 20px;
    background: #ffffff;
    text-align: center;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7fb;
    color:#111;
}

/* NAVBAR */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

nav{
    max-width:1300px;
    margin:auto;
    padding:20px 5%;
}

nav ul{
    display:flex;
    justify-content:center;
    gap:40px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:0.3s;
    position:relative;
}

nav ul li a::after{
    content:'';
    width:0%;
    height:2px;
    background:#00b894;
    position:absolute;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

nav ul li a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    height:55vh;
    background:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1502920917128-1aa500764cbd?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;
    opacity:0.9;
}

/* BOOKING SECTION */

.booking{
    max-width:1200px;
    margin:auto;
    padding:100px 5% 80px;
}

.booking h2{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
}

.booking-container{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:40px;
}

/* FORM */

.booking-form{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.input-group{
    margin-bottom:22px;
}

.input-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.booking-form input,
.booking-form select{
    width:100%;
    padding:16px;
    border:none;
    background:#00b894;
    border-radius:15px;
    font-size:16px;
    outline:none;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.extras{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin:25px 0;
}

.extras label{
    background:#f8fafc;
    padding:15px;
    border-radius:15px;
    cursor:pointer;
    transition:0.3s;
}

.extras label:hover{
    background:#e2e8f0;
}

.booking-form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#00b894,#0984e3);
    color:white;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.booking-form button:hover{
    transform:translateY(-3px);
}

/* SIDE PANEL */

.side-panel{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    background:#00b894;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.info-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.info-card p{
    color:#555;
    line-height:1.7;
}

/* MATCHES */

.matches{
    margin-top:80px;
}

.matches h2{
    margin-bottom:35px;
}

.matches-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.match-card{
    background:#00b894;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.match-card:hover{
    transform:translateY(-10px);
}

.match-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.match-content{
    padding:25px;
}

.match-content h3{
    margin-bottom:10px;
    font-size:24px;
}

.match-content p{
    color:#555;
    margin-bottom:15px;
}

.match{
    display:inline-block;
    background:#dcfce7;
    color:#15803d;
    padding:8px 16px;
    border-radius:30px;
    font-weight:600;
}

/* FOOTER */

.footer{
    background:#111827;
    color:white;
    margin-top:80px;
    padding:70px 8% 25px;
    width:1000px;
    height: 900px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer h3{
    margin-bottom:20px;
}

.footer p,
.footer a{
    color:#cbd5e1;
    text-decoration:none;
    line-height:1.8;
}

.footer a:hover{
    color:#046451;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:20px;
    color:#94a3b8;
}

/* RESPONSIVE */

@media(max-width:950px){

    .booking-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .row{
        grid-template-columns:1fr;
    }

    nav ul{
        gap:18px;
        flex-wrap:wrap;
    }

}

.booking form {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    
}

.booking input,
.booking select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}

.dates {
    display: flex;
    gap: 10px;
}

.dates div {
    flex: 1;
    text-align: left;
}

.options {
    display: flex;
    gap: 10px;
}

.options select {
    flex: 1;
}
.extras {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.extras {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.booking button {
    padding: 12px;
    background: #00b894;
    color: black;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.booking button:hover {
    background:  #025e4b;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f9ff;
    color: #333;
}
.footer{
    width:100%;
    padding:60px 8% 25px;
    min-height:200px;
}
.booking input,
.booking select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}
.extras {
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    font-size:14px;
}
.extras{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin:25px 0;
}
header{
    position:fixed;
}
.booking{
    padding-top:140px;
}
.booking button {
    padding: 12px;
    background: #00b894;
    color: black;
}
.booking button {
    padding: 14px;
    background: #00b894;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.booking button:hover {
    background: #025e4b;
    transform: translateY(-2px);
}
