@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Light.ttf') format('ttf');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay.ttf') format('ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay.ttf') format('ttf');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay.ttf') format('ttf');
    font-weight: 300;
    font-display: swap;
}


:root {
    --primary-color: #5D4037;
    --secondary-color: #A1887F;
    --accent-color: #FFC107;
    --light-bg: #F5F5F5;
    --text-color: #333;
    --light-text: #fff;
    --font-family: 'Merriweather', serif;
    --heading-font: 'Playfair Display', serif;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

.section-padding {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.btn-custom {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-custom:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* --- 2. Unique Header Structure --- */
.site-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo-wrapper {
    margin-bottom: 15px;
}

.header-logo {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 900;
}

.header-logo:hover {
    color: var(--secondary-color);
}

.navbar {
    padding: 0;
}

.navbar .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 15px;
    padding: 10px 0 !important;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(93, 64, 55, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* --- 3. Unique Footer Structure --- */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.site-footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: var(--light-text);
}

.footer-center-block {
    text-align: center;
    border-left: 1px solid var(--secondary-color);
    border-right: 1px solid var(--secondary-color);
    padding: 0 30px;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    text-align: center;
}

.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--light-text);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 40px;
}

/* Process Block */
.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.process-step .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Testimonial Block */
.testimonial-card {
    background: #fff;
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Contact Page */
.contact-form .form-control {
    border-radius: 0;
    padding: 15px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-info-block {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px;
    height: 100%;
}

.contact-info-block h3 {
    color: var(--accent-color);
}

.contact-info-block a {
    color: #fff;
    text-decoration: none;
}

.cta-section {
    background-color: var(--secondary-color);
}

.accent {
    color: var(--accent-color);
}

.collections-hero {
    background: linear-gradient(rgba(93, 64, 55, 0.7), rgba(93, 64, 55, 0.7)), url('../images/banner.png');
    background-size: cover;
    background-position: center;
}

.primary {
    background-color: var(--primary-color);
}