@charset "utf-8";
/* CSS Document */
CSS

/* --- RESET & BASICS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* The core "Dark Chocolate" foundation */
    background-color: #2b1d16; 
    color: #e6dccf; /* Oatmeal color for readability */
    
    /* Modern, clean font stack */
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    font-size: 18px; /* Slightly larger text is better for dark mode */
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    /* Golden/Warm Beige for hierarchy and contrast */
    color: #ffdbac;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; border-bottom: 2px solid #5d4037; padding-bottom: 0.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1.5rem;
}

/* --- LINKS --- */
a {
    /* Terracotta/Salmon color for high visibility */
    color: #ffab91;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    /* Lighter, brighter peach on hover */
    color: #ffccbc;
    text-decoration: underline;
}

a:visited {
    /* Slightly muted purple-brown for visited links */
    color: #d7ccc8;
}

/* --- LAYOUT CONTAINERS --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

/* Cards or Sections to break up the dark background */
.card {
    background-color: #3e2723; /* A slightly lighter chocolate for depth */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    border: 1px solid #4e342e;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    background-color: #e6dccf; /* Cream background */
    color: #2b1d16; /* Dark text */
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none; /* Override default link style if used on <a> */
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #ffdbac; /* Gold hover */
    transform: translateY(-2px); /* Subtle lift effect */
    text-decoration: none;
}

/* --- FORM ELEMENTS --- */
/* Inputs need special care on dark backgrounds so they remain visible */
input, textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background-color: #1a100c; /* Very dark, almost black brown */
    border: 1px solid #5d4037;
    color: #ffffff;
    border-radius: 4px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #ffab91; /* Highlight with link color */
}
/* --- NAVIGATION BAR --- */
.navbar {
    /* STICKY MAGIC */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures nav floats ABOVE other content (like cards) */

    /* THEME COLORS */
    background-color: #3e2723; /* Matching the 'Card' color */
    border-bottom: 1px solid #4e342e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4); /* Drop shadow for depth */

    /* LAYOUT */
    display: flex;
    justify-content: space-between; /* Pushes Logo to left, Links to right */
    align-items: center;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffdbac; /* Header Gold color */
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between links */
}

.nav-links a {
    color: #e6dccf; /* Oatmeal text */
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ffab91; /* Salmon/Terracotta on hover */
    text-decoration: none; /* Clean look (no underline) on nav items */
}
/* Main Container for the form */
        .contact-form-container {
            max-width: 600px;
            margin: 40px auto; /* Centers the form and adds space top/bottom */
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        /* Typography */
        .contact-form-container h2 {
            margin-top: 0;
            color: #333;
        }
        .contact-form-container p {
            color: #666;
            margin-bottom: 20px;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Keeps padding inside the width */
            font-size: 16px;
        }

        textarea {
            height: 150px;
            resize: vertical; /* Allows user to make box taller but not wider */
            font-family: inherit;
        }

        /* Checkbox Styling */
        .checkbox-group {
            display: flex;
            gap: 20px;
            margin-top: 5px;
        }
        .checkbox-label {
            font-weight: normal;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        /* Button Styling */
        .submit-btn {
            background-color: #333; /* Dark button */
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #555; /* Lighter grey on hover */
        }