/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600&family=Playfair+Display:wght@400;500;600;700&display=swap');
 
/* CSS Variables – Clean Aesthetic with Metallic Gold */
:root {
    --bg-soft: #FFF7F9;
    --primary: #E8AEB7;
    --accent: #E0B84A;
    --text-dark: #2B2B2B;
    --white: #FFFFFF;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.05);
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 10% 20%, #FFF7F9, #FFF0F3);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px;
}
 
/* Headings with Playfair Display */
h1, h2, h3, h4, h5, h6,
.navbar-brand,
.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 0 rgba(224, 184, 74, 0.08);
}
 
/* Navbar – soft, minimal */
.navbar {
    background-color: rgba(255, 247, 249, 0.98) !important;
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(224, 184, 74, 0.3);
}
.navbar-dark .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent);
}
.navbar-dark .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--accent);
    padding-bottom: 6px;
}
.brand-logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
}
 
/* Hero Section – soft radial glow */
.hero {
    background: radial-gradient(circle at 50% 30%, #FFF5F7, #FFE9EF);
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: -80px;
    padding-top: 80px;
}
 
/* SHIMMERING METALLIC GOLD TEXT (  */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #E6B85C, #F5D76E, #FFF3B0, #F5D76E, #D4A832);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
    animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
/* Fallback for older browsers */
@supports not (background-clip: text) {
    .hero h1 {
        color: #E0B84A;
        text-shadow: 0 0 5px #FFF3B0;
    }
}
 
.hero .lead {
    font-size: 1.2rem;
    color: #5c4b51;
}
 
/* Buttons – Metallic Gold (shiny, satin finish) */
.btn-primary {
    background: linear-gradient(135deg, #F2D86D, #E0B84A, #C99E2E);
    background-size: 200% 200%;
    border: none;
    color: #2B2B2B;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(224, 184, 74, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,240,0.5), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #E8C85A, #D4A832);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 184, 74, 0.4);
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-outline-primary {
    border: 1.5px solid #E0B84A;
    color: #E0B84A;
    background: transparent;
    border-radius: 40px;
    transition: all 0.2s;
}
.btn-outline-primary:hover {
    background: #E0B84A;
    color: #2B2B2B;
    border-color: #E0B84A;
    box-shadow: 0 2px 8px rgba(224, 184, 74, 0.3);
}
 
/* Cards – clean & minimal, with gold glow on hover */
.card {
    background: var(--white);
    border: none;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(224, 184, 74, 0.2);
}
.card-img-top {
    border-radius: 24px 24px 0 0;
    object-fit: contain ;  
    height: 260px;
    width: 100%;
    box-shadow: inset 0 0 0 1px rgba(224, 184, 74, 0.1);
}
.card-title {
    color: var(--text-dark);
    font-weight: 600;
}
.card-text {
    font-size: 0.95rem;
    color: #4a3b3f;
}
 
/* Sections */
section {
    padding: 5rem 0;
}
.bg-light {
    background-color: #FFF0F3 !important;
}
 
/* Footer */
footer {
    background-color: #FCE9EE;
    color: #4a3b3f;
    border-top: 1px solid #FFDFE6;
    font-size: 0.9rem;
}
footer a {
    color: #C06C84;
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: var(--accent);
}
 
/* Forms */
.form-control, .form-select {
    border-radius: 16px;
    border: 1px solid #FFD9E0;
    background-color: white;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 184, 74, 0.2);
}
label {
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
 
/* Gold underline for headings */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
 
/* Link hover gold accent */
a:hover {
    color: var(--accent);
}
 
/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .card-img-top {
        height: 200px;
    }
    section {
        padding: 3rem 0;
    }
}
 
