* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

/* Main Container */
/* Kế thừa các style chung từ base.css */

.main-container {
    padding: 60px 20px 40px; 
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    min-height: calc(100vh - 230px); 
}

#booking-section {
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

#booking-section h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 2.8rem;
}

#booking-section p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

#booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 1.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.6rem;
    box-sizing: border-box; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b253e1;
    box-shadow: 0 0 5px rgba(178, 83, 225, 0.5);
}

.form-group textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    background-image: linear-gradient(to right, #fe2389, #b253e1);
    color: var(--white-color);
    font-weight: 500;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(254, 35, 137, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(254, 35, 137, 0.6);
}

#booking-form .btn {
    width: 100%;
}

.booking-message {
    text-align: center;
    padding: 30px;
    border: 1px dashed #ff6b6b;
    border-radius: 8px;
    background-color: #fff5f5;
}

/* Ẩn nội dung theo mặc định, JS sẽ điều khiển hiển thị */
#booking-content,
#login-required-message {
    display: none;
}


/* Footer */
.footer {
    background-color: #222;
    color: var(--white-color);
    padding: 50px 20px 20px;
    font-size: 1.2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
    border-radius: 5px;
}

.footer-column p {
    line-height: 1.7;
    text-align: left;
    color: #ccc;
    margin: 0;
    font-size: 1.4rem;
}

.footer-column ul {
    line-height: 1.7;
}

.footer-column ul li a {
    display: inline-block;
    font-size: 1.4rem;
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fe2389;
    transform: translateX(5px);
}

.footer-column ul li {
    font-size: 1.4rem;
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li i{
    font-size: 1.4rem;
    margin-right: 6px;
}   

.social-icons a {
    color: #ccc;
    font-size: 1.6rem;
    margin-right: 5px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
    padding: 5px 10px;
}

.social-icons a:hover {
    color: #fe2389;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 1.4rem;
    color: #888;
}