* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 23, 23, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header nav a {
    margin: 0 20px;
    color: #ece6e6;
    text-decoration: none;
    font-size: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: #ff6f61;
    color: #fff;
}

/* Main Section */
main {
    padding: 2rem;
    text-align: center;
}
.booking-image {
    width: 200px;
    height: 180px;
    margin-top: 7rem;
    margin-bottom: -3rem;
    margin-right: -10rem;
    margin-left: -50rem;
}
/* Title Styling */
.time-selection-title {
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif;
    margin-top: -3.5rem;
    margin-bottom: 3rem;
    margin-right: -4rem;
    text-transform: uppercase;
    color: #eeeeee;
}

/* Date Boxes */
.date-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.date-box {
    background-color: #dccece; /* Light background for dates */
    color: #000000; 
    font-size: 18px;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.date-box:hover {
    background-color:#948c8c;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.date-box.selected {
    background-color: #373333;
    color: #ffffff;
    font-weight: bold;
}

/* Time Slots */
.time-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 15px; /* Space between time boxes */
    max-width: 600px; /* Adjust based on your needs */
    margin-left:390px;
    padding: 0 20px;
}

.time-box {
    background-color:#dccece;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    width: 333px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.time-box:hover {
    background-color: #948c8c;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.time-box.selected {
    background-color: #373333;
    color: #ffffff;
    font-weight: bold;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 11px;
    background-color: rgba(24, 23, 23, 0.7);
    font-size: 14px;
}

/* Hero Section (Optional Integration) */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #004c99 50%, #f9fafb 50%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6f61;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .hero-button {
    font-size: 1rem;
    padding: 10px 20px;
    color: white;
    background-color: #ff6f61;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero .hero-button:hover {
    background-color: #e65b54;
}

