@charset "UTF-8";
/* CSS Document */
/* General Styles */

@font-face{
    font-family: Perfectly Nineties Regular;
    src: url("PerfectlyNineties-Regular.otf");
}

body {
    font-family: "Perfectly Nineties Regular", "Baskerville", serif;
    font-size: 20px;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: #000000;
    line-height: 1.6;
    height: 100%;
	letter-spacing: 2px;
}

h1 {
    margin: 0;
    text-transform: uppercase;
	letter-spacing: 3px;
    font-size: 34px;
}

section {
    padding: 2rem 1rem;
}

/* Container for background image and overlay */
.background-container {
    width: 100%;
    background-image: url('images/FBF_PatternOppacity.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Ensure no overflow */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure container takes up full viewport height */
    z-index: -1;
}

/* Overlay with opacity effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent overlay */
    z-index: 1; /* Ensure overlay is above the background image */
}

/* Content styling */
.content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    padding: 20px;
    flex: 1; /* Allow main content to expand and take up remaining space */
}

/* Header */
header {
    padding: 2rem 0 0 0;
}

.image-container {
    text-align: center;
}

.image-container img {
    display: inline-block; /* Ensure the image is treated as an inline element */
    max-width: 100%;
    height: 150; /* Maintain aspect ratio */
}

/* BODY */

#about{
	margin-bottom: 100px;
}
.container {
    background-image: url("images/buildingFront.jpeg");
    background-color: #ffffff; /* Used if the image is unavailable */
    height: 500px; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    box-shadow: 0 .9375rem 1.5625rem -.3125rem #32325d40,0 .625rem .9375rem -.5rem #0000004d,0 0 0 .0625rem #00000026;
    border-radius: 10px;
    padding: 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Copy section styling */
.copy {
    padding: 1.5rem 2.5rem;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    color: #FFFFFF;
    text-align: center;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* BUTTON */
.button-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 150px;
}

.styled-button {
    background-color: #FFFFFF;
    color: #85ADCC;
    border: 2px solid rgb(133, 188, 225);
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
}

.styled-button:hover {
    background-color: #85ADCC;
    color: #FFFFFF;
}

/* FOOTER */
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #85ADCC;
    color: #000000;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }

    h1 {
        font-size: 28px;
    }

    .container {
        height: auto; /* Allow container height to adjust based on content */
        padding: 1rem;
    }

    .copy {
        padding: 1rem 1.5rem;
        margin: 30px 10px;
    }

    .styled-button {
        font-size: 20px;
        padding: 8px 16px;
    }

    .button-container {
        margin-top: 50px;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 24px;
    }

    .container {
        height: auto; /* Allow container height to adjust based on content */
        padding: 1rem;
    }

    .copy {
        padding: 0.5rem 1rem;
        margin: 30px 10px;
    }

    .styled-button {
        font-size: 18px;
        padding: 6px 12px;
    }

    .button-container {
        margin-top: 30px;
    }
}
