/* --- Core Variables & Reset --- */
:root {
    --terracotta: #C0783F;
    --terracotta-hover: #A66533;
    --cream: #F9F7F4;
    --dark-earth: #2D2926;
    --text-muted: #666666;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-earth);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* --- Typography --- */
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-earth);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* --- Navigation --- */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.navbar .logo {
    color: var(--white);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* --- Buttons --- */
.btn-main {
    background-color: var(--terracotta);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-main:hover {
    background-color: var(--terracotta-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero {
    height: 100vh; /* Full Viewport */
    background-color: var(--dark-earth); /* Solid fallback */
    background-image: url('assets/images/hero.jpg'); /* Connects to your local image */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: linear-gradient(rgba(45, 41, 38, 0.4), rgba(45, 41, 38, 0.8));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    color: var(--white);
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--cream);
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

/* --- Project Grid & Placeholders --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-card h3 {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: var(--dark-earth);
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: var(--terracotta);
}

.project-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: var(--cream);
    border: 1px dashed #dcdcdc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Interior Project Gallery --- */
.interior-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for a high-end look */
    gap: 1.5rem;
}

.interior-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Clean squares for the interior detail shots */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.interior-gallery img:hover {
    transform: scale(1.02);
}

/* --- Contact Form --- */
.contact-section {
    background-color: var(--cream);
    padding: 5rem 2rem;
    border-radius: 8px;
    margin-bottom: 5rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--white);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--terracotta);
}

textarea {
    margin-bottom: 1.5rem;
    resize: vertical;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .project-grid, .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .navbar {
        padding: 1.5rem 2rem;
    }

    .interior-gallery {
        grid-template-columns: 1fr; /* Stacks gallery photos on mobile */
    }
}