/*---------------------------------
  GLOBAL STYLES
----------------------------------*/
body {
    padding-top: 90px; /* Prevent content from hiding under navbar */
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    background-color: #FFFFFF;
    color: #000000;
}

html {
    overflow-y: scroll; /* Prevent layout shift when scrollbars appear */
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif; /* Consistent heading font */
}

/*---------------------------------
  NAVBAR STYLES
----------------------------------*/
.navbar {
    background-color: #1d1f1e !important;
    padding: 15px 20px;
}

.navbar-brand {
    margin-right: auto; /* Align brand/logo to the left */
}

.navbar-brand .logo {
    height: 100px; /* Logo height */
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-collapse {
    justify-content: flex-end;
    flex-grow: 1; /* Expand to fill space */
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: #f5f5f5 !important;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #D4AF37 !important; /* Gold on hover or active */
}

.nav-btn {
    background-color: #ff8c00 !important;
    border: none;
    color: black !important;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.nav-btn:hover {
    background-color: #e07b00 !important;
}

/* Cart Badge Styling */
.badge {
    font-size: 14px;
    padding: 5px 10px;
}

.navbar-nav .nav-item {
    margin-right: 15px;
}

/* Responsive adjustments for navbar */
@media (max-width: 992px) {
    .navbar-collapse {
        text-align: left;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin-left: 0;
    }

    .nav-btn {
        width: 100%;
        text-align: left;
        margin: 5px 0;
    }

    .navbar-nav .nav-item {
        margin-right: 0;
    }
}

/* Hamburger animation */
.line1, .line2, .line3 {
    width: 23px;
    height: 3px;
    margin: 5px;
    transition: all 0.4s ease;
}

.change .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.change .line2 {
    opacity: 0;
}

.change .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.custom-navbar {
    padding: 5px 20px;
}

/*---------------------------------
  FOOTER STYLES
----------------------------------*/
.custom-footer {
    background-color: #1d1f1e;
}

.custom-footer a {
    text-decoration: none;
}

.custom-footer a:hover {
    text-decoration: underline;
}

.custom-footer h5 {
    font-weight: bold;
}

/*---------------------------------
  HERO SECTION
----------------------------------*/
.custom-hero-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 1rem;
}

.hero-section img {
    max-height: 400px;
    object-fit: cover;
}

.hero-line {
    background-color: #f3f5f9;
}


.hero-img {
    max-height: 300px;
    height: 300px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Buzz Out Hover Effect */
.buzz-hover {
    transition: transform 0.2s;
}

.buzz-hover:hover {
    animation: buzz-out 0.5s linear;
}

@keyframes buzz-out {
    10% { transform: translateX(3px) rotate(2deg); }
    20% { transform: translateX(-3px) rotate(-2deg); }
    30% { transform: translateX(3px) rotate(2deg); }
    40% { transform: translateX(-3px) rotate(-2deg); }
    50% { transform: translateX(2px) rotate(1deg); }
    60% { transform: translateX(-2px) rotate(-1deg); }
    70% { transform: translateX(1px) rotate(1deg); }
    80% { transform: translateX(-1px) rotate(-1deg); }
    90% { transform: translateX(0.5px) rotate(0.5deg); }
    100% { transform: translateX(0); }
}

/* Text Shadow */
.text-shadow {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}



/*---------------------------------
  BUTTON STYLES
----------------------------------*/
.contact-btn,
.learn-more-btn,
.btn-orange,
.btn-book {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    color: #fff;
}

.contact-btn, .learn-more-btn, .btn-orange, .btn-book {
    background-color: #ff8c00;
}

.contact-btn:hover,
.learn-more-btn:hover,
.btn-orange:hover,
.btn-book:hover {
    background-color: #e67600;
}

/* Shake animation for learn-more button */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

.learn-more-btn:hover {
    animation: shake 0.5s ease-in-out;
}

/*---------------------------------
  TESTIMONIAL & PRICING CARDS
----------------------------------*/
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.testimonial-card p {
    margin-bottom: 0.5rem;
}

.price-card {
    background-color: #ff8c00;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card i {
    font-size: 3rem;
    color: #000;
}

.price-text {
    font-weight: bold;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/*---------------------------------
  CONTAINERS & SPACING
----------------------------------*/
.rounded-container {
    background-color: #f3f5f9;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Social icons spacing */
.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 576px) {
    .top-bar {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .social-icons {
        gap: 0.25rem;
        margin-left: 0.5rem;
    }
}

/*---------------------------------
  SERVICE PAGE
----------------------------------*/
.service-hero img {
    max-height: 400px;
    object-fit: cover;
}

.service-overlay {
    color: white;
}

.service-section ul li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.why-choose-us {
    background-color: #f3f5f9;
}

.why-choose-us i {
    display: block;
}

/* Price List Table */
.service-price-list table {
    border-color: #ddd;
}

.service-price-list th,
.service-price-list td {
    padding: 0.75rem 1rem;
}

.service-price-list th {
    font-weight: bold;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

.gallery-img {
    width: 250px;
    height: 200px;
    object-fit: cover;
}

/*---------------------------------
  CONTACT PAGE
----------------------------------*/
form .form-control,
form .form-select,
form textarea {
    border: 2px solid #ff8c00;
    border-radius: 10px;
}

form .form-control:focus,
form .form-select:focus,
form textarea:focus {
    border-color: #e67600;
    box-shadow: 0 0 5px rgba(255,140,0,0.3);
}

.shadow {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.bg-white {
    background-color: #fff;
}

.text-orange {
    color: #ff8c00;
}

.social-section i {
    transition: transform 0.2s ease;
}

.social-section i:hover {
    transform: scale(1.2);
}

/*---------------------------------
  SUCCESS BOOKING
----------------------------------*/
.success-icon i {
    font-size: 12rem;
    color: #ff8c00;
    line-height: 1;
}

@media (max-width: 576px) {
    .success-icon i {
        font-size: 6rem;
    }
}

.success-box {
    background-color: #f3f5f9;
    padding: 2rem;
    border-radius: 1rem;
}

/*---------------------------------
  LOGIN PAGE
----------------------------------*/
.breadcrumb-custom a {
    font-weight: bold;
    color: black;
    text-decoration: none;
    font-size: 12px;
}

.login-wrapper {
    min-height: calc(100vh - 250px);
    padding-top: 40px;
    padding-bottom: 60px;
}

.login-card {
    min-width: 320px;
    max-width: 400px;
    width: 100%;
}

/*---------------------------------
  SALE / SPECIAL OFFER
----------------------------------*/
.special-offer-section ul {
    padding-left: 1rem;
}

.special-offer-section ul li {
    list-style-type: none;
    margin-bottom: 0.5rem;
}

.gallery-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

