/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    width: 100%;
    /* Optional: box-shadow for separation */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666; /* Dark grey like the image */
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #D27D46;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 90vh; /* Adjust as needed */
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .location {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Page Content (Placeholder Pages) */
.page-content {
    padding: 80px 20px;
    text-align: center;
    min-height: 60vh;
    background-color: #f9f9f9;
}

.page-header {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-section, .values-section, .team-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.values-section {
    background-color: #f9f9f9;
    text-align: center;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item h3 {
    color: #D27D46;
    margin-bottom: 15px;
}

.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.team-section > .container > p {
    margin-bottom: 40px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 600px; /* Constrain width to keep them close */
    margin: 0 auto;
}

.team-member h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

.team-member p {
    color: #888;
    font-size: 0.9rem;
}

.member-photo-placeholder {
    width: 150px;
    height: 150px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Footer Styles */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.main-footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #D27D46;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer a {
    color: #ccc;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: #D27D46;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-info-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-centered h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info-centered p {
    color: #666;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: #D27D46;
    margin-bottom: 5px;
}

.info-item p a {
    color: #333;
    font-weight: 500;
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon .material-icons {
    font-size: 3.5rem;
    color: #D27D46;
}

.service-card h3 {
    color: #D27D46;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #D27D46; /* Matching the orange tone */
    color: #fff;
}

.btn-primary:hover {
    background-color: #c06c3a;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-container {
        /* flex-direction: column; Remove this to keep logo and hamburger in a row */
        /* gap: 20px; */
    }

    .hamburger-menu {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .location {
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }

    .about-section, .values-section, .team-section, .services-section, .contact-section, .page-content {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .location {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}