:root {
    --primary-color: #ffffff; /* White */
    --secondary-color: #d4af37; /* Gold */
    --dark-color: #333333; /* Dark grey */
    --light-color: #f8f9fa;
    --medium-grey: #6c757d;
}

body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 80px;
    color: var(--dark-color);
    background-color: var(--primary-color);
}

/* Text colors */
.text-gold {
    color: var(--secondary-color);
}

/* Buttons */
.btn-gold {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #c9a227;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    background-color: var(--dark-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(51, 51, 51, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    margin-right: 5px;
}

.navbar-brand .small {
    font-size: 0.7rem;
    margin-left: 5px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0.8)), url('../images/hero-bg-dark.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 2px;
}

.hero .slogan {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Footer */
.footer-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Modern Card Styles */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: var(--primary-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: var(--dark-color);
    font-weight: 600;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}