@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #ffffff;
    --accent-color: #e0b0ff;
    /* Subtle lavender accent */
    --text-color: #ffffff;
    --olive-overlay: rgba(60, 71, 39, 0.8);
    /* Olive Green 30% */
    --text-color: #ffffff;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/hero.webp') no-repeat center center/cover;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--olive-overlay);
}

.content-card {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
    width: 220px;
    margin-bottom: 3rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1;
    width: 100%;
}

.status {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.instagram-tag,
.contact-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.instagram-tag:hover,
.contact-tag:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.instagram-tag svg,
.contact-tag svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 2.5rem;
    }
}

.footer-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.8;
}

.url {
    font-weight: 600;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    font-weight: 300;
    margin-top: 0.8rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .content-card {
        padding: 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .status {
        font-size: 1rem;
        letter-spacing: 0.3rem;
    }
}