/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --gold: #d4af37;
    --gold-dark: #b5952f;
    --light-bg: #fdfbf7;
    --dark-text: #2c2c2c;
    --gray-text: #6c757d;
}

/* --- Global Styles --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    padding-top: 76px; /* Prevents content from hiding behind fixed navbar */
}

h1, h2, h3, h4, h5, h6, .luxury-font {
    font-family: 'Playfair Display', serif;
}

/* --- Fixed Navigation --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
}
.navbar-brand {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* --- Buttons --- */
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-gold:hover {
    background-color: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* --- Hero Slider --- */
.hero-slider .carousel-item {
    height: calc(100vh - 76px);
    min-height: 500px;
    background-size: cover;
    background-position: center;
}
.hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}
.carousel-caption {
    bottom: 30%;
    z-index: 2;
}
.carousel-caption h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* --- Sections & Cards --- */
.section-padding { padding: 90px 0; }
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--gold);
    font-size: 2.5rem;
}

/* Service & Event Cards */
.luxury-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}
.luxury-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.luxury-card:hover img {
    transform: scale(1.05);
}
.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 10px 15px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    line-height: 1.2;
}

/* --- Testimonials --- */
.testimonial-box {
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.stars { color: var(--gold); }

/* --- Footer --- */
.site-footer {
    background-color: #fff;
    padding: 70px 0 30px;
    border-top: 1px solid #eee;
}
.site-footer h5 {
    color: var(--gold);
    margin-bottom: 25px;
}
.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.social-icons a {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}
.social-icons a:hover { color: var(--gold); }
.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}
/* --- Gallery Styles --- */
.gallery-item {
    cursor: pointer;
    height: 300px; /* Fixed height for uniform grid */
}
.gallery-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}