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

body {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-images div {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.banner-images div.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1.made-canvas {
    font-family: 'MadeCanvas', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 300;
    max-width: 375px;
}

.instagram-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.lucide {
    width: 2rem;
    height: 2rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 2px;
    padding: 0px 10px;
}

.contact-link:hover {
    opacity: 0.8;
}

@media (max-width: 600px) {
    h1{
        font-size: 2rem;
    }
    .subtitle{
        font-size: 1rem;
    }
    .contact-line{
        display: block;
    }
    .contact-link{
        display: block;
    }
}