/* --- Google Font for Luxury Feel --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;600&display=swap');

/* --- Body and General Styling --- */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #D4AF37; /* Primary Gold Color */
}

p {
    line-height: 1.8;
    font-weight: 300;
}

/* --- Custom Color Palette --- */
.bg-charcoal-black {
    background-color: #1E1E1E !important;
}
.text-gold-primary {
    color: #D4AF37 !important;
}
.text-gold-secondary {
    color: #E8C766 !important;
}

/* --- Navigation Bar --- */
.navbar {
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}
.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37 !important;
}
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #f0f0f0 !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: #D4AF37 !important;
}

/* --- Buttons --- */
.btn-gold-primary {
    background-color: #D4AF37;
    border: 1px solid #D4AF37;
    color: #121212;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-gold-primary:hover {
    background-color: #1E1E1E;
    color: #D4AF37;
}
.btn-outline-gold {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-outline-gold:hover {
    background-color: #D4AF37;
    color: #121212;
}

/* --- Hero Carousel Section --- */
.hero-carousel {
    height: 95vh;
}
.carousel-item {
    height: 95vh;
    background-size: cover;
    background-position: center;
}
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 10px;
}
.carousel-caption-custom h1 {
    font-size: 5.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}
.carousel-caption-custom p {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 20px auto 30px;
}

/* --- Homepage Creative Sections --- */
.spotlight-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x800.png?text=Addis+Ababa+Skyline') no-repeat center center/cover;
    padding: 100px 0;
}

/* --- General Page Styling --- */
.page-header {
    padding: 120px 0 60px;
    background-color: #1a1a1a;
    text-align: center;
}
.card-custom {
    background-color: #1E1E1E;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}
.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

/* --- Footer --- */
.footer {
    background-color: #1E1E1E;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
    text-align: center;
}
.footer .social-icons a {
    color: #ccc;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}
.footer .social-icons a:hover {
    color: #D4AF37;
}