/* --- Core Layout --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    color: #2c3e50;
}

/* --- Navigation --- */
.navbar-brand {
    font-size: 1.5rem;
}
.nav-link.active {
    font-weight: bold;
    color: #ffc107 !important; /* Warning Yellow */
    border-bottom: 2px solid #ffc107;
}

/* --- Hero Section --- */
.hero-section {
    
    background-size: cover;
    background-position: center;
    height: 80vh;
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* --- Cards & Features --- */
.card {
    transition: transform 0.2s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 2rem;
    color: #228B22; 
    margin-bottom: 1rem;
}

/* --- Footer & Payments --- */
footer a {
    text-decoration: none;
    color: #b0b3b8;
    transition: color 0.3s;
}
footer a:hover {
    color: #ffffff;
}
.payment-icons i {
    transition: transform 0.3s, color 0.3s;
    cursor: pointer;
}
.payment-icons i:hover {
    transform: scale(1.2);
    color: #ffc107 !important;
}

/* --- Utilities --- */
.booking-widget-container {
    background-color: #fff;
    border: 1px solid #ddd;
}