* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}


h1.summer-package-title{
    font-size: 1.2rem;
    font-family: "Lora",serif;
    color: rgb(24, 24, 24);
    font-weight: 500;
    line-height: 26px;
    min-height: 52px;
    margin-top: 7px;
    position: relative;
    transition: color 0.3s ease;
}
h1.summer-package-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px; 
    background-color: #EE7004;
    transition: width 0.3s ease;
}

h1.summer-package-title:hover::after {
    width: 100%;
    background-color: #EE7004;
}

.summer-special-offer-image {
    margin: 2% 0%;
    width: 100%;
    height: 22rem;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden; /* Prevents overflow when scaling */
}
.package-prise{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    margin-top: 16px;
}
.package-prise a.summer-special-package-prise {
    width: auto;
    height: auto;
    padding: 3% 4%;
    background-color: #EE7004;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    /* border: 2px solid #f3d3b6; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
}

.package-prise a.summer-special-package-prise:hover {
    animation: shake 0.6s ease-in-out 1;
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5); */
}
.summer-special-package-prise span{
    font-size: 0.9rem;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}
.package-prise p{
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: #000000;
    margin-top: 3.5%;
}

.summer-special-offer-image {
    display: block;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-image: url(../images/site/banner/summer-special-offer-banner.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.summer-special-offer-image h2{
    font-family: Nunito, "sans-serif";
    font-size: 3rem;
    color: #ffffff;
    z-index: 1;
    /* margin-bottom: 2%; */
}

.summer-special-offer-image h3{
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    z-index: 1;
}

.summer-special-offer-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay effect */
    transition: background 0.3s ease;
}

.summer-special-offer-image:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}
