/* Reset CSS */
@import url('https://fonts.googleapis.com/css?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}

/* Base Styles for HTML */
html {
    font-size: 95.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem; /* Adjust scroll behavior */
    scroll-behavior: smooth; /* Smooth scrolling behavior */
}

/* Scrollbar Styles */
html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5rem;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(Images/black-prism-concept-ai-generated.jpg); /* Background image */
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    color: #ff4444; /* Header text color */
    font-size: 24px;
    margin: 0;
}

.header h2 {
    font-size: 36px;
    margin: 10px 0;
    color: whitesmoke; /* Subheader text color */
}

/* Reservation Container */
.reservation-container {
    display: flex;
    background-color: whitesmoke; /* Background color */
    box-shadow: 0 0 10px rgba(248, 247, 247, 0.1); /* Box shadow effect */
}

/* Image Container */
.image-container {
    flex: 1;
    background-image: url('Images/signup.jpg'); /* Background image for image container */
    background-size: cover;
    background-position: center;
}

/* Form Container */
.form-container {
    flex: 1;
    padding: 30px;
}

.form-container h3 {
    margin-top: 0;
}

/* Form Styles */
form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-size: 14px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    grid-column: span 2;
}

.buttons {
    grid-column: span 2;
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.book-button, .cancel-button {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}

.book-button {
    background-color: #ff9999;
    color: white;
    border: none;
    cursor: pointer;
}

.book-button:hover {
    background-color: #ff7777;
}

.cancel-button {
    background-color: transparent;
    color: #333;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}

.cancel-button:hover {
    color: #ff4444;
}

/* Navigation Bar Styles */
.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Icon Styles */
.icon img {
    float: left;
    background-color: rgba(8, 4, 0, 0.8); /* Icon background color */
    border-radius: 50%;
}

/* Logo Styles */
.logo {
    color: white;
    font-size: 30px;
    font-family: 'Caveat', cursive; /* Logo font family */
    padding-left: 10px;
    float: left;
    padding-top: 10px;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
}

/* Animation for Navigation Links */
.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0%;
    background: white;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

/* Footer Styles */
.footer {
    padding: 0px;
    margin: 0;
    box-sizing: border-box;
    background-color: black; /* Footer background color */
    color: white; /* Footer text color */
}

.footer-container {
    width: 100%;
    padding: 60px 30px 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links {
    margin: 30px 0;
    text-align: center;
}

.footer-links h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.9;
    transition: 0.5s;
}

.footer-links ul li a:hover {
    background-color: rgba(8, 4, 0, 0.8); /* Transparent dark brown color for hover effect */
    transition: 0.5s;
}

.footer-links ul li a:hover i {
    color: white;
    transition: 0.5s;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a i {
    font-size: 2em;
    color: black;
    opacity: 0.9;
}

.social-icons a:hover {
    background-color: rgba(8, 4, 0, 0.8); /* Transparent dark brown color for hover effect */
    transition: 0.5s;
}

.social-icons a:hover i {
    color: white;
    transition: 0.5s;
}

@media (max-width: 700px) {
    .footer-links ul {
        flex-direction: column;
    }
    .footer-links ul li {
        width: 100%;
        text-align: center;
    }
}
