:root {
    --bg-dark: #050505;
    --accent: #FF8C42;
    --text-white: #ffffff;
    --text-gray: #888888;
    --glass: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* --- Loader --- */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-logo {
    width: 350px;
    filter: none !important;
    opacity: 0;
    animation: fadeInOut 2.5s ease-in-out forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.02); }
}

/* --- Background Visuals --- */
.bg-texture {
    position: fixed;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.ambient-glow {
    position: fixed;
    top: 50%; left: 50%;
    width: 80vw; height: 80vw;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* --- Centered Branding --- */
header {
    position: absolute;
    top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.main-logo {
    width: 350px; /* Large professional size */
    height: auto;
    filter: none !important; /* No shadows/glow */
    transition: transform 0.8s ease;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 150px; /* Space for large logo */
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.main-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.subtitle {
    color: var(--accent);
    letter-spacing: 10px;
    font-size: 11px;
    margin-bottom: 25px;
    display: block;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    margin-bottom: 15px;
}

.tagline {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- Countdown --- */
.countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

.time-block {
    background: var(--glass);
    padding: 20px;
    min-width: 110px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: 0.4s;
}

.time-block:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.time-block span {
    display: block;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
}

.time-block label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Newsletter --- */
.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 25px;
    color: white;
    width: 70%;
    outline: none;
}

.newsletter-form button {
    background: var(--accent);
    border: none;
    color: white;
    padding: 0 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: white;
    color: black;
}

/* --- Footer --- */
footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.social-links a {
    color: white;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: 0.3s;
    opacity: 0.6;
}

.social-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.copyright {
    font-size: 9px;
    color: #444;
    margin-top: 20px;
    letter-spacing: 3px;
}

/* --- WhatsApp --- */
.whatsapp-container {
    position: fixed;
    bottom: 30px; right: 30px;
    display: flex; align-items: center;
    z-index: 200;
}

.whatsapp-btn {
    width: 55px; height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: white; font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-popup {
    background: rgba(0,0,0,0.8);
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 15px;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

.whatsapp-container:hover .whatsapp-popup {
    opacity: 1; transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .main-logo { width: 300px; }
    header { top: 40px; }
    .hero { padding-top: 100px; }
    .time-block { min-width: 80px; padding: 15px; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input, .newsletter-form button { width: 100%; height: 55px; }
}