/* ===== BASIC SETUP ===== */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: white;
    background: black;
    overflow: hidden;
}

/* ===== BACKGROUND ZOOM ANIMATION ===== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    animation: zoomEffect 20s infinite alternate ease-in-out;
}

.background-animation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

/* ===== HERO SECTION CONTENT ===== */
.hero {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 40px 0 25px 0;
    box-sizing: border-box;
}

/* ===== ENTRANCE ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 1.2s forwards ease-out;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LOGO & FOUNDERS ===== */
.brand-header {
    margin-bottom: 0;
}

.logo {
    max-width: 380px;
    width: 65%;
    margin-bottom: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Updated color for better contrast and branding */
.founders {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00d4ff; /* Vibrant Electric Blue */
    margin-top: 5px;
}

.founders a {
    color: #00d4ff; /* Matches the text color */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.founders a:hover { 
    border-bottom: 1px solid #00d4ff; 
    opacity: 0.8;
}

/* ===== LINKS ===== */
.links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.links i { margin-right: 12px; width: 22px; }

.links a:hover {
    opacity: 0.6;
    transform: scale(1.03);
}

/* ===== CONTACT SECTION ===== */
.contact {
    max-width: 480px;
    padding: 0 20px;
}

.contact h3 {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: 0.8;
    font-style: italic;
}

.email-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    transition: 0.3s;
}

.email-link:hover { opacity: 0.7; letter-spacing: 1px; }

/* ===== FOOTER ===== */
.footer {
    font-size: 10px;
    line-height: 1.4;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer p { margin: 2px 0; }

/* MOBILE RESPONSIVE FIX */
@media (max-height: 750px) {
    body, html { overflow-y: auto; }
    .hero { height: auto; min-height: 100vh; }
    .background-animation { position: absolute; }
}