:root {
    --color-gold: #D4AF37;
    --color-gold-hover: #b5952f;
    --color-brown: #3E2723;
    --color-dark: #0a0a0a;
    --color-light: #F9F9F9;
    --font-playfair: 'Playfair Display', serif;
    --font-outfit: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-outfit);
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

.font-playfair {
    font-family: var(--font-playfair);
}

.font-outfit {
    font-family: var(--font-outfit);
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

/* Navbar */
.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-gold {
    background-color: var(--color-gold);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/bg-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.custom-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-card img {
    transition: all 0.5s ease;
}

.custom-card:hover img {
    transform: scale(1.05);
}

/* Form */
.form-control {
    border-radius: 0;
    padding: 1rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--color-gold);
}

/* Footer */
.hover-white:hover {
    color: #fff !important;
}

/* Utilities */
.spacing-1 {
    letter-spacing: 1px;
}

.spacing-2 {
    letter-spacing: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-brown);
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}