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

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 10;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

main {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.content {
    /* text-align: center; */
    color: #fff;
    padding: 20px;
    animation: fadeInUp 1.2s ease-out;
}

@media (min-width: 769px) {
    body {
        background-position: 70% 15%;
    }
    
    header {
        padding: 20px 30px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    main {
        align-items: center;
        justify-content: flex-start;
        padding-left: 5%;
        padding-top: 100px;
    }
    
    .content {
        max-width: 38%;
        text-align: left;
        padding: 35px 40px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        backdrop-filter: blur(8px);
        text-align: center;
    }
    
    .title {
        font-size: clamp(1rem, 4vw, 3.2rem);
        margin-bottom: 15px;
    }
    
    .tagline {
        font-size: clamp(0.85rem, 1.3vw, 1.1rem);
        margin-bottom: 30px;
        letter-spacing: 0.12em;
    }
    
    .coming-soon-badge {
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    main {
        align-items: center;
        padding-bottom: 0;
    }
}

.title {
    font-size: clamp(1rem, 2vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.coming-soon-badge {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.coming-soon-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.coming-soon-badge span {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .logo {
        max-width: 100px;
    }

    .tagline {
        letter-spacing: 0.15em;
        margin-bottom: 40px;
    }

    .coming-soon-badge {
        padding: 12px 35px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 80px;
    }

    .content {
        padding: 15px;
    }

    .coming-soon-badge {
        padding: 10px 25px;
    }
}
