/* === Custom Properties === */
:root {
    --gold: #C9A84C;
    --gold-light: #e8d5a3;
    --burgundy: #7B2D3B;
    --burgundy-dark: #3a0e16;
    --bg-dark: #0e0c0b;
    --bg-darker: #080707;
}

/* === Base & Typography === */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: #fff;
}

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: #fff;
}

/* === Navbar === */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
    background: rgba(14, 12, 11, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* === Hero === */
.hero-gradient {
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(123, 45, 59, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(184, 34, 64, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, #0e0c0b 0%, #1a0e14 50%, #0e0c0b 100%);
}

.hero-orb {
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    background: radial-gradient(circle, rgba(123, 45, 59, 0.6) 0%, transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    background: radial-gradient(circle, rgba(201, 168, 76, 0.4) 0%, transparent 70%);
    animation-delay: -3s;
}

.orb-3 {
    background: radial-gradient(circle, rgba(184, 34, 64, 0.5) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-badge {
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
}

.hero-badge h1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-badge p {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-badge .flex {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-badge .mt-16 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Buttons === */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: #1a1500;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold span,
.btn-gold svg,
.btn-gold > * {
    position: relative;
    z-index: 1;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3), 0 0 60px rgba(201, 168, 76, 0.1);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.05);
    color: var(--gold);
}

/* === Section Labels & Titles === */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.4em 1em;
    border-radius: 100px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

/* === Service Cards === */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Testimonial Cards === */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Area Cards === */
.area-card {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}

.area-card.visible {
    opacity: 1;
    transform: scale(1);
}

.area-card:hover .area-img {
    transform: scale(1.1);
}

/* === CTA Gradient === */
.cta-gradient {
    background: 
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123, 45, 59, 0.6) 0%, transparent 70%),
        linear-gradient(135deg, #1a0e14 0%, #0e0c0b 100%);
}

/* === Input Fields === */
.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.input-field:focus {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.input-field option {
    background: #1a1500;
    color: #fff;
}

/* === Mobile Menu === */
.mobile-nav-link {
    position: relative;
}

/* === Scroll Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-gradient {
        background: 
            radial-gradient(ellipse 100% 80% at 50% 30%, rgba(123, 45, 59, 0.6) 0%, transparent 70%),
            radial-gradient(ellipse 80% 60% at 80% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
            linear-gradient(180deg, #0e0c0b 0%, #1a0e14 50%, #0e0c0b 100%);
    }
}

/* === Gold glow utility === */
.shadow-gold {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

/* === Subtle divider line === */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}
