/* Reset and Base Styles */
:root {
    --primary-bg: #ffffff;
    --text-dark: #1f1f1f;
    --accent-orange: #b75d29; /* Burnt Orange */
    --light-gray: #fdfdfd;
    --dark-section: #141414;
    --wood-texture: url('assets/hero.jpg');
}

body { 
    margin: 0; 
    font-family: 'Montserrat', sans-serif; 
    color: var(--text-dark); 
    background-color: var(--primary-bg); 
    line-height: 1.6;
}

h1, h2, h3, .logo { 
    font-family: 'Playfair Display', serif; 
}

/* Navigation */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 25px 60px; 
    background: white; 
    border-bottom: 2px solid var(--accent-orange);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo { 
    font-size: 26px; 
    font-weight: 600; 
    color: var(--text-dark); 
    letter-spacing: 1px;
}

nav .links a { 
    margin-left: 35px; 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 400; 
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s; 
}

nav .links a:hover { 
    color: var(--accent-orange); 
}

.btn { 
    border: 1px solid var(--accent-orange); 
    padding: 10px 20px; 
    color: var(--accent-orange) !important; 
    border-radius: 0px; 
}

.btn:hover { 
    background: var(--accent-orange); 
    color: white !important; 
}

/* Hero Section */
.hero { 
    height: 85vh; 
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.85)), var(--wood-texture) center/cover; 
    display: flex; 
    align-items: center; 
    padding: 0 60px; 
}

.hero-content { 
    max-width: 650px; 
    background: white; 
    padding: 50px; 
    border-left: 8px solid var(--accent-orange); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
}

.hero h1 { 
    font-size: 54px; 
    margin-top: 0; 
    line-height: 1.15; 
    color: var(--text-dark); 
}

.hero p { 
    font-size: 18px; 
    line-height: 1.8; 
    color: #4a4a4a; 
    margin-bottom: 35px; 
    font-weight: 300;
}

.btn-primary { 
    background: var(--accent-orange); 
    color: white; 
    padding: 15px 30px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 14px; 
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block; 
    transition: background 0.3s; 
    border-radius: 0px; 
    border: none;
    cursor: pointer;
}

.btn-primary:hover { 
    background: #8b441c; 
}

/* Shared Sections */
.section-light { padding: 100px 60px; background: var(--light-gray); text-align: center; }
.section-dark { padding: 100px 60px; background: var(--dark-section); color: white; text-align: center; }

.accent-text { color: var(--accent-orange); font-size: 42px; margin-bottom: 25px; }
.section-dark h2 { color: white; font-size: 42px; margin-bottom: 10px; }
.subtitle { color: #aaaaaa; font-weight: 300; margin-bottom: 50px; font-size: 16px; }

.container { max-width: 1000px; margin: 0 auto; }
.lead-text { font-size: 20px; font-weight: 300; color: #555; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.85);
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    align-items: center;
}

.about-text p { color: #555; font-size: 16px; margin-bottom: 20px; }

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-orange);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: #1c1c1c;
    padding: 40px;
    border-top: 4px solid var(--accent-orange);
    position: relative;
}

.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; color: #ccc; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #141414;
    border: 1px solid #333;
    color: white;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-orange); }

#form-success {
    display: none;
    background-color: rgba(0, 170, 0, 0.1);
    border-left: 4px solid #00AA00;
    color: #00AA00;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

#form-error {
    display: none;
    background-color: rgba(170, 0, 0, 0.1);
    border-left: 4px solid #AA0000;
    color: #AA0000;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

footer {
    background: black;
    color: #666;
    text-align: center;
    padding: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}