* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
}

body {
    /* High-end commercial kitchen background */
    background: url('https://images.pexels.com/photos/2290753/pexels-photo-2290753.jpeg?auto=compress&cs=tinysrgb&w=1920') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh; /* Ensures it takes at least the full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px; /* Prevents cutting at the top during zoom */
    overflow-y: auto; /* Allows scrolling if zoomed in */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Darker overlay for text readability */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    width: 100%;
}

.logo {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.logo span {
    color: #c0c0c0; /* Silver/Steel color */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: #f39c12; /* Warm Flame/Gold accent */
    margin-bottom: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #ddd;
}

.hero strong {
    color: #fff;
    border-bottom: 1px solid #f39c12;
}

/* Services Teaser */
.services-teaser {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.time-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 4px;
    min-width: 85px;
    border-bottom: 3px solid #f39c12;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.time-box small {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

/* Subscription Form */
.subscribe-form {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

input[type="email"] {
    padding: 15px;
    width: 300px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

button {
    padding: 15px 25px;
    background: #f39c12;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: 0.3s ease;
}

button:hover {
    background: #e67e22;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #777;
}

.socials {
    margin-top: 15px;
}

.socials a {
    color: #f39c12;
    text-decoration: none;
    margin: 0 12px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .logo { font-size: 2.5rem; }
    .subscribe-form { flex-direction: column; gap: 10px; }
    input[type="email"], button { width: 100%; border-radius: 4px; }
}