@charset "utf-8";
/* CSS Document */


body {
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.hero {
    background-image: url('DG_Blue_Waves_1920x800.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: #FFFFFF;
	font-family: "roboto";
    text-align: center;
    position: relative;
    min-height: 600px; /* Reduced height to shorten the visible hero graphic */
}

.hero .container {
    position: relative;
    z-index: 1;
    /* min-height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* padding-top: 50%;  Push content down to below the logo */
    padding-bottom: 5%; /* Add some bottom padding for balance */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,78,134,0.50);
    z-index: 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.hero .btn {
    max-width: 200px;
    width: 100%;
    margin: 0 auto; /* Center the button */
    background-color: white;
    color: black;
	font-weight: bold;
}

.logo {
    margin-top: 20px;
}

#about {
    background: #9DAED0;
	  font-family: "roboto";
	  font-size: 20px;
}

#contact {
    background: #FFFFFF;
}

#footer {
    background: #060522;
	    color: white;
}

@media (max-width: 768px) {
    .hero {
		background-image: url('Design_Guy_Blue_Waves_576x350.jpg');
        /* min-height: 500px; */
    }
    .hero .container {
        /* padding-top: 40%; */
        padding-bottom: 5%;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero .btn {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .hero {
	     background-image: url('Design_Guy_Blue_Waves_576x150.jpg');
       /* min-height: 400px; */
	  
    }
    .hero .container {
        /* padding-top: 30%; */
        /* padding-bottom: 1%; */
		 max-height: 150px;
    }
    .hero .btn {
     /*   max-width: 160px; */
    }
    .btn-lg {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}
