/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&family=Titillium+Web:wght@300;400;600;700;900&display=swap');

:root {
    --primary-font: 'Montserrat', sans-serif;
    --headline-font: 'Titillium Web', sans-serif;
    --text-color: #ffffff;
    --accent-color: #ff1a1a;
    --accent-light: #ff4444;
    --accent-dark: #cc0000;
    --bg-overlay: rgba(0, 0, 0, 0.6);
}

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

body,
html {
    height: 100%;
    font-family: var(--primary-font);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Background - Dark with aggressive red accent */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 50% 120%, rgba(255, 26, 26, 0.25) 0%, rgba(0, 0, 0, 0) 55%),
                radial-gradient(ellipse at 80% 0%, rgba(255, 68, 68, 0.15) 0%, rgba(0, 0, 0, 0) 45%),
                radial-gradient(ellipse at 20% 30%, rgba(255, 26, 26, 0.08) 0%, rgba(0, 0, 0, 0) 40%),
                linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.logo {
    order: 1;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.social-icons {
    display: flex;
    gap: 20px;
    order: 2;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid rgba(255, 26, 26, 0.3);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.15);
    border-color: rgba(255, 26, 26, 0.7);
    box-shadow: 0 0 12px rgba(255, 26, 26, 0.4);
}

.social-icons img {
    width: 110%;
    height: 110%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: brightness(1.1);
}

/* Hero Section — pushed down slightly on desktop */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px 0 20px;
}

h1.headline {
    font-family: var(--headline-font);
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(255, 26, 26, 0.5), 0 0 80px rgba(255, 26, 26, 0.2);
    background: linear-gradient(135deg, #ff1a1a 0%, #ff4444 40%, #ffffff 50%, #ff4444 60%, #ff1a1a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headline-shine 4s ease-in-out infinite;
}

@keyframes headline-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-family: var(--primary-font);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.coming-soon-text {
    font-family: var(--headline-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-color);
    text-shadow: 0 0 40px rgba(255, 26, 26, 0.5), 0 0 80px rgba(255, 26, 26, 0.2);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 26, 26, 0.4), 0 0 60px rgba(255, 26, 26, 0.15);
    }
    50% {
        text-shadow: 0 0 50px rgba(255, 26, 26, 0.7), 0 0 100px rgba(255, 26, 26, 0.3), 0 0 150px rgba(255, 26, 26, 0.1);
    }
}

.coming-soon-sub {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 2px;
}

/* Decorative line under coming soon */
.coming-soon::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin-top: 10px;
    animation: line-pulse 2.5s ease-in-out infinite;
}

@keyframes line-pulse {
    0%, 100% { opacity: 0.5; width: 80px; }
    50% { opacity: 1; width: 120px; }
}

/* Footer — transparent to blend with the page background */
footer {
    background: transparent;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Powered By Footer Styling */
.powered-by {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: rgb(161, 161, 170);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 16px 30px;
    margin-top: 40px;
    border-radius: 50px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 26, 26, 0.4);
    box-shadow:
        rgba(255, 26, 26, 0.15) 0px 0px 20px,
        rgba(255, 26, 26, 0.08) 0px 0px 10px inset;
    transition: all 0.3s ease;
}

.powered-by span {
    font-size: 0.85rem;
}

.brevibot-logo {
    width: 106px;
    height: 50px;
    display: inline-block;
    filter: brightness(1) drop-shadow(rgba(255, 255, 255, 0.2) 0px 0px 2px);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.powered-by:hover {
    border-color: rgba(255, 26, 26, 0.9);
    box-shadow:
        rgba(255, 26, 26, 0.3) 0px 0px 30px,
        rgba(255, 26, 26, 0.15) 0px 0px 15px inset;
    transform: translateY(-2px);
}

.powered-by:hover .brevibot-logo {
    filter: brightness(1.5) drop-shadow(rgba(255, 26, 26, 0.6) 0px 0px 5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 15px;
        position: relative;
        flex-direction: column;
        gap: 12px;
    }

    .social-icons {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 16px;
        order: 0;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
    }

    .logo {
        order: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo img {
        max-width: 140px;
    }

    .hero {
        height: calc(100vh - 120px);
        padding: 0 20px;
        margin-top: 0;
    }

    h1.headline {
        font-size: 3rem;
        letter-spacing: 5px;
        margin-bottom: 6px;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .coming-soon {
        gap: 12px;
    }

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

    .coming-soon-sub {
        font-size: 0.85rem;
    }

    footer {
        padding: 25px 15px;
    }

    .powered-by {
        margin-top: 20px;
        padding: 12px 22px;
    }

    .copyright .rights-text {
        display: block;
    }
}
