@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --bg-color: #f7f5f2;
    --text-color: #333333;
    --accent-color: #c19b86;
    --footer-bg: #8e8e8e; /* Adjusted to match the greyish footer in image */
    --footer-text: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-body); /* Logo seems sans-serif in design */
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-size: 0.9rem;
    color: #555;
}

nav a:hover {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.hero p.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #a8836e;
}

/* Sections General */
section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: transparent;
}

.project-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.project-info {
    padding: 1rem;
    background-color: #efece9; /* Slightly darker cream for caption area */
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.service-item {
    padding: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #555;
    /* Placeholder for SVG or FontIcon */
    display: block;
    height: 50px; 
    width: 50px;
    margin: 0 auto 1rem;
    border: 1px solid #555; /* Simple placeholder icon style */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px; 
}

.service-item h3 {
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-item p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    font-style: italic; /* Mimicking the lorem ipsum look */
}

/* Quote */
.quote-section {
    background-color: #eae7e4;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
}

.quote-section span {
    font-weight: 700;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 5%;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 1rem;
}

/* Utilities */
.text-center { text-align: center; }

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        gap: 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form-group {
    margin-bottom: 1rem;
}

.contact-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.contact-btn {
    border: none;
    cursor: pointer;
}
