/**
 * CSS Resetter
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #161616;
    color: #FFFFFF;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated background lights */
.background-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.light1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.light2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 99, 71, 0.25) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.light3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 84, 229, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

/* Main container */
.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Logo and brand */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.logo img{
    width: 100%;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #FFCC00;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.125rem;
    color: #FFCC00;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* color: #2A54E5; */
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Main message */
.message-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #FFCC00;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: pulse 5s ease-in-out infinite;
}

.description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #EBEBEB;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Contact section */
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: #FFCC00;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 204, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #FFFFFF;
    min-width: 150px;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 204, 0, 0.2);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: transparent; /* Remove background for FontAwesome icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFCC00; /* Change color to match theme */
}

.contact-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #EBEBEB;
    font-size: 0.875rem;
}

.contact-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    /* color: #2A54E5; */
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 1rem;
    color: #EBEBEB;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 1s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% {  opacity: 0.7; }
    50% {  opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 0.875rem;
    }

    .coming-soon {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .contact-title {
        font-size: 1.25rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        min-width: 100%;
    }
}
