@import url('https://fonts.googleapis.com/css2?family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

.my-text {
    font-family: "Winky Sans", sans-serif;
}

body {
    background-color: #FFF0DC !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*For Header*/
header {
    background-color: #FFF0DC;
}

.Junmar img {
    width: 200px;
}

.reserve-btn {
    padding: 10px 20px;
    font-size: 15px;
    background-color: #F0BB78;
    border-radius: 50px;
    border: 1px solid #000000;
    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    color:#000000;
}

.reserve-btn:hover {
    transform: scale(1.05);
    color:#000000;
}

/*Header and About Us*/
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

/*Navbar*/
.navbar {
    background-color: #F0BB78;
    border: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.navbar-toggler {
    outline: none !important;
    padding: 0 !important;
}

.navbar-toggler img {
    width: 35px;
}

.nav-link {
    color: black !important;
    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    margin-left: 5px;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.Welcome-msg {
    font-family: "Winky Sans", sans-serif;
    font-size: 50px;
    text-shadow: 0 0 10px #ffbf6b, 0 0 20px #ffbf6b, 0 0 30px #ffbf6b; /* Glowing effect */
    animation: glow 1.5s ease-in-out infinite alternate; /* Pulsing glow */
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #000, 0 0 5px #000, 0 0 10px #000;
    }
    to {
        text-shadow: 0 0 4px #ffbf6b, 0 0 6px #ffbf6b, 0 0 8px #ffbf6b;
    }
}

.msg {
    font-family: "Winky Sans", sans-serif;
    font-size: 25px;
}

/*First Section*/
.hero {
    background: url('/images/bg4.jpg') no-repeat center center/cover;
    position: relative;
    color: #ffffff;
    padding: 150px 20px;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
  
    position: relative;
    color: #ffffff;
    min-height: 70vh;
    padding: 60px 20px; /* breathing room on small screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* prevents weird overflow on some devices */
}

/* Larger screens: enable the nice fixed/parallax effect */
@media (min-width: 769px) {
  .hero {
    background-attachment: scroll; /* Parallax-like feel on desktop */
    min-height: 100vh; /* Full viewport height feels premium */
    padding: 150px 40px; /* Your original large padding */
  }
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding-top: 100px;
    padding-bottom: 100px;
    margin-right: 200px;
    margin-left: 200px;
  
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 50px 20px;
        margin: 0 auto;
        width: 90%;
        text-align: center;
    }
    .hero-overlay h2,
    .hero-overlay p {
        word-wrap: break-word;
        font-size: 1.2rem;
    }
}

/* FOOTER */
.ers-footer-16 .container-fluid .row.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    background-color: #FFF0DC;
    font-family: 'Inter', sans-serif;
}

.ers-footer-16 .container-fluid .row .col-md-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 200px;
  
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    margin-right: 10px;
}

/* Media query for medium screens */
@media (min-width: 768px) {
    .ers-footer-16 .container-fluid .row.footer-row {
        justify-content: center;
    }
}

/* Media query for small screens */
@media (max-width: 768px) {
    .ers-footer-16 .container-fluid .row.footer-row {
        justify-content: center;
    }
    .ers-footer-16 .container-fluid .row .col-md-3 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.footer-menu {
    color: #000000;
}

.footer-contactus {
    color: #000000;
}

.footer-menu h3{
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-contactus h3{
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-content ul{
    text-align: center;
}

.footer-menu .list{
    padding: 0;
}

.footer-menu .list li{
    width: auto;
    text-align: center;
    list-style-type:none;
    padding: 4px;
    position: relative;
}

.footer-menu .list li::before{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #F0BB78;
    transition-duration: .5s;
}

.footer-menu .list li:hover::before{
    width: 70px;
}

.social-icons{
    text-align: center;
    padding: 0;
}

.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 5px;
}

.footer-menu a{
    text-decoration: none;
    color: #000000;
}

.footer-menu a:hover{
    color: #F0BB78;
}

.copyright {
    background-color: #000000;
    color: #ffffff;
}

/* OUR RENTALS CAROUSEL*/
#slider {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 40px auto 5px;
    background-color: #FFF0DC;
    color: #000000;
}

.container-slider {
    width: 1600px;
    margin: auto;
}

.subcontainer {
    width: 85%;
    margin: auto;
}

.slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: 400px;
    padding: 0 10px;
}

