:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #333333;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 90%;
    animation: fadeIn 1.5s ease-out;
}

.text-content {
    margin-bottom: 4rem;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-text {
    position: relative;
    display: inline-block;
    padding: 1rem 0;
}

.hero-text .quote {
    font-size: 3.5rem;
    font-weight: 300;
    position: absolute;
    opacity: 0.8;
}

.hero-text .quote:first-child {
    left: -2.5rem;
    top: -0.5rem;
}

.hero-text .quote:last-child {
    right: -2.5rem;
    bottom: -1rem;
}

.top-line {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.brand-name {
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.bottom-line {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#main-logo {
    max-width: 450px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.instagram-link {
    color: var(--text-color);
    transition: all 0.3s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.instagram-link svg {
    width: 38px;
    height: 38px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Responsive */
@media (max-width: 768px) {
    .tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .top-line,
    .bottom-line {
        font-size: 1.3rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .hero-text .quote {
        font-size: 2rem;
    }

    .hero-text .quote:first-child {
        left: -1.5rem;
    }

    .hero-text .quote:last-child {
        right: -1.5rem;
    }

    #main-logo {
        max-width: 280px;
    }
}