/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --burgundy: #6B2737;
    --burgundy-light: #8B3747;
    --burgundy-dark: #4B1727;
    --off-white: #F5F3EF;
    --graphite: #2C2C2C;
    --grey-light: #E8E6E2;
    --olive: #7A8B7E;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--off-white);
    color: var(--text-primary);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--graphite);
}

/* Bootstrap Overrides */

/* Buttons */
.btn-primary {
    background-color: var(--burgundy);
    border-color: var(--burgundy);
    color: white;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--burgundy-light);
    border-color: var(--burgundy-light);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--burgundy);
    border-color: var(--burgundy);
    color: white;
}

.btn-outline-primary {
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-outline-primary:hover {
    background-color: var(--burgundy);
    border-color: var(--burgundy);
}

/* Links */
a {
    color: var(--burgundy);
    text-decoration: none;
}

a:hover {
    color: var(--burgundy-light);
    text-decoration: underline;
}

/* Navbar */
.navbar {
    background-color: rgba(245, 243, 239, 0.95) !important;
    /* Glassmorphism/Light match */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 39, 55, 0.1);
    box-shadow: none;
    position: relative;
    z-index: 2000;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    color: var(--burgundy) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

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

.navbar-text {
    color: var(--text-secondary) !important;
}

/* Cards */
.card {
    border: 1px solid var(--grey-light);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid var(--grey-light);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Forms */
.form-control {
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 0.25rem rgba(107, 39, 55, 0.25);
}

/* Utilities */
.text-burgundy {
    color: var(--burgundy) !important;
}

.bg-burgundy {
    background-color: var(--burgundy) !important;
}