/* --- CSS Variables (Theme Colors) --- */
:root {
    --primary-color: #0c989f;
    --secondary-color: #FFD700; /* Gold */
    --rose-color: #E07A5F; /* Rose color for icons */
    --text-color: #333;
    --text-on-gold: #333;
    --bg-color: #f4f7f6;
    --header-height: 70px;
    --footer-height: 50px;
}

/* --- General Reset & Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    overflow: hidden; /* This is the key to a no-scroll page */
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

#page-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- Animation --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Header Styling --- */
.header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    flex-shrink: 0;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}


.logo-image {
    height: 40px; /* Adjust this height to your preference */
    width: auto;  /* This ensures the logo scales proportionally */
    display: block; /* Good practice to prevent extra spacing */
}



.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 1rem 5%;
    gap: 2rem;
    position: relative;
    overflow: hidden;

       min-height: calc(100vh - var(--header-height) - var(--footer-height));
}



/* --- Hero Content Slider --- */
.hero-content {
    overflow: hidden;
    z-index: 2;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.7s ease-in-out, opacity 0.3s ease-in-out;
}

.slider-wrapper.fading {
    opacity: 0;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    padding-right: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
    color: #555;
    min-height: 70px;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--text-on-gold);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.2);
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0, 0.25);
}

/* --- Hero Graphics --- */
.hero-graphics {
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Change the max-width to a larger value */
.hero-svg {
    width: 100%;
    max-width: 950px; /* Example: Increased from 450px */
    height: auto;
    animation: float 4s ease-in-out infinite;
}

.background-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    color: var(--rose-color);
    animation: float 8s ease-in-out infinite alternate;
}

.icon-breakfast { width: 50px; top: 15%; left: 10%; animation-delay: 0s; }
.icon-lunch { width: 60px; bottom: 10%; left: 25%; animation-delay: 2s; }
.icon-dinner { width: 70px; top: 20%; right: 15%; animation-delay: 4s; }
.icon-snack { width: 40px; bottom: 20%; right: 5%; animation-delay: 1s; }
.icon-menu-card { width: 60px; top: 60%; left: 5%; animation-delay: 3s; }

/* --- Modal & Form Styling (can be moved to its own file later) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.modal.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content {
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    clip-path: circle(0% at 0 0);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.1, 1);
}
.modal.active .modal-content {
    clip-path: circle(150% at 0 0);
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    border: none;
    background: none;
}
.modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.form-group {
    margin-bottom: 12px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(12, 152, 159, 0.2);
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex-grow: 1;
}
.inline-options {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    flex-wrap: wrap;
}
.inline-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 400;
}
#height-cm, #height-ft-in {
    display: none;
}
#height-cm.active, #height-ft-in.active {
    display: flex;
}
.form-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin: 15px 0 10px;
}
.terms-group {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}
.terms-group input {
    width: auto;
    flex-shrink: 0;
}
.terms-group label {
    font-weight: 400;
    margin-bottom: 0;
}
.terms-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.terms-group a:hover {
    text-decoration: underline;
}
.submit-button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    background: var(--secondary-color);
    color: var(--text-on-gold);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-button:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* --- GDPR Cookie Notice --- */
#cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 200%);
    background-color: #2c3e50;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
    max-width: 600px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
#cookie-notice.show {
    transform: translate(-50%, 0);
}
.cookie-text {
    font-size: 0.9rem;
}
.cookie-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* --- Footer --- */
.footer {
    height: var(--footer-height);
    text-align: center;
    padding: 15px;
    background-color: #ffffff;
    color: #aaa;
    font-size: 0.9rem;
    z-index: 1;
    flex-shrink: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        grid-row: 2;
    }
    .hero-graphics {
        grid-row: 1;
        margin-bottom: 1rem;
    }
    .hero-svg {
        max-width: 250px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        min-height: 85px;
    }
    .background-icon {
        display: none;
    }
    #cookie-notice {
        width: calc(100% - 20px);
        bottom: 10px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .modal-content {
        padding: 25px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}