@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Libertinus+Serif:wght@400;600;700&display=swap');

.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}


:root {
    --primary-blue: #2442FF;
    --primary-blue-dark: #0026e6;
    --dark-blue: #0a1527;
    --darker-blue: #060d1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #111827;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #2442FF;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    
}

/* Header and Navigation */
.navbar {
   background-color:#2442FF;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Smooth transition for transform and opacity */
}

.navbar.hidden {
    transform: translateY(-100%); /* Slide navbar up to hide */
    opacity: 0; /* Fade out for better UX */
    visibility: hidden; /* Ensure it's not clickable when hidden */
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
   
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
     font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 1 rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family:Georgia, 'Times New Roman', Times, serif;
   
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-family:Georgia, 'Times New Roman', Times, serif;
}
.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    background-image: url(../images/mag3.png);
    height: 100vh;
    width: 100%;
    position: relative; /* Reference for absolute positioning */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0; /* Remove padding to maximize space for absolute positioning */
}

.hero-content {
    position: static; /* Remove flex for absolute positioning */
    width: 100%;
    max-width: 1280px;
    margin: 0 auto; /* Center content container */
    font-family: 'Courier New', Courier, monospace;
}


.hero-title {
   font-family: 'Roboto', sans-serif;
    padding: 20px;
    position: absolute;
    top: 0 !important;
    right: 10rem !important;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-top {
    font-size: 3rem;
    margin-bottom: 0.1rem;
}

.hero-title-bottom {
    font-size: 3rem;
}

.hero-subtitle {
    padding: 20px;
    position: absolute;
    top: 7.5rem !important; /* Moved from .hero-text */
    right: 5rem !important; /* Aligned with .hero-title */
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.4;
    max-width: 40%; /* Adjusted to match .hero-text */
    text-align: center; /* Center subtitle text */
    z-index: 999; /* Below .hero-title */
}
.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px; /* Reduced size */
    height: auto;
    z-index: 998;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        position: static; /* Revert to normal flow for mobile */
        transform: none; /* Remove transform */
        text-align: center; /* Center text for mobile */
        max-width: 100%; /* Full width */
        padding: 1rem; /* Add padding for spacing */
    }

    .hero-title {
        font-size: 2.5rem; /* Smaller title */
    }

    .hero-subtitle {
        font-size: 1.2rem; /* Smaller subtitle */
        max-width: 100%; /* Full width */
        margin-left: 0; /* Remove right alignment */
    }
}






/* Section Styles */
  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .section {
        padding: 4rem 2rem;
        margin: 2rem;
        border-radius: 20px;
       
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .section-container {
        display: flex;
        max-width: 1280px;
        margin: 0 auto;
        gap: 3rem;
        align-items: center;
    }

    .section-content {
        flex: 1;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 2.5rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        animation: fadeInUp 1s ease-out;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: #000000;
        position: relative;
    }

    .section-title .blue {
        color: var(--primary-blue);
    }

    .section-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background: var(--primary-blue);
        margin: 0.5rem auto 0;
        border-radius: 2px;
    }

    .section-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #000000;
        text-align: center;
    }

    .section-description strong {
        color: var(--primary-blue);
        font-weight: 700;
    }

    .section-highlight {
        font-size: 1.125rem;
        line-height: 1.6;
        color: #000000;
        padding: 1.5rem;
        background: rgba(59, 130, 246, 0.1);
        border-left: 4px solid var(--primary-blue);
        border-radius: 8px;
        margin: 1.5rem 0;
        text-align: left;
        animation: fadeInUp 1s ease-out 0.2s;
        animation-fill-mode: both;
    }

.social-links {
    display: flex;
    flex-direction: column; /* Stack links vertically */
    gap: 1rem;
    align-items: center; /* Center items */
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: left;
    gap: 0.5rem; /* Matches your .nav-link gap */
    font-size: 1.125rem; /* Matches your .nav-link font size */
    font-family: 'Roboto', sans-serif; /* Matches your .nav-link font */
    justify-content: left;
    font-weight: 600; /* Matches your .nav-link font weight */
    text-decoration: none; /* Matches your .nav-link */
    transition: all 0.2s ease; /* Matches your .nav-link transition */
}

.social-link i {
    font-size: 1.25rem; /* Slightly larger icons for visibility */
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-link.youtube {
    color: #FF0000; /* YouTube red */
}

.social-link.youtube:hover {
    color: #FF3333; /* Lighter red on hover */
}

.social-link.discord {
    color: #5865F2; /* Discord blurple */
}

.social-link.discord:hover {
    color: #7289DA; /* Lighter blurple on hover */
}

.social-link:hover i {
    transform: scale(1.1); /* Slight zoom on icon hover */
}

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

    @media (max-width: 768px) {
        .section {
            padding: 2rem 1rem;
            margin: 1rem;
        }

        .section-container {
            flex-direction: column;
            gap: 2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-description,
        .section-highlight {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }

        .section-description,
        .section-highlight {
            font-size: 0.95rem;
        }

        .section-content {
            padding: 1.5rem;
        }
    }



/* Footer */
.footer {
    
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}


.footer-bottom{
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem; /* Adjusted for smaller screens */
    }

    .hero-img {
        width: 350px;
        height: 350px;
    }

    .section-container {
        flex-direction: column;
    }

    .section-image {
        order: 2;
    }

    .section-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .search-container {
        display: none;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link span {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

     .hero-text {
        position: static; /* Revert to normal flow for mobile */
        transform: none; /* Remove transform */
        text-align: center; /* Center text for mobile */
        max-width: 100%; /* Full width */
        padding: 1rem; /* Add padding for spacing */
    }

    .hero-title {
        font-size: 2.5rem; /* Smaller title */
    }

     .hero-subtitle {
        font-size: 1.2rem; /* Smaller subtitle */
        max-width: 100%; /* Full width */
        margin-left: 0; /* Remove right alignment */
    }

    .social-links {
        justify-content: center;
    }

    .hero-img {
        width: 300px;
        height: 300px;
    }

    .section {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2rem; /* Smaller for very small screens */
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-img {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .offer-title,
    .choose-title {
        font-size: 1.5rem;
    }
}