/* styles.css */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color:	#f4f4f4;
    color:				#333;
    font-family:		Arial, sans-serif;
    line-height:		1.6;
	padding-bottom:		5em;
	padding-top:		7em;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.container p {
	padding-bottom:		0.5em;
}

.center {
    text-align:		center;
}

header {
    background:		#35424a;
    border-bottom:	#e8491d 3px solid;
    color:			#ffffff;
	left:			0;
    min-height:		70px;
    padding-top:	30px;
	position:		fixed;
    text-shadow:	2px 2px 4px rgba(0, 0, 0, 1);
	top:			0;
	width:			100%;
	z-index:		1000;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float:			right;
    margin-top:		10px;
	white-space:	nowrap;
}

header .highlight, header .current a {
    color: #e8491d;
    font-weight: bold;
}

header a:hover {
    color: #cccccc;
}

.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    /* height: 500px; */
    position: relative;
    color: #333;
    text-align: center;
    padding-top: 150px;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 10px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

.hero p {
    font-size: 20px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

.btn {
    display: inline-block;
    color: #ffffff;
    background: #e8491d;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #e63900;
}


.service img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto 10px;
}
.service {
    text-align: center;
    margin-bottom: 20px;
}


ul {
	list-style:		disc;
	padding-left:	1em;
}


section {
    padding: 20px 0;
    border-bottom: #e8491d 1px solid;
}

section h3 {
	margin-top:		1.5em;
}

section p {
	margin-bottom:	0.7em;
}

footer {
    background:	#35424a;
	bottom:		0;
    color:		#ffffff;
	left:		0;
	position:	fixed;
    text-align:	center;
    padding:	20px 0;
    margin-top:	20px;
	width:		100%;
}

footer p {
    margin: 0;
}

footer .social a {
    margin: 0 10px;
    color: #ffffff;
    text-decoration: none;
}

footer .social a:hover {
    color: #e8491d;
}


/* Mobile Styles */
@media (max-width: 768px) {
    header {
        padding-top: 10px;
        min-height: 50px;
    }
    
    header nav {
        float:			none;
        text-align:		center;
		display:		inline-block;
    }
    
    header ul {
        padding: 0;
        list-style: none;
        text-align: center;
    }
    
    header li {
        display: block;
        padding: 10px;
    }
    
    .hero {
        /* height: 300px; */
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .service {
        margin-bottom: 30px;
    }
    
    .service img {
        width: 40px;
        height: 40px;
    }
    
    footer {
        padding: 10px 0;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding-top: 20px;
        min-height: 60px;
    }
    
    header nav {
        float: none;
        text-align: center;
    }
    
    header ul {
        padding: 0;
        list-style: none;
        text-align: center;
    }
    
    header li {
        display: inline;
        padding: 10px 20px;
    }
    
    .hero {
        /* height: 400px; */
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .service {
        margin-bottom: 20px;
    }
    
    .service img {
        width: 45px;
        height: 45px;
    }
    
    footer {
        padding: 15px 0;
    }
}

/* Default Styles (Desktop) */
@media (min-width: 1025px) {
    .container {
        margin:			auto;
		padding-top:	0.5em;
        width:			60%;
    }
    
    header {
        background: #35424a;
		background-color:	#35424a;
        color: #ffffff;
        padding-top: 30px;
        min-height: 70px;
        border-bottom: #e8491d 3px solid;
		z-index:		1000;
    }
    
    header a {
        color: #ffffff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 16px;
    }
    
    header ul {
        padding: 0;
        list-style: none;
    }
    
    header li {
        float: left;
        display: inline;
        padding: 0 20px 0 20px;
    }
    
    header #branding {
        float: left;
    }
    
    header #branding h1 {
        margin: 0;
    }
    
    header nav {
        float: right;
        margin-top: 10px;
    }
    
    header .highlight, header .current a {
        color: #e8491d;
        font-weight: bold;
    }
    
    header a:hover {
        color: #cccccc;
    }
    
    .hero {
        background: url('hero-image.jpg') no-repeat center center/cover;
        /* height: 500px; */
        position: relative;
        color: #333;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero h1 {
        font-size: 55px;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .btn {
        display: inline-block;
        color: #ffffff;
        background: #e8491d;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
    }
    
    .btn:hover {
        background: #e63900;
    }
    
    section {
        padding: 20px 0;
        border-bottom: #e8491d 1px solid;
    }
    
    footer {
        background: #35424a;
        color: #ffffff;
        text-align: center;
        padding: 20px 0;
        margin-top: 20px;
    }
    
    footer p {
        margin: 0;
    }
}


/* Team Member Section */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 22px;
    color: #35424a;
}

.team-member p {
    margin-bottom: 10px;
    color: #666;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .team-member img {
        width: 100px;
        height: 100px;
    }

    .team-member h3 {
        font-size: 18px;
    }
}
