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

:root {
    --color-bg: #FAF9F6;
    --color-primary: #1D3557; /* Navy */
    --color-accent: #D4AF37; /* Gold */
    --color-text: #2C3539; /* Dark Gray for better readability */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    /* Very subtle, highly transparent marble effect */
    background-image: 
        repeating-linear-gradient(45deg, rgba(29, 53, 87, 0.015) 25%, transparent 25%, transparent 75%, rgba(29, 53, 87, 0.015) 75%, rgba(29, 53, 87, 0.015)),
        repeating-linear-gradient(45deg, rgba(29, 53, 87, 0.015) 25%, transparent 25%, transparent 75%, rgba(29, 53, 87, 0.015) 75%, rgba(29, 53, 87, 0.015));
    background-position: 0 0, 15px 15px;
    background-size: 30px 30px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
}

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-accent {
    background-color: var(--color-accent);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FAF9F6;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #152640;
    box-shadow: 0 8px 20px rgba(29, 53, 87, 0.2);
    transform: translateY(-1px);
}

.btn-accent {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-accent:hover {
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15); /* Very subtle gold border */
    box-shadow: 0 20px 40px -10px rgba(29, 53, 87, 0.08); /* Soft shadow */
    transition: all 0.4s ease;
}

.card:hover {
    box-shadow: 0 25px 50px -12px rgba(29, 53, 87, 0.12);
}

/* Custom inputs */
input, select, textarea {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
}

/* Navbar specific */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}
