/* css/home_style.css - Custom Styles for the Home Page */

/* Hero Section Styling for Home Page */
main{
    width:80vw; 
    margin:0 auto; 
    background-color: #eeedf2;
}
.hero-section-home {
    position: relative;
    width: 100%;
    height: 225px;
    background-image: url('../images/with text 2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin: -31px 0 0 0 !important;
    padding: 0;
}

/* Main Content Area Styling */
.main-content-area {
    color: #333;
    padding-top: 40px;
    padding-bottom: 40px;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-description .fw-bold {
    /* color: #e6b800;  */
}

.event-bullet-points {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
}

.event-bullet-points li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.event-bullet-points li .fas {
    color: #28a745; /* Green checkmark */
}

/* Event Details Section */
.event-details-section {
    background-color: #eeedf2; /* Matches body background */
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.detail-card {
    background-color: #fff;
    border: 1px solid #ddd;
    /* border-radius: 10px;
    padding: 20px; */
    height: 40vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #f51128; /* Yellow border */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #555; /* Yellow icon color */
    font-size: 2rem;
    flex-shrink: 0; /* Prevent shrinking */
}

.detail-text {
    font-size: 0.8rem;
    color: #555;
    /* text-align: center; */
    margin-bottom: 0;
}

.btn-contact {
    background-color: transparent; /* Yellow button */
    border-color: #f51128;
    color: #333;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
    background-color: #f51128;
    /* border-color: #e6b800; */
    transform: translateY(-2px);
    color: #fff;
}

.hotel-details {
    margin-top: 50px;
    padding: 20px;
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hotel-details p {
    font-size: 1.1rem;
    color: #555;
}

/* Countdown Timer Section */
.countdown-section {
    /* background-color: #fff; */
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid #eee;
    //margin-bottom: 50px !important;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; /* Space between items on small screens */
}

.countdown-circle {
    width: 120px;
    height: 120px;
    border: 5px solid #e6b800; /* Yellow ring */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: #e6b800; /* Yellow number */
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
}
@media (max-width: 1287px){
    .hero-section-home {
        height: 190px;
    }
}

/* Responsive adjustments */
@media (max-width: 767.98px) { /* Small devices (phones) */
main{
    width:100vw; 
    margin:0 auto; 
    background-color: #eeedf2;
}
    .hero-section-home { /* Target the specific home hero section */
        /* height: 40vh;  */
        background-image: url('../images/shell-product-2.png');
        /* background-size: cover;  */
        background-position: center;
        margin-top: 0px !important;
    }

    .main-content-area,
    .event-details-section,
    .countdown-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .countdown-section {
        
    }

    .event-description {
        font-size: 1rem;
    }

    .event-bullet-points li {
        font-size: 1rem; /* Smaller font for mobile bullet points */
    }

    .section-title {
        font-size: 1.8rem;
    }

    .detail-card {
        padding: 15px;
        margin-bottom: 15px; /* Spacing between cards vertically */
    }

    .icon-circle {
        width: 95px;
        height: 95px;
        font-size: 1.8rem;
    }

    .detail-text {
        font-size: 1rem;
    }

    .hotel-details {
        margin-top: 30px;
        padding: 15px;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .hotel-details p {
        font-size: 1rem;
    }

    .countdown-item {
        flex: 0 0 50%; /* Two items per row on mobile */
        max-width: 50%;
    }

    .countdown-circle {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }

    .countdown-value {
        font-size: 2.5rem;
    }
    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) { /* Extra small devices (portrait phones) */
    .countdown-item {
        flex: 0 0 50%; /* Still two items per row for smaller phones */
        max-width: 50%;
    }
    .countdown-circle {
        width: 90px;
        height: 90px;
    }
    .countdown-value {
        font-size: 2.2rem;
    }
}
