/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;700&family=Roboto:wght@400;500&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* Default font for subtext */
    margin: 0;
    color: #fff;
    background-color: #fff; /* Ensure a clean background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between; /* Separates logo and nav links */
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: flex;
    justify-content: flex-end; /* Align links to the right */
    gap: 20px; /* Adds spacing between links */
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative; /* Ensures the black box is positioned relative to the hero */
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/images/hscq30b10-egayc.png') center/cover;
    color: #fff;
}

.hero h1 {
    font-family: 'Exo 2', sans-serif; /* Headings use Exo 2 */
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cta-button {
    font-family: 'Roboto', sans-serif;
    padding: 20px 40px;
    background: linear-gradient(to right, #1DA1F2, #22D615);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 20px;
}

.cta-button:hover {
    background: linear-gradient(to right, #22D615, #1DA1F2);
}

/* Floating Black Box */
.floating-box {
    position: absolute; /* Ties the black box to the hero section */
    bottom: 50px; /* Adjusted for better hovering */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    padding: 25px 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Subtle shadow */
}

.floating-box h2 {
    font-family: 'Exo 2', sans-serif; /* Headings use Exo 2 */
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.floating-box p {
    font-family: 'Roboto', sans-serif; /* Subtext uses Roboto */
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* General Spacing */
section {
    margin-bottom: 80px; /* Add space between sections */
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}