/* Luxurious Design System for Sudam Bunsik */

/* CSS Variables */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #D4AF37;
    --secondary-color: #f8f9fa;
    --text-color: #333333;
    --light-text: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Utility Classes */
.text-gold {
    color: var(--accent-color) !important;
}

.text-gold-dark {
    color: #B8860B !important;
}

.bg-dark-lux {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

.section-padding {
    padding: 65px 0;
}

/* Buttons */
.btn-lux {
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 2px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.btn-lux:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-lux-outline {
    background-color: transparent;
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 2px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.btn-lux-outline:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Section Headings */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Card Styles */
.card-lux {
    background: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card-lux:hover {
    transform: translateY(-5px);
}

/* Navbar Overrides */
.navbar-lux {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-lux .navbar-brand img {
    max-height: 60px;
}

.navbar-lux .nav-link {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-lux .nav-link:hover,
.navbar-lux .nav-link.active {
    color: var(--accent-color);
}

/* Sticky Header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-top: 1px solid #eee;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-lux .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid #f5f5f5;
    }
}

/* Hero Section Overrides */
.hero-section {
    position: relative;
    background-color: #000;
    /* Fallback */
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    /* Remove fixed height to allow full image visibility */
    height: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Ensure it covers the area but we might want 'contain' if aspect ratio is critical, but 'cover' is usually better for hero */
    /* Adjust brightness via filter or overlay */
    display: block;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    /* Stronger gradient at bottom for text */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    /* Stronger shadow */
}

.hero-content p {
    font-size: 1.5rem;
    color: #f8f9fa;
    font-family: var(--font-heading);
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        min-height: 400px;
    }
}