/* Main Theme Colors */
:root {
    --main: #ff5a5f;       /* Airbnb-like coral */
    --dark: #1f1f1f;
}

body {
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
}

.main-nav {
    background: var(--dark);
}

.btn-main {
    background: var(--main);
    color: white;
    border-radius: 30px;
}

.btn-main:hover {
    background: #e54e53;
    color: #fff;
}

.text-main {
    color: var(--main);
}

.hero {
    height: 85vh;
    background: url('https://source.unsplash.com/1600x900/?hotel,luxury') center/cover no-repeat;
}

.footer {
    background: var(--dark);
}
/* Ghana-inspired theme colors */
:root {
    --main: #e63946; /* Warm luxury red */
    --accent: #1d3557; /* Deep elegant navy */
    --gold: #f4c430; /* Gold for luxury */
}

/* Logo */
.logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* Navigation */
.modern-nav {
    background: #ffffff;
}

.nav-modern {
    font-weight: 600;
    position: relative;
    color: var(--accent) !important;
    transition: 0.3s;
}

.nav-modern:hover {
    color: var(--main) !important;
}

/* Animated underline */
.nav-modern::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--main);
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.nav-modern:hover::after {
    width: 100%;
}

/* Contact button */
.btn-contact {
    border: 2px solid var(--main);
    border-radius: 25px;
    color: var(--main) !important;
}

.btn-contact:hover {
    background: var(--main);
    color: #fff !important;
}

/* Buttons */
.btn-main {
    background: var(--main);
    color: white;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-main:hover {
    background: #cc2f3a;
}

/* Accommodation Cards */
.room-card {
    border-radius: 15px;
}

.room-img {
    height: 220px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: url('assets/img/ghana-hotel-cover.jpg') center/cover no-repeat;
}

/* Footer */
.footer {
    background: var(--accent);
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }
}

.carousel-caption h2 {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.carousel-caption p {
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

.carousel-item img {
    object-fit: cover;
    height: 700px;
}
/* Ensure slider captions show properly on mobile */
.carousel-caption {
    bottom: 15%;
    background: rgba(0, 0, 0, 0.45);
    padding: 15px 20px;
    border-radius: 10px;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .carousel-caption {
        bottom: 10%;
        padding: 10px 15px;
    }

    .carousel-caption h2 {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .carousel-caption p {
        font-size: 0.95rem;
        margin-bottom: 0;
    }
}
