/* Variables */
:root {
    --primary-color: #1C1C1C; /* Jet Black */
    --secondary-color: #EAEAEA; /* Light Gray */
    --accent-color: #DAA520;   /* Gold */
    --text-color: #f0f0f0;
    --heading-font: 'Roboto', Arial, sans-serif;
    --body-font: 'Open Sans', Arial, sans-serif;
}

/* Global Styles */
body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

header .logo h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(28,28,28,0.8), rgba(28,28,28,0.8)), url('your-background-image.jpg') center/cover no-repeat;
    color: var(--secondary-color);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 80px; /* Offset for fixed header */
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    color: var(--secondary-color);
}

.list-container {
    max-width: 800px;
    margin: 0 auto 20px;
}

.list-container ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 1.1em;
    color: var(--secondary-color);
}

.list-container ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.list-container ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5em;
    line-height: 1;
    top: 0;
}

/* Call-to-Action Button */
.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 30px;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #c6930a; /* Slightly darker gold */
}

/* Services Section */
#services {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--accent-color);
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #2e2e2e;
    border: 1px solid var(--accent-color);
    padding: 30px;
    margin: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-card h3 {
    margin-top: 0;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.service-card p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* About Section */
#about {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--accent-color);
}

#about p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--primary-color);
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--accent-color);
}

#contact p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Headshot Image */
.headshot-image {
    max-width: 45%;
    height: auto;
    border-radius: 50%; /* Optional: Makes the image circular */
    border: 5px solid var(--accent-color); /* Optional: Adds a border */
}


/* Location Images */
.location-image {
    max-width: 35%;
    height: auto; 
    margin: 2px;   
    border-radius: 10px; /* Optional: Rounded corners */    
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul li {
        display: inline;
        margin: 10px 5px;
    }
    .logo h1 {
        font-size: 1.5em;
    }
    
    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }
    
    .contact p {
        font-size: 1.2em;
    }

    .service-card {
        width: 80%;
        margin: 20px auto;
    }
    
    .headshot-image {
        max-width: 100%;
        }
    
    .location-image {
        max-width: 80%; /* Stack images vertically */
        margin: 2px 0;
    }
    
    .cta-button {
        padding: 15px 30px;  
        font-size: 1.2em;      
        border-radius: 20px; /* Adjust border radius proportionally */
    }
    
    
}












