/* .nav-links a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
} */

.nav-links a:hover {
  color: #BC2649
}

/* Base styles and animations */
:root {
    --primary-color: #BC2649;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-regular: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Revealing animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Service section animations */
.service-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-section.visible .service-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-section.visible .service-content-reverse {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Enhanced button styles */
.btn {
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    color: white;
    border-color: var(--primary-color);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-filled {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-filled:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-filled:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Service item animations */
.service-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-section.visible .service-item {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.service-section.visible .service-item:nth-child(1) {
    animation-delay: 0.6s;
}

.service-section.visible .service-item:nth-child(2) {
    animation-delay: 0.8s;
}

.service-section.visible .service-item:nth-child(3) {
    animation-delay: 1s;
}

/* Image slider enhancements */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-regular);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.95);
}

.service-section.visible .image-container {
    animation: scaleIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.image-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    opacity: 0;
    transform: scale(1.1);
    transition: var(--transition-smooth);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Arrow navigation enhancements */
.arrow-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.arrow {
    width: 40px;
    height: 40px;
    background: rgba(188, 38, 73, 0.9); /* Using primary color with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.arrow:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.4);
}

.arrow svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20px;
    height: 20px;
}

.arrow svg path {
    stroke: white;
    stroke-width: 2;
}

.arrow:hover svg {
    transform: scale(1.2);
}

/* Responsive arrow styles */
@media (max-width: 768px) {
    .arrow {
        width: 35px;
        height: 35px;
    }
    
    .arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .arrow {
        width: 30px;
        height: 30px;
    }
    
    .arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Service info enhancements */
.service-info {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-regular);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.service-section.visible .service-info {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.service-info:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-info h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-info:hover h3::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .service-section {
        padding: 30px 20px;
    }

    .service-info {
        padding: 20px;
    }

    .service-item:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 20px 15px;
    }

    .service-info {
        padding: 15px;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-section {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Touch gesture support */
@media (hover: none) {
    .service-item:hover {
        transform: none;
    }

    .service-info:hover {
        transform: none;
    }

    .image-container:hover {
        transform: none;
    }
}

/* Hamburger Menu Styles */

.hamburger span {
  width: 100%;
  height: 2px;
  background-color:white;
  transition: all 0.3s ease;
}

/* Hamburger Menu Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Responsive Navbar Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    
  }

 

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-buttons {
    display: none;
  }

  /* Optional: Show nav buttons in mobile menu */
  .nav-links.active .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    height: 40px;
  }
}


.services-section {
        padding: 56px 70px;
}


@media (max-width: 480px) {
    .services-section {
        padding: 50px 25px;
    }
}



/* Breadcrumb styles */
.breadcrumb {
    padding: 30px 60px;
    background-image: url('images/houseboat_2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    position: relative;
    height: 180px;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.breadcrumb:hover::before {
    opacity: 0.8;
}

.breadcrumb-item, 
.breadcrumb-separator, 
.breadcrumb-current {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item:hover {
    color: #fff;
    transform: translateY(-1px);
}

.breadcrumb-separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.breadcrumb-separator svg {
    transition: transform 0.3s ease;
}

.breadcrumb:hover .breadcrumb-separator svg {
    transform: translateX(2px);
}

.breadcrumb-current {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.breadcrumb-current::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #BC2649;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.breadcrumb-current:hover::after {
    transform: scaleX(1);
}

/* Responsive styles */
@media (max-width: 992px) {
    .breadcrumb {
        padding: 25px 40px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 20px 30px;
        height: 140px;
        font-size: 14px;
    }
    
    .breadcrumb-separator {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 15px 20px;
        height: 120px;
        font-size: 13px;
    }
    
    .breadcrumb-separator {
        margin: 0 6px;
    }
    
    .breadcrumb-separator svg {
        width: 12px;
        height: 12px;
    }
}

.service-cta {
    margin-top: 2rem;
    text-align: left;
}

.service-cta .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

/* Mobile responsiveness for buttons */
@media (max-width: 768px) {
    .btn {
        padding: 10px 24px;
        font-size: 13px;
        min-width: 100px;
    }

    .service-cta {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .service-cta .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .btn:hover {
            transform: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .btn:active {
            transform: scale(0.98);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        }
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 8px 20px;
        font-size: 12px;
        min-width: 90px;
    }

    .service-cta .btn {
        max-width: 180px;
    }
}

/* Add ripple effect for buttons */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Hero section animations */
.hero-about {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-about.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-about.visible .hero-content {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-about.visible .hero-image-wrapper {
    animation: scaleIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* Responsive animations */
@media (max-width: 768px) {
    .service-section.visible .service-item {
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .service-section.visible .service-item:nth-child(1) {
        animation-delay: 0.4s;
    }
    
    .service-section.visible .service-item:nth-child(2) {
        animation-delay: 0.6s;
    }
    
    .service-section.visible .service-item:nth-child(3) {
        animation-delay: 0.8s;
    }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .service-section,
    .service-content,
    .service-content-reverse,
    .image-container,
    .service-info,
    .service-item,
    .service-cta,
    .hero-about,
    .hero-content,
    .hero-image-wrapper {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
