/* Global Styles */

body {
    color: rgb(240, 215, 219);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* Navbar Styles */

.navbar {
    background-color: #e72e77;
    top: 0;
    z-index: 999;
    height: 80px;
    display: flex;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.navbar-brand {
    font-size: 1.3rem;
    color: black !important;
}

.navbar a {
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: white;
}


/* Hide default Bootstrap toggler icon */
.navbar-toggler .navbar-toggler-icon {
    display: none;
  }
  
  /* Custom Toggler Icon */
  .custom-toggler .toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    position: relative;
  }
  
  .custom-toggler .toggler-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
  }
  
  /* Animate to X */
  .custom-toggler:not(.collapsed) .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  
  .custom-toggler:not(.collapsed) .toggler-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .custom-toggler:not(.collapsed) .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  
  /* Nav link hover underline */
  .nav-link {
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link:hover {
    color: #ffe6f0 !important;
  }
  
 .navbar .navbar-toggler {
  margin-left: auto;
}



/* Banner Section */

.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.banner-content,
.enquiry-form {
    flex: 1 1 50%;
    padding: 20px;
    box-sizing: border-box;
}

.banner-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.enquiry-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    margin-bottom: 15px;
}

.btn-hittu {
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    background-color: #e72e77;
    color: white;
    border: none;
    transition: 0.3s ease;
}

.btn-hittu:hover {
    background-color: #c51f61;
}

.btn-custom {
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    background-color: #fff;
    color: #e72e77;
    font-weight: bold;
    border: none;
    transition: 0.3s ease;
}

.btn-custom:hover {
    background-color: #e72e77;
    color: #fff;
}

.btn-custom:active {
    transform: scale(0.95);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .banner-content,
    .enquiry-form {
        flex: 1 1 100%;
        text-align: center;
    }
}


/* About Section */

.about-section {
    background-color: #fff0f5;
    padding: 60px 20px;
    text-align: center;
}

.about-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #c2185b;
}

.about-section p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}


/* Carousel */

.image-frame {
    width: 100%;
    max-width: 100%;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-caption-custom {
    position: absolute;
    top: 20px;
    left: 30px;
    background: rgba(231, 46, 119, 0.85);
    color: white;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
}


/* Footer Logo */

.footer-logo {
    display: inline-block;
    padding: 10px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* Responsive Fixes */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
    }
    .navbar-brand {
        margin-bottom: 10px;
    }
    .banner-content h1 {
        font-size: 24px;
    }
    .banner-content p {
        font-size: 16px;
    }
    .banner-overlay {
        flex-direction: column;
        padding: 15px;
    }
    .form-container,
    .input-box,
    input,
    textarea,
    .btn-hittu,
    .form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 10px;
    }
}

.floating-contact-group {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.floating-icon {
    background-color: #e72e77;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.floating-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.floating-icon:hover {
    transform: scale(1.1);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


/* Optional: Adjust for smaller screens */

@media (max-width: 480px) {
    .floating-icon {
        width: 42px;
        height: 42px;
        padding: 10px;
    }
    .floating-icon img {
        width: 20px;
        height: 20px;
    }
}