.slider-wrapper {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-wrapper h2 {
    margin-bottom: 20px;
}

.slide-img {
    width: 100%;
    height: 350px;
    max-height: 100%;
    border-radius: 5px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    filter: drop-shadow(0 1px 2px #fff);
}

.slide-img:hover {
    box-shadow: 0 0 0 200px rgba(84, 58, 20, 0.4) inset;
}

.slide-img a {
    opacity: 0;
    text-decoration: none;
    transform: scale(0);
    transition: 0.8s;
    font-size: 1.5rem;
    color: #ffffff;
}

.slide-img:hover a {
    opacity: 1;
    transform: scale(1);
}

@media(max-width: 1600px) {
    .container-slider {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container-slider {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .container-slider {
        width: 90%;
    }
}

#custom-controls {
    position: absolute;
    top: 50%;
    width: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

#custom-controls button {
    background: none;
    color: rgb(119, 119, 119);
    border: none;
    font-size: 50px;
    cursor: pointer;
    pointer-events: auto;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
  
}

#custom-controls button:hover {
    transform: scale(1.2);
  
}

.view-rentals {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 50px;
    font-family: "Winky Sans", sans-serif;
}

.rentals-button {
    background-color: #F0BB78;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 30px;
    box-shadow: 0 0 0 1px rgba(224, 224, 224, 0.1);
}

.rentals-button:hover {
    transform: scale(1.02);
  
}

/* ABOUT US*/
.about-section {
    background-color: #F0BB78;
    padding: 50px 0;
    margin-top: auto;
    margin-bottom: auto;
    color: #000000;
}

.about-title {
    font-size: 35px;
    font-weight: bold;
    font-family: "Winky Sans", sans-serif;
}

.icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.about-diamond {
    margin-left: -15px;
}

.about-line {
    margin-left: 29px;
    transform: scaleX(6);
}

.about-text {
    font-size: 19px;
    color: #000000;
    line-height: 1.6;
    font-family: "Winky Sans", sans-serif;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.about-image:hover {
    transform: scale(1.05);
}

/*CONTACT SECTION*/
.contact-section {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
  
}

.contact-text {
    margin-bottom: 50px;
  
}

.send-button {
    background-color: #F0BB78;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
    padding: 8px 10px;
    box-shadow: 0 0 0 1px rgba(224, 224, 224, 0.1);
}

.send-button:hover {
    transform: scale(1.02);
}

#contact input,
#contact textarea {
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact form {
    max-width: 700px;
    margin: 0 auto;
}

#contact input {
    padding: 12px;
}

#contact textarea {
    height: 120px;
}

/*FAQS SECTION*/
.faqs-section {
    background-color: #ffffff;
    color: #000000;
}

.faqs-container {
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    margin: auto;
    padding-bottom: 60px;
    background-color: #ffffff;
    padding: 0 0 10% 0;
}

.faqs-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    padding: 15% 0 0 0;
    font-family: "Winky Sans", sans-serif;
}

.faqs-item {
    padding: 10px 0;
}

.faqs-question {
    border: none;
    background-color: #F0BB78;
    border-radius: 10px 10px 0 0;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    color: #000000;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    font-family: "Winky Sans", sans-serif;
}

.faqs-question:hover {
    background-color: #e8a85f;
}

.faqs-question:focus {
    outline: none;
}

.faqs-icon {
    font-size: 1.5rem;
    color: #000000;
    transition: transform 0.3s ease;
}

