/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	background-color: #D6D6D6;
	color: #333;
}

/* Header */
header {
    background-color: #f4f4f4;
    color: #000;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

header h1 {
    font-size: 1.5em;
}

header h1 a {
	color: #290700;
	text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 2em;
}

header nav ul li a {
    color: #f00;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em 1em;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
	background-color: #D6D6D6;
	border-radius: 5px;
}

/* Hero Section */
#hero {
	background: url('background.jpg') no-repeat center center/cover;
	color: #290700;
	height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	margin-top: 60px;
}

#hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

#hero h2 {
	font-size: 3em;
	margin-bottom: 0.5em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	color: #ff0000;
}

#hero p {
	font-size: 1.2em;
	margin-bottom: 1em;
	color: #FF0000;
}

.btn {
    display: inline-block;
    padding: 0.75em 1.5em;
    font-size: 1em;
    color: #fff;
    background-color: #e8491d;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #D6D6D6;
    transform: scale(1.05);
	color: #ff0000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 1em;
}

/* Section Titles */
h2 {
	border-bottom: 2px solid #333;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	color: #111F3E;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

.service {
    background-color: #fff;
    padding: 2em 1.5em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service i {
    font-size: 2em;
    color: #e8491d;
    margin-bottom: 0.5em;
}

.service h3 {
    margin-bottom: 0.5em;
    color: #333;
}

.service p {
    color: #666;
}

/* Contact Form */
form {
    display: block;
    flex-direction: column;
    background-color: #FFF;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    margin-top: 1em;
    color: #000000;
}

form input, form textarea {
    padding: 0.75em;
    margin-top: 0.5em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: #e8491d;
}

form button {
    margin-top: 1em;
    padding: 0.75em;
    background-color: #e8491d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

form button:hover {
    background-color: D6D6D6;
    transform: scale(1.05);
	color: #ff0000;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
    position: relative;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.show {
    opacity: 1;
    transform: translateY(0);
}
.parallax {
    background-image: url('DC1.png');
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

a:hover {
    color: #FF0000;
    text-decoration: inherit;
    transition: all 0.3s ease-in-out;
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.gradient-text {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    color: transparent;
}
