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

body {
    font-family: "houschka-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-image: url('assets/Flare_Texture.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    text-align: center;
}

.logo-section {
    padding: 40px 0;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.banner {
    background-image: url('assets/Gold_Texture.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin: 40px 0;
}

.banner-text {
    font-family: houschka-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2.5rem;
    letter-spacing: 8px;
    color: #EEE4C9;
}

.highlight {
    font-family: houschka-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.content {
    padding: 60px 20px;
}

.new-site {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 60px;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.line {
    height: 4px;
    flex: 1;
    min-width: 200px;
    background: #9F6A28;
}

.new-site-text {
    font-weight: 300;
    font-style: normal;
    font-size: 2rem;
    letter-spacing: 15px;
    color: #EEE4C9;
    white-space: nowrap;
}

.coming-soon {
    font-weight: 700;
    font-style: normal;
    font-size: 7rem;
    letter-spacing: 20px;
    color: #9F6A28;
    margin: 40px 0;
}

.date {
    font-weight: 300;
    font-style: normal;
    font-size: 2.5rem;
    letter-spacing: 15px;
    color: #EEE4C9;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .coming-soon {
        font-size: 5rem;
        letter-spacing: 15px;
    }

    .banner-text {
        font-size: 2rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }

    .banner-text {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .line {
        width: 100px;
    }

    .new-site-text {
        font-size: 1.5rem;
        letter-spacing: 10px;
    }

    .coming-soon {
        font-size: 3rem;
        letter-spacing: 10px;
    }

    .date {
        font-size: 1.5rem;
        letter-spacing: 8px;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .line {
        width: 50px;
    }

    .new-site {
        gap: 20px;
    }

    .new-site-text {
        font-size: 1.2rem;
        letter-spacing: 5px;
    }

    .coming-soon {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    .date {
        font-size: 1.2rem;
        letter-spacing: 5px;
    }
}
