* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    background: 
        linear-gradient(
            rgba(245, 245, 220, 0.85), /* khaki overlay */
            rgba(245, 245, 220, 0.85)
        ),
        url('elephant_or_buffalo_background.jpg') no-repeat center center/cover;
    color: #000; /* black text for contrast */
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 220, 0.3); /* slight khaki overlay */
    z-index: 1;
}

.container {
    position: relative;
    height: 100%;
    max-width: 900px;
    margin: auto;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.logo {
    max-width: 280px;
    margin: 0 auto 30px;
    border-radius: 14px; /* soft round corners */
    box-shadow: 
        0 18px 45px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(212,175,55,0.25);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    letter-spacing: 2px;
    color: #000; /* black text */
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #000;
}

.divider {
    width: 90px;
    height: 3px;
    background: #d4af37; /* gold divider stays */
    margin: 0 auto 30px;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #000;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.loader span {
    width: 10px;
    height: 10px;
    background: #d4af37;
    border-radius: 50%;
    animation: pulse 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) { animation-delay: -0.32s; }
.loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes pulse {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.contact {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: #000;
}

.contact strong {
    color: #000;
}

footer {
    font-size: 0.8rem;
    color: #000;
}

/* Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 2.4rem;
    }

    .logo {
        max-width: 200px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .container {
        justify-content: flex-start;
        padding-top: 60px;
    }
}
