@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --accent-gold: #d4af37;
    --text-main: #334155;
    --bg-light: #f8fafc;
}

body { font-family: 'Poppins', sans-serif; background-color: var(--bg-light); color: var(--text-main); }

.navbar { background-color: var(--primary-dark) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.nav-link { font-weight: 500; color: #f1f5f9 !important; border-radius: 20px; transition: all 0.3s ease; }
.nav-link:hover, .nav-link.active { color: #ffffff !important; background-color: rgba(255, 255, 255, 0.1); }

.page-header { background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8)), url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1350&q=80'); background-size: cover; background-position: center; color: white; padding: 80px 0; }

.section-title { color: var(--primary-dark); font-weight: 700; position: relative; display: inline-block; margin-bottom: 25px; }
.section-title::after { content: ''; display: block; width: 50px; height: 4px; background-color: var(--accent-gold); margin-top: 8px; border-radius: 2px; }

.custom-list { padding-left: 0; list-style: none; }
.custom-list li { position: relative; padding-left: 25px; margin-bottom: 12px; }
.custom-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-gold); font-weight: 700; }

.gallery-img { width: 100%; height: 250px; object-fit: cover; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.gallery-img:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }

footer { background-color: #090d16 !important; border-top: 4px solid var(--accent-gold); }