* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #1C1C1C; color: #F4F4F4; scroll-behavior: smooth; }

.hero-center-modern {
    width: 100%;
    min-height: 100vh;
    /* Changed 'cover' to 'contain' to stop the image from cropping */
    background: url('assets/background.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.nav-centered { display: flex; align-items: center; justify-content: center; gap: 100px; width: 100%; padding: 20px; }
.nav-centered a { color: #fff; text-decoration: none; text-transform: uppercase; font-size: 2.0rem; font-weight: 700; letter-spacing: 3px; }
.nav-centered a:hover{color: #A00D0D;}
.nav-centered u {text-underline-offset: 6px; text-decoration-color: #D31212; text-decoration-thickness: 3px;}
.nav-center-logo img { width: 200px; height: 200px; border-radius: 50%; vertical-align: middle; }

.content-center-modern { margin: auto; text-align: center; max-width: 800px; padding: 0 20px; }
.impact-title { font-size: 5.5rem; font-weight: 900; letter-spacing: -2px; line-height: 0.9; margin-bottom: 20px; }
.modern-subtitle { font-size: 1.1rem; color: #aaa; max-width: 500px; margin: 0 auto 40px auto; line-height: 1.6; }

.btn-solid-red { display: inline-block; padding: 16px 45px; background: #D31212; color: #ffffff; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; transition: 0.3s; width: 100%; border: none; cursor: pointer;}
.btn-solid-red:hover { background: #A00D0D; }

.modern-shop { max-width: 1200px; margin: 0 auto; padding: 100px 20px; }
.shop-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; border-bottom: 1px solid #222; padding-bottom: 20px; }
.shop-header h2 { font-size: 2rem; font-weight: 900; text-transform: uppercase; }
.view-all { color: #aaa; text-decoration: none; font-size: 0.9rem; }
.view-all:hover { color: #fff; }

.modern-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { text-align: left; }
.pic { background: #161616; height: 280px; display: flex; align-items: center; justify-content: center; font-size: 4rem; margin-bottom: 15px; }
.card h4 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 700; }
.card p { color: #888; margin-bottom: 15px; }
.pic img {width: 100%; height: 100%; object-fit: contain; padding: 20px;}

/* --- Booking Section Layout --- */
.booking-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

/* --- The Calendar Placeholder --- */
.calendar-panel {
    background: #161616; 
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #888;
}

.calendar-mockup {
    text-align: center;
}

/* --- The Form Styling --- */
.form-panel {
    background: #161616;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: #F4F4F4;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-group input, 
.input-group select {
    background: #1C1C1C; 
    border: 1px solid #444;
    color: #F4F4F4;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    outline: none;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: #D31212; 
}


/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {

    .hero-center-modern {
        background: url('assets/background-mobile.png') no-repeat center center/cover;
    }

    /* Fixed Navigation for Mobile */
    .nav-centered { 
        flex-direction: column;
        gap: 15px;
        background-color: #000000;
        padding: 25px 0;
        width: 100%;
        z-index: 10;
    }
    .nav-centered a {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .impact-title { font-size: 3.2rem; }
    .shop-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    
    .booking-grid {
        grid-template-columns: 1fr; /* Stacks the booking form and calendar into one column */
    }
}