:root {
    --pink: #FF00BF;
    --cyan: #00A0DF;
    --yellow: #FFD700;
    --orange: #FF8C00;
    --white: #FFFFFF;
    --title-yellow: #FFDA11;
}

@font-face {
    font-family: 'Bokis';
    src: url('../fonts/Bokis-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Section 1: Header Image */
.header-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.desktop-header {
    width: 100%;
    height: auto;
    display: block;
}

/* .header-section img {
    width: 100%;
    height: auto;
    display: block;
} */

.mobile-header {
    display: none;
    width: 100%;
    height: auto;
}

/* Show mobile image on small screens */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }
}

/* Section 2: Blue Section with Logo */
.intro-section {
    background-color: var(--cyan);
    padding: 80px 20px;
    position: relative;
    overflow: visible;
}

/* Decorative geometric elements */
/* .intro-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 15px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
} */

/* .intro-section::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
} */

.intro-content {
    max-width: 990px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container img {
    width: 500px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: pulse 3s ease-in-out infinite;
}

.section2-widget {
    position: absolute;
    right: 0;
    top: 62%;
    width: 122px;
    height: auto;
    z-index: 2;
    display: none;
}

@media (min-width: 1400px) {
    .section2-widget {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1399px) {
    .section2-widget {
        display: block;
        width: 100px;
        height: auto;
        top: 69%;
        /* bottom: -54px; */
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.description-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

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

.bottom-line {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 26px;
    color: var(--white);
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    animation: fadeIn 1.4s ease-out 0.6s backwards;
}

/* Mobile Styles for Section 2 */
@media (max-width: 768px) {
    .intro-section {
        padding: 30px 20px;
    }
    
    .logo-container img {
        width: 340px;
    }
    
    .description-text {
        font-size: 20px;
        line-height: 1.6;
    }
    
    .bottom-line {
        font-size: 26px;
    }
}