/* Luxury Design System */
:root {
    --rose-gold: #C5A059;
    --rose-gold-light: #EAC8AF;
    --ivory-white: #FDFCFA;
    --charcoal-grey: #2D2D2D;
    --soft-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --glass: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--ivory-white);
    color: var(--charcoal-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--rose-gold) !important;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal-grey) !important;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Carousel */
.carousel-item {
    height: 80vh;
    min-height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(253, 252, 250, 0.8);
    backdrop-filter: blur(5px);
    color: var(--charcoal-grey);
    padding: 3rem;
    max-width: 600px;
    bottom: 20%;
    left: 10%;
    text-align: left;
    border-left: 5px solid var(--rose-gold);
}

.carousel-caption h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--rose-gold);
}

/* Cards */
.luxury-card {
    border: none;
    background: white;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

/* Gallery - Masonry Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Contact Info */
.contact-info-box {
    padding: 40px;
    background: white;
    box-shadow: var(--soft-shadow);
    border-top: 5px solid var(--rose-gold);
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item i {
    color: var(--rose-gold);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Footer */
footer {
    background: var(--charcoal-grey);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--rose-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--rose-gold);
}

/* Booking Form & Contact Page Upgrade */
.contact-section {
    background: url('assets/img/contact_bg.png') center/cover no-repeat fixed;
    position: relative;
    padding: 100px 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 252, 250, 0.9);
}

.booking-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 50px;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-top: 8px solid var(--rose-gold);
    position: relative;
    z-index: 1;
}

.contact-info-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 50px;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-top: 8px solid var(--rose-gold);
}

.form-control,
.form-select {
    border: none;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
    background: rgba(255, 255, 255, 0.5);
    padding: 15px 0;
    margin-bottom: 5px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--rose-gold);
    box-shadow: none;
    background-color: var(--ivory-white);
    background: transparent;
    border-bottom-color: var(--rose-gold);
    box-shadow: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rose-gold);
}

.btn-luxury {
    background: var(--charcoal-grey);
    color: white;
    border-radius: 0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 1px solid var(--charcoal-grey);
    background: linear-gradient(135deg, var(--rose-gold), #A67C00);
    color: white;
    padding: 18px 30px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    border: none;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-luxury:hover {
    background: transparent;
    color: var(--charcoal-grey);
    transform: scale(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    color: white;
}

.btn-luxury:hover::before {
    left: 100%;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption {
        padding: 1.5rem;
        left: 5%;
        right: 5%;
    }

    .section-padding {
        padding: 50px 0;
    }
}