:root {
    --primary-color: #795548;
    /* Warm Earth */
    --secondary-color: #A1887F;
    /* Lighter Earth */
    --accent-color: #4E342E;
    /* Dark Earth */
    --text-color: #3E2723;
    /* Very Dark Brown */
    --bg-color: #FFFCF7;
    /* Warm Paper White */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    /* Changed to Lora for that bookish feel */
}

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    color: var(--text-color);
}

/* Navbar Tweaks */
.navbar-brand {
    color: var(--text-color) !important;
}

.nav-link {
    color: #6D4C41 !important;
    /* Muted brown */
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color) !important;
}

/* Hero Section - Artistic & Minimal */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background-color: transparent;
}

.hero-image-wrapper {
    max-width: 1000px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 15px;
}

.btn-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 30px;
    border-radius: 0;
    /* Square buttons are more elegant */
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    /* Spacious gap */
}

.gallery-item {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: none;
    opacity: 0.9;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    /* Square crop for uniform look */
    filter: sepia(10%);
    /* Slight vintage touch */
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: sepia(0%);
    transform: none;
}

.gallery-caption {
    margin-top: 15px;
    text-align: center;
}

.section-title::after {
    background-color: var(--secondary-color);
    width: 40px;
    height: 1px;
}

/* Elegant Footer */
.site-footer {
    background-color: var(--bg-color);
    /* Matches body bg for seamless look */
    border-top: 1px solid rgba(141, 110, 99, 0.2);
    /* Soft brown border */
    margin-top: 120px;
}

.letter-spacing-1 {
    letter-spacing: 0.1em;
}

.letter-spacing-2 {
    letter-spacing: 0.2em;
}

.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}

/* Typography refinement */
p {
    margin-bottom: 1.5rem;
}

footer {
    background-color: #fff;
    color: var(--text-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0;
    margin-top: 100px;
}

footer h5 {
    color: var(--text-color) !important;
}

footer a {
    color: var(--secondary-color);
}

footer a:hover {
    color: var(--primary-color);
}