:root {
    --primary-color: #fff;
    --accent-glow: rgba(255, 204, 153, 0.4);
    --bg-overlay: rgba(10, 8, 8, 0.6);
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: var(--primary-color);
    overflow: hidden;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient giving dark on the left for text reading, transparent on the right to show the door/bridge */
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-left: 10%;
}

.text-container {
    max-width: 600px;
    animation: fadeIn 2s ease-out forwards;
    opacity: 0;
}

.brand {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #ffcc99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 204, 153, 0.4);
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    display: inline-block;
}

.tagline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: #ffcc99;
    transition: width 0.4s ease;
}

.text-container:hover .tagline::after {
    width: 100%;
}

.contact-email {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-email:hover {
    background: rgba(255, 204, 153, 0.15);
    border-color: rgba(255, 204, 153, 0.5);
    box-shadow: 0 0 25px rgba(255, 204, 153, 0.3);
    transform: translateY(-2px);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        padding-left: 5%;
        justify-content: center;
        text-align: center;
    }
    
    .overlay {
        /* Make overall background darker to read text effectively on smaller screens */
        background: rgba(0, 0, 0, 0.6);
    }
    
    .brand {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
