/* Reset default margins and padding */

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

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    color: #272727;
    text-align: left;
    font-size: 13pt;
}

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

.dotted-divider {
    border: none;               /* 1. Removes the browser's default solid line styling */
    border-top: 3px dotted #86868B; /* 2. Controls thickness, style (dotted), and color */
    width: 100%;                /* 3. Determines how wide the line stretches */
    margin: 40px auto;          /* 4. Centers it and adds 40px of space above and below */
}

h1 {
    text-align: center;
    font-family: 'Inter Tight', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #272727;
    padding-bottom: 10px;
}

h2 {
    text-align: center;
    font-family: 'Inter Tight', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #272727;
    padding-bottom: 10px;
}

/* Full banner wrapper with background layout */
.banner-container {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://picsum.photos') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
}

/* Header styling */
.logo a {
    color: #F5F5F7;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .logo {
        display: none; /* Completely hides the brand logo box */
    }
    
    .main-header {
        justify-content: center; /* Centers your remaining navigation links perfectly */
    }

    .nav-links a {
        /* Reduces side gaps so your 5 menu links stay completely on screen */
        margin-left: 8px;
        margin-right: 8px;
        font-size: 15px;
    }
}

.main-header {
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between; /* Pushes logo left, navigation right */
    align-items: center;
}

.nav-links a {
    color: #F5F5F7;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links {
    white-space: nowrap;
}

.nav-links a:hover {
    color: #40a526; /* Highlight accent color on hover */
}

.signup-btn {
    display: inline-block;        /* Allows padding and positioning */
    background-color: #1D1D1F;    /* Apple Dark Gray background */
    color: #F5F5F7;               /* Off-white text color */
    padding: 14px 28px;           /* Top/Bottom and Left/Right breathing room */
    font-size: 16px;
    font-weight: 600;             /* Semi-bold text styling */
    text-decoration: none;        /* Removes default link underline */
    border-radius: 8px;           /* Smooth, modern rounded corners */
    margin-top: 24px;             /* Pushes the button down away from the text */
    transition: all 0.3s ease;    /* Creates a smooth fading animation on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Very subtle drop shadow */
}

/* Interactive hover state */
.signup-btn:hover {
    background-color: #40a526;    /* Changes to your brand green on hover */
    color: #FFFFFF;               /* Keeps text crisp white */
    transform: translateY(-2px);  /* Subtle lift effect when hovered */
    box-shadow: 0 6px 12px rgba(64, 165, 38, 0.2); /* Soft green glow */
}

/* Active state (when clicked) */
.signup-btn:active {
    transform: translateY(0);     /* Snaps back down when pressed */
}

.signup-btn-container {
    width: 100%;
    text-align: center; /* Forces the inline-block child button to line up in the center */
    margin-top: 24px;   /* Creates vertical separation space */
}

.btn-contain {
    text-align: center;
}

.info {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
}

.form {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
}

.ask-volunteer {
    text-align: center;
}