/* General Styles */
body {
    background-color: #f0f4f8;
    color: #333;
    font-family: 'Lato', sans-serif;
}
/* General Reset for Margin and Padding */
body, html {
    margin: 0;
    padding: 0;
}

/* About Me Section Font Size */
#about p {
    font-size: 1.1em;
}

/* Navbar Styles */
nav {
    background-color: #263238;
    margin: 0;
}
.nav-wrapper a.brand-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #eceff1;
}
.nav-wrapper ul.right li a {
    color: #eceff1;
}

.sidenav {
    background-color: #263238;
}

.sidenav li a {
    color: #eceff1;
}

/* Adjustments for the Downward Arrow Icon */
.sidenav-trigger i {
    font-size: 2rem;
    color: #eceff1;
    margin-right: 10px;
}

/* Section Header Styles */
h2, h3 {
    color: #37474f;
    font-family: 'Montserrat', sans-serif;
}

/* My Approach & Services Sections */
.collection {
    margin-top: 0;
    padding-top: 0;
}

.collection-item {
    background-color: #e3f2fd;
    color: #37474f;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1.1em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.collection-item i {
    color: #1e88e5;
    margin-right: 10px;
}

/* Blockquote Styles */
blockquote {
    border-left: 5px solid #263238;
    color: #263238;
    padding-left: 20px;
    margin: 20px 0;
    font-size: 1.4em;
    font-style: italic;
    background-color: #e1f5fe;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

blockquote footer {
    color: #eceff1;
    background-color: #263238;
    font-size: 0.9em;
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    text-align: right;
}

/* Footer Styles */
footer {
    background-color: #586972;
    color: #eceff1;
}

/* Button Styles */
.btn {
    font-family: 'Montserrat', sans-serif;
    background-color: #263238;
    color: #eceff1;
}

/* Parallax Container */
.parallax-container {
    height: 500px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Parallax Image */
.parallax img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;  /* Cover the entire container */
    margin: 0;
    padding: 0;
}

/* Contact Me Font */
#contact p {
    font-size: 1.2rem;
    line-height: 1.6;
}

#contact ul {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Adjust Labels */
label {
    color: #546e7a;
}

input[type=text]:focus + label,
input[type=email]:focus + label,
input[type=tel]:focus + label,
textarea:focus + label {
    color: #263238;
}

/* Card Panel for Testimonials */
.card-panel {
    background-color: #cfd8dc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
} 


/* Adjustments for Width 750px and below */
@media (max-width: 750px) {
    .parallax-container {
        height: 400px; /* Adjust height to maintain aspect ratio */
    }
    
    .parallax img {
        object-fit: cover;  /* Ensure the image covers the entire container */
    }
}

/* Adjustments for Width 450px and below */
@media (max-width: 450px) {
    .parallax-container {
        height: 300px; /* Further reduce height for smaller screens */
    }
    
    .parallax img {
        object-fit: cover;
    }
}



