css
/* style.css */

body {
    font-family: "Montserrat", sans-serif; /* Primary font application */
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
	height:350px;
    background: radial-gradient(rgba(8, 25, 33,0.5), rgba(8, 25, 33,0.8)), 
                url(img/banner2.JPG) center/cover;
	background-position: center 75%;
    display: flex;
    align-items: top;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
	color:white;
	text-shadow: 2px 2px 3px #333;
	line-height: 1.2;
	letter-spacing:0.2rem;
}

#devinestreet {
	font-family:'Radio Canada';
	font-size:3rem;
	font-weight:600;
	
}

#collective {
	font-family: 'Radio Canada';
	font-size:4rem;
	font-weight:600;
}

.lead h2 {
	font-size: 2rem;
	font-weight: 400;
	text-shadow: 2px 2px 3px #333;
	margin-bottom: 10px;
}

.lead {
	margin:-110px auto 20px auto;
	padding: 20px 5%; 
	font-family: 'Montserrat';
	line-height: 1.7;
	background: linear-gradient(to right, rgba(8, 25, 33),rgb(8, 37, 40)) ;
	color:#fff;
	box-shadow:2px 2px 3px #000;
}

.lead p {
	font-size: 1.5rem;
	font-weight:400px;
	margin: 10px 5%;
	text-align:center;
}

.gradient-divider {
	border: none;
	height: 2px; /* Adjust the thickness of the line */
  
	/* Apply the gradient background */
	background-image: linear-gradient(to right, rgba(255, 255, 255,0),rgba(255, 255, 255,1),rgba(255, 255, 255,0));
}

/* Staff Section */
.staff-section { padding: 50px 10%; font-family: 'Montserrat';line-height: 1.7;background:rgba(241, 242, 240) }
.staff-section h2{text-align: center;}

.headers {
	margin:50px 10px;
}

.staff-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.staff-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
	background:rgb(226, 227, 225);
	font-size: 1.1rem;
}

.staff-card:hover { transform: translateY(-10px); }

.headshotdiv {
	text-align:center;
}
.staff-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
	text-align: center;
}

.fa-left-icon {
	margin-right: 10px;
}

.contact-info { margin-top: 8px}

footer {
	font-family: 'Montserrat';
	line-height: 1.7;
	background: rgba(8, 25, 33) ;
	color:#fff;
	font-size:1.4rem;
	padding-bottom:50px;
}

#footertext {
	padding: 30px;
	text-align:center;
}

#map {
	text-align:center;
	position: relative; /* Allows absolute positioning of the iframe inside */
	overflow: hidden;
	margin:auto;
	width: 100%; /* Ensures it scales with its parent container's width */
	max-width:400px;
	min-height:400px;
}

.responsive-iframe {
  position: absolute; /* Positions the iframe relative to the container */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%; /* Makes the iframe fill the container's space */
}

@media (max-width: 600px) {
    
	.hero h1 {
		letter-spacing: 0.1rem;
	}
	
	#devinestreet {
		font-size:2.5rem;
		font-weight:600;
	}

	#collective {
		font-size:3rem;
		font-weight: 600;
	}
	.lead h2 {
		font-size: 1.7rem;	
		font-weight:500;
	}
	
	.lead p{
		font-size: 1.3rem;
	}
	
    .staff-section {
        padding: 50px 5%;
    }
	
	.lead {
		margin-top: -90px;
	}
	
}

/*
@media (max-width: 380px) {
    .hero h1 {
        font-size: 2.6rem;
		font-weight: 900;
    }
	.lead h2 {
		font-size: 1.8rem;
		margin-top: 20px;
	}
	
	.lead p{
		font-size: 1.3rem;
	}
	
	.lead {
		margin-top: -90px;
	}
	
    .staff-section {
        padding: 50px 5%;
    }

}

*/