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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Lora', serif;
    background-image: url('assets/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Dark overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* ===== Construction Banner ===== */
.construction-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #2d4a2d, #1a3a1a);
    color: #c8dcc8;
    padding: 0.6rem;
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.construction-banner span:first-child {
    font-size: 1.1rem;
}

/* ===== Container ===== */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    position: relative;
    z-index: 1;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    max-width: 500px;
    margin-top: -30px;
}

/* Logo */
.logo-container {
    margin-bottom: 0;
}

.logo {
    max-width: 500%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 0;
    backdrop-filter: blur(5px);
}

.coming-soon span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
}

/* Founded Year */
.founded {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-top: 0;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .logo {
        max-height: 300px;
    }
    
    .coming-soon {
        padding: 0.6rem 1.5rem;
    }
    
    .coming-soon span {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .construction-banner {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ===== Credits Footer ===== */
.credits {
    position: fixed;
    bottom: 10px;
    right: 15px;
    text-align: right;
    padding: 0.8rem;
    z-index: 100;
}

.credits p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.credits strong {
    color: rgba(255, 255, 255, 0.8);
}