:root {
    --primary-red: #E60000;
    --dark-red: #B30000;
    --black: #111111;
    --dark-grey: #333333;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: var(--light-grey);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent so the background logo is fully visible but text remains readable */
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
}

.coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.info-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    /* The red glowing line */
    border: 3px solid var(--primary-red);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite, glowingBorder 2.5s infinite;
}

@keyframes glowingBorder {
    0% { box-shadow: 0 0 10px rgba(230, 0, 0, 0.5), inset 0 0 5px rgba(230, 0, 0, 0.2); }
    50% { box-shadow: 0 0 30px rgba(230, 0, 0, 1), inset 0 0 15px rgba(230, 0, 0, 0.6); }
    100% { box-shadow: 0 0 10px rgba(230, 0, 0, 0.5), inset 0 0 5px rgba(230, 0, 0, 0.2); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.info-card:hover {
    animation-play-state: paused;
}

.info-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.phone-number a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: var(--dark-red);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 2rem 0;
}

.addon-section {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.addon-section h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.addon-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.addon-price {
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.addon-details {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Contact Tab Floating Button */
.contact-tab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease;
}

.contact-tab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(230, 0, 0, 0.4);
    background: var(--dark-red);
}

.tab-icon {
    font-size: 1.3rem;
}

.open-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 5px rgba(230, 0, 0, 0.2); transform: scale(1); }
    50% { text-shadow: 0 0 20px rgba(230, 0, 0, 0.6); transform: scale(1.05); }
    100% { text-shadow: 0 0 5px rgba(230, 0, 0, 0.2); transform: scale(1); }
}

.eyes-container {
    display: flex;
    gap: 8px;
}

.eye {
    width: 32px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid var(--black);
    position: relative;
    overflow: hidden;
    box-shadow: inset -2px -2px 6px rgba(0,0,0,0.2);
}

.pupil {
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--black);
    animation: lookAround 4s infinite alternate cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pupil::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

@keyframes lookAround {
    0% { transform: translate(-50%, -50%); }
    15% { transform: translate(10%, -20%); } 
    30% { transform: translate(10%, -20%); }
    45% { transform: translate(-80%, 20%); } 
    60% { transform: translate(-80%, 20%); }
    75% { transform: translate(-50%, -50%); }
    85% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%); }
}

.address-text {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.address-text a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.address-text a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.map-icon {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-tab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
