/* General Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Carousel Slider */
.carousel-item {
    height: 500px; /* Adjust as needed */
    background-color: #777;
    background-position: center;
    background-size: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    background: url('../img/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Countdown Timer */
.countdown-timer {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-timer > div {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
}

.countdown-timer span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
}

/* Section Titles */
h2 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ffc107; /* Bootstrap warning color */
    margin: 10px auto 0;
}

/* Card Styling */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Footer */
.footer a:hover {
    text-decoration: underline !important;
}

.footer .list-inline-item a:hover {
    color: #ffc107 !important;
}
