/* Reset basic margins */
* {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Banner
.banner {
  width: 100%;
  height: auto;
}
 */

#banner {
  background-image: url(../images/mason_banner.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100vw;
  height: 50vh;
}

#banner h1 {
  background: none;
    color: white;
    font-size: 10vw;
    text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

/* Navigation */
nav {
  background-color: #333;
}
.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  margin: 0;
}
.nav-list li {
  margin: 0 20px;
}
.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav-list a:hover {
  text-decoration: underline;
}


/* Navigation Dropdown Styling */

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 150px;
  z-index: 1000;
  top: 100%;
  left: 0;
  padding: 0;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #555;
}

.dropdown:hover .dropdown-menu {
  display: block;
}











/* Section styling */
.section {
  padding: 40px 20px;
  height: fit-content;
}

.section #about-header {
  display: block;
  align-items: center;
}

.section #about-header h2 {
  font-size: 200%;
  margin: 0;
  padding: 0;
}

/* About Section Layout */
.about-container {
  margin: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#about-section {
  background-color: #734841; 
  color: #ccc; 
  display: flex;
  flex-direction: row;
}

.about-image img {
  width: 100%;
  max-width: 30vw;
  padding: 0;
  margin: 2% 7.5vw;
  border-radius: 8px;
}
.about-text {
  flex: 1;
  max-width: 50vw;
}

.about-text p {
  font-size: 115%;
  line-height: 2;
  text-indent: 75px;
}

#contact-section {display: flex; flex-direction: column; width: 100vw;}

#contact-sheet {
  background-color: #b7b7b7;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-self: center;
  width: fit-content;
  max-width: 50vw;
  margin: 3vw;
  padding: 3% 5%;
  border-radius: 25px;
  color: #1b4965;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

#contact-sheet h2 {
  font-size: 300%;
  padding: 0;
  margin: 5% 0;
}

#contact-sheet form {
  width: fit-content;
  align-content: center;
}

#contact-sheet form label{
    border: none;
    border-radius: 5px;
    font-size: 130%;
    padding: 2%;
}

#contact-sheet form .short input{
    border: none;
    border-radius: 5px;
    font-size: 125%;
    padding: 2%;
}

#contact-sheet form .short {
  padding: 0;
  margin: auto;
  display: flex;
  flex-direction: row;
  text-align: right;
}

#contact-sheet form .long {
  display: flex;
  flex-direction: column;
  margin: 0 2%;
}

#contact-sheet form .long textarea{
    border: none;
    border-radius: 5px;
    height: 30vh;
    font-size: 125%;
    padding: 2%;
    
}

#contact-submit {
  font-size: 150%;
  padding: 2% 5%;
  border: none;
  border-radius: 10px;
  color: #1b4965;
  font-weight: bold;
}




/* Contact Section */

.map-container {
  display: flex;
  align-items: center;
}

.map-container iframe {
  width: 80vw;
  height: 30vw;
  border: none;
  border-radius: 8px;
  margin: 5%;
  padding: 0;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}
.footer-col h4 {
  margin-bottom: 10px;
}
.footer-col a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
.footer-col a:hover {
  color: #fff;
}

.footer-col a i {
  font-size: 20px;
  margin-right: 10px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col a i:hover {
  color: #fff;
}



.social_icon{
  text-align: center; padding: 20px;
}

.social_icon span a{
  display: inline-block;
}
