body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 3.0;
    font-weight: 400;
    font-style: normal;
}

/* navbar styling */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Banner styling */
.hero {
    background: url("/media/cropped-Banner-1-scaled-1.jpg") center/cover no-repeat;
    height: 480px;
    border-bottom: 1px solid lightgray;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Content background */
.content-area {
    background: #f3f3f3;
    padding: 40px 0;
}

/* White panels */
.panel {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

/* Circle button with background color */
.social-btn {
    display: inline-flex;              /* center icon */
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 4%;                /* makes it circular */
    text-decoration: none;
    color: white;                       /* icon color */
    transition: background-color 0.3s;
    font-size: 1.5rem;
}

/* Instagram color background */
.social-btn.instagram {
    background-color: #E4405F;
}

/* Hover effect: lighten background */
.social-btn.instagram:hover {
    background-color: #ff5e81;
}

.countdown .time-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
    min-width: 70px;
    max-width: 90px;        /* prevents numbers from growing too big */
    font-size: 1.0rem;     /* limits number size */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.countdown .time-box span {
    display: block;
    font-size: 1.5rem;      /* number size */
}

@media (max-width: 576px) {
    .countdown .time-box {
        min-width: 50px;
        max-width: 70px;
        padding: 10px;
    }

    .countdown .time-box span {
        font-size: 1.0rem;
    }
}
