/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap&subset=latin-ext');

:root {
    --gold-primary: #E7AD00;
    --gold-secondary: #F6E0AB;
    /* Classic Metallic Gold */
    --gold-hover: #C5A028;
    --light-bg: #F9F7F2;
    /* Creamy White */
    --white-card: #FFFFFF;
    --text-dark: #2C3E50;
    --text-muted: #7F8C8D;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
    text-shadow: none;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary) !important;
}

/* BUTTONS */
.btn-gold {
    background: var(--gold-primary);
    color: var(--text-dark);
    border: none;
    padding: 12px 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.35);
    color: #fff;
}

/* Unified outline button styles */
.btn-outline-secondary,
.btn-outline-primary,
.btn-outline-light,
.btn-outline-warning,
.btn-outline-danger {
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-outline-secondary {
    border-color: #d0d0d0;
    color: var(--text-dark);
}

.btn-outline-secondary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
}

.btn-outline-light {
    border-color: #e0e0e0;
    color: var(--text-muted);
}

.btn-outline-light:hover {
    background: #f5f5f5;
    color: var(--text-dark);
    border-color: #d0d0d0;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 220px 0 180px;
    background: url('../img/hero_bg2.jpg');
    background-size: cover;
    background-position: center 40%;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-section>* {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 5rem;
    color: #fff;
    text-shadow: none;
    background: none;
    -webkit-text-fill-color: initial;
    margin-bottom: 1.5rem;
}

.hero-section p {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
}

/* CARDS - Content sections (not clickable) */
.memorial-card {
    background: var(--white-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.memorial-img {
    height: 260px;
    object-fit: cover;
    border-radius: 0;
    filter: none;
    transition: transform 0.5s ease;
}

.memorial-card:hover .memorial-img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    background: #fff;
    text-align: center;
}

.card-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

/* FORMS */
.form-control,
.form-select {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 14px;
    color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* WIZARD PROGRESS */
.progress-marks {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.progress-marks::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.mark-step {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.mark-step.active {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
    color: var(--text-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* UTILS */
.text-gold {
    color: var(--gold-primary) !important;
}

.text-goldish {
    color: var(--gold-secondary) !important;
}

.bg-light-creamy {
    background-color: var(--light-bg);
}

footer {
    background: #fff !important;
    border-top: 1px solid #f0f0f0 !important;
    padding: 80px 0 40px;
    color: var(--text-muted);
}

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* Quill WYSIWYG Editor - Bold fix */
.ql-editor strong,
.ql-editor b {
    font-weight: bold !important;
}