.faqs-answer {
    padding: 1;
    font-size: 1.1rem;
    display: block;
    border-radius: 0 0 10px 10px;
    background-color: #FFF0DC;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 5px #aaaaaa;
    max-height: 0;
    overflow: hidden;
    opacity: 0; /* Added for fade effect */
    transform: scaleY(0); /* Added for smoother scaling */
    transform-origin: top; /* Makes it grow from top */
    transition: all 0.4s; /* Improved timing */
    font-family: "Winky Sans", sans-serif;
}

.faqs-answer.active {
    max-height: 500px; /* Adjust as needed */
    padding: 10px;
    opacity: 1; /* Fade in */
    transform: scaleY(1); /* Scale to full size */
}

.faqs-question.active .faqs-icon {
    transform: rotate(45deg);
}

/* ──────────────────────────────────────────────
   WAREHOUSE HOURS – Desktop + Mobile Fixes
─────────────────────────────────────────────── */

.wh-container {
    padding: 60px 20px 90px;
    background-color: #ffffff;
    font-family: "Winky Sans", sans-serif;
}

.wh-contents {
    max-width: 1240px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .wh-contents {
        display: flex;
        align-items: center;
        gap: 70px;
    }
    .wh-image {
        flex: 0 0 48%;
        max-width: 48%;
    }
    .wh-text-block {
        flex: 1;
    }
}

@media (max-width: 991px) {
    .wh-image {
        display: block;
        margin: 0 auto 45px auto;
        max-width: 85%;
    }
    .wh-text-block {
        text-align: center;
    }
}

.wh-title {
    text-align: center;
    margin: 0 0 40px 0;
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
}

.hours-section {
    max-width: 480px;
    margin: 0 auto;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 1.08rem;
}

.hours-table th,
.hours-table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid #e0d0b0;
}

.hours-table th {
    font-weight: 600;
    color: #222;
    background-color: #F0BB78 !important;
}

.hours-table td {
    background-color: #FFF0DC;
}

.hours-table tr:nth-child(even) td {
    background-color: #ffffff;
}

.hours-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px 80px;
    margin-top: 15px;
}

.call-info {
    text-align: center;
    line-height: 1.55;
}

.call-info p {
    margin: 5px 0;
    font-size: 1.15rem;
    color: #333;
}

.contact-button {
    background-color: #F0BB78;
    color: black;
    border: 1px solid #d4a15a;
    border-radius: 8px;
    padding: 14px 42px;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(240, 187, 120, 0.3);
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.contact-button:hover {
    background-color: #e8a85f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 168, 95, 0.45);
}

/* Mobile fallback */
@media (max-width: 600px) {
    .wh-title {
        font-size: 2.1rem;
    }
    .hours-table th,
    .hours-table td {
        padding: 12px 14px;
        font-size: 1rem;
    }
    .hours-bottom {
        flex-direction: column;
        gap: 30px;
    }
    .contact-button {
        width: 100%;
        max-width: 360px;
        padding: 14px 30px;
    }
}

/* ──────────────────────────────────────────────
   IMPROVED WAREHOUSE IMAGE
─────────────────────────────────────────────── */

.wh-image-enhanced {
    width: 100%;
    max-width: 520px;           /* slightly larger than before */
    height: auto;
    border-radius: 12px;        /* soft rounded corners like About Us */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    object-fit: cover;
}

/* Desktop alignment improvements */
@media (min-width: 992px) {
    .wh-image-enhanced {
        flex: 0 0 48%;
        max-width: 48%;
        margin: 0;                  /* reset any unwanted margin */
        align-self: center;         /* vertical center relative to flex row */
    }
}

/* Hover effect */
.wh-image-enhanced:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Mobile — keep centered and slightly smaller */
@media (max-width: 991px) {
    .wh-image-enhanced {
        max-width: 90%;
        margin: 0 auto 45px auto;
        display: block;
    }
}