@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inconsolata",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Righteous",  sans-serif;
  --nav-font: "Inconsolata",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #2a3b19; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #efd5e9; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #efd5e9; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #445f28; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ead1dc; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #c90076;  /* The default color of the main navmenu links */
  --nav-hover-color: #c90076; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #445f28; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #445f28; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #efd5e9; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #2a3b19;
  --default-color: #efd5e9;
  --heading-color: #efd5e9;
  --surface-color: #2a3b19;
}

.dark-background {
  --background-color: #2a3b19;
  --default-color: #efd5e9;
  --heading-color: #efd5e9;
  --surface-color: #2a3b19;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #2a3b19;
  --default-color: #efd5e9;
  --heading-color: #efd5e9;
  --accent-color: #c90076;
  --surface-color: rgba(201, 0, 118, 0);
  --contrast-color: #efd5e9;
  color: var(--heading-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 12px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --contrast-color: #c90076;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  /* ✅ Hide the mobile navigation toggle button on large screens */
  .mobile-nav-toggle {
    display: none !important;
  }

  /* ✅ Ensure the desktop menu is always visible */
  .navmenu {
    display: block !important; /* ✅ Prevent accidental hiding */
    padding: 0;
  }

  .navmenu ul {
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 15px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    color: #efd5e9;
    background-color: transparent;
    border: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu a:hover {
    color: #ffffff;
    background-color: #e31c79;
    border: 2px solid #e31c79;
    border-radius: 5px;
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: #e31c79;
    border: 2px solid #e31c79;
    border-radius: 5px;
  }

  .navmenu .active+li a {
    color: #efd5e9;
    background-color: transparent;
    border: none;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .navmenu {
    display: none; /* ✅ Hide menu initially */
  }

  .mobile-nav-active .navmenu {
    display: block !important; /* ✅ Show menu when active */
  }
}
  /* ✅ Burger Button */
  .mobile-nav-toggle {
    color: #e31c79 !important; /* Pink burger icon */
    font-size: 32px;
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent !important; /* No background */
    border: none;
    cursor: pointer;
    z-index: 9999;
    transition: color 0.3s ease-in-out;
  }

  /* ✅ Change Burger to Cross when Active */
  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff !important; /* White when menu is open */
  }

  /* ✅ Mobile Menu */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  /* ✅ Mobile Menu Container */
  .mobile-nav-active .navmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    transition: 0.3s;
    padding-top: 60px; /* Ensures the header is not hidden */
    z-index: 9998;
  }

 /* ✅ Mobile Menu List - Adjusted */
.mobile-nav-active .navmenu ul {
    display: block;
    list-style: none;
    position: fixed;
    inset: 60px 20% 20px 20%; /* ✅ 60% width (20% margin on each side) */
 max-height: 60vh; /* ✅ Limits height to 60% of viewport */
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.9); /* ✅ Dark  with 90% opacity */
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9999;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15); /* ✅ Lighter shadow */
}

  /* ✅ Mobile Menu Links */
  .mobile-nav-active .navmenu a,
  .mobile-nav-active .navmenu a:focus {
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    color: #efd5e9 !important; /* Pale pink text */
    background-color: transparent;
    border: none;
  }

  /* ✅ Mobile Menu Hover & Active State */
  .mobile-nav-active .navmenu a:hover,
  .mobile-nav-active .navmenu .active {
    color: #ffffff !important;
    background-color: #e31c79 !important; /* Pink hover */
    border-radius: 5px;
  }

  /* ✅ Ensure Menu Stays Below Header */
  .mobile-nav-active #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2a3b19; /* Keep background same as header */
    z-index: 10000; /* Ensure it is above the menu */
  }

  /* ✅ Prevents Scrolling When Menu is Open */
  .mobile-nav-active {
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #e31c79;
  border-color: #e31c79;
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #e31c79;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
  --default-color: #efd5e9;
  --contrast-color: #c90076;
  overflow: visible;
  margin-bottom: 100px;
  /* Reduced margin */
  /* 🔥 Contrasted Background */
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  /* ✅ Navigation buttons (smaller size) */
  /* ✅ Pagination bullets (smaller) */
}

.slider .section-title {
  text-align: center;
}

.slider .section-title h2 {
  color: #efd5e9;
  text-transform: uppercase;
  font-size: 50px;
  /* Reduced font size */
}

.slider .section-title p {
  color: var(--contrast-color);
}

.slider .services-carousel-wrap {
  position: relative;
  margin-bottom: -70px;
  /* Reduced height */
}

.slider .swiper-wrapper {
  height: auto;
}

.slider .service-item {
  position: relative;
  overflow: hidden;
  /* ✅ Maintain 1:1.5 aspect ratio for images only */
}

.slider .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.slider .service-item img {
  width: 100%;
  /* Full width */
  height: auto;
  aspect-ratio: 2/3;
  /* Fixing the correct 1:1.5 ratio */
  object-fit: cover;
  display: block;
}

.slider .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 10px;
  /* Adjusted positioning */
  left: 10px;
  right: 10px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.slider .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.slider .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.slider .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.slider .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.slider .service-item:hover img {
  transform: scale(1.1);
  /* Reduced hover effect */
}

.slider .navigation-prev,
.slider .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 40px;
  /* Reduced button size */
  height: 40px;
  background: var(--contrast-color);
  border: none;
  transition: 0.3s all ease;
}

.slider .navigation-prev i,
.slider .navigation-next i {
  font-size: 1.8rem;
  /* Reduced arrow size */
}

.slider .navigation-prev:hover,
.slider .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.slider .navigation-prev {
  left: 10px;
}

.slider .navigation-next {
  right: 10px;
}

.slider .swiper {
  padding-bottom: 40px;
  /* Reduced space below slider */
}

.slider .swiper-pagination {
  bottom: 0px;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 15px;
  /* Reduced bullet size */
  height: 3px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}
@media (max-width: 992px) {
  .swiper {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Ensure slider images are consistent in height */
  .slider .swiper-slide img {
    max-height: 300px !important; /* Set a maximum height for the images */
    object-fit: cover !important; /* Ensure images cover the space without distortion */
    width: 100% !important; /* Ensure images take the full width of the slide */
    height: auto !important; /* Ensure the height adjusts according to aspect ratio */
  }
}

  .swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .swiper-button-prev, 
  .swiper-button-next {
    display: block !important; /* ✅ Ensure buttons are visible */
    opacity: 1 !important;
  }
}

@media (min-width: 992px) {
  .swiper {
    display: flex !important; /* ✅ Keep desktop display intact */
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --default-color: #c90076;
  --accent-color: #c90076;
  --surface-color: #445f28;
  --contrast-color: #efd5e9;
  /* Align the email input form container to the left */
  /* Responsive adjustments */
}

.call-to-action .content {
  padding: 10px 0;
  /* Reduce the font size for the heading */
}

.call-to-action .content h2.cta-heading {
  font-size: 1.5rem !important;
  /* Ensure override with !important */
  font-weight: 300;
}

.call-to-action .content .form-subscribe {
  text-align: left !important;
  /* Force left alignment */
}

.call-to-action .content .form-subscribe .form-control {
  border: 2px solid var(--accent-color);
  background: var(--surface-color);
  border-radius: 0;
}

.call-to-action .content .form-subscribe input[type=email] {
  height: 63px !important;
  color: var(--default-color);
  width: 100%;
  /* Ensure input takes full width */
}

.call-to-action .content .form-subscribe input[type=email]:focus {
  box-shadow: none;
}

.call-to-action .content .form-subscribe input[type=email]::placeholder {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.call-to-action .content .form-subscribe input[type=submit] {
  font-size: 1rem !important;
  /* Adjust button text size */
  padding: 10px 20px;
  /* Adjust button padding */
  background-color: #e31c79;
  /* Default background color (pink) */
  color: black;
  /* Default text color */
  border: 2px solid #e31c79;
  /* Match border color to the background */
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Smooth color transition */
}

.call-to-action .content .form-subscribe input[type=submit]:hover,
.call-to-action .content .form-subscribe input[type=submit]:active,
.call-to-action .content .form-subscribe input[type=submit]:focus {
  background-color: #efd5e9 !important;
  /* Active background color (light pink) */
  color: #e31c79 !important;
  /* Active text color (pink) */
  border-color: #e31c79;
  box-shadow: none;
  outline: none;
}

.call-to-action .content .loading,
.call-to-action .content .error-message,
.call-to-action .content .sent-message {
  margin-top: 15px;
}

.call-to-action .content .btn {
  border-radius: 0;
}

.call-to-action .col-lg-4 {
  text-align: left !important;
}

@media (max-width: 992px) {
  .call-to-action .col-lg-6 h2.cta-heading {
    font-size: 1.4rem !important;
    /* Ensure change on tablets */
  }

  .call-to-action .col-lg-4 {
    text-align: center !important;
    /* Center align form on smaller screens */
  }
}

@media (max-width: 768px) {
  .call-to-action .col-lg-6 h2.cta-heading {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 576px) {
  .call-to-action .col-lg-6 h2.cta-heading {
    font-size: 1rem !important;
    /* Further reduce font size on small screens */
  }

  .call-to-action .form-subscribe input[type=email] {
    font-size: 0.9rem !important;
    /* Adjust input font size for mobile screens */
  }

  .call-to-action .form-subscribe input[type=submit] {
    font-size: 0.9rem !important;
  }
}

/*--------------------------------------------------------------
# Portfolio 2 Section
--------------------------------------------------------------*/

.portfolio-2 .left-column .extra-title {
    font-family: var(--heading-font);
    font-size: 30px; /* Adjust size as needed */
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0px;
    text-align: left;
    padding-left: 20px; /* Align with the grid items */
}

.portfolio-2 .left-column .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.portfolio-2 .left-column .image-container img {
    width: 100%; /* Ensures the image takes full width of its container */
    height: auto; /* Maintains the original aspect ratio */
    object-fit: contain; /* Prevents cropping and ensures the full image is displayed */
    max-width: 100%; /* Ensures the image does not overflow */
    display: block;
}

/* ✅ Wrap the image & text in a single container */
.left-column-box {
    background: rgba(239, 213, 233, 0.5); /* Pink with 50% transparency */
    padding: 10px; /* ✅ Increased padding for better spacing */
    border-radius: 10px; /* Soft rounded corners */
    text-align: center;
    margin-top: 20px; /* ✅ Adjust this value as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ✅ Ensure image stays full-width within the box */
.left-column-box .image-container img {
    width: 100%; /* Ensure it scales properly */
    border-radius: 5px; /* Keep design consistency */
}

/* ✅ Style text inside the container */
.left-column-text {
    margin-top: 5px; /* ✅ Adjusted spacing */
    padding: 10px;
    color: var(--default-color); /* Ensure text remains readable */
    font-family: var(--default-font);
    font-size: 14px;
    text-align: justify;
}

/* ✅ Fix Positioning of Left Column on Mobile */
@media (max-width: 992px) {
    .portfolio-2 .left-column {
        order: 2 !important; /* ✅ Moves left column BELOW portfolio */
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 15px !important; /* ✅ Adjust padding */
        margin-top: 20px !important; /* ✅ Ensure spacing */
    }

    .portfolio-2 .image-container img {
        max-width: 100% !important;
        display: block !important;
        margin: 0 auto !important;
    }
}
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

.portfolio-filters li {
    cursor: pointer;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: bold;
    background: rgba(239, 213, 233, 0.5); /* Transparent pale rose */
    border-radius: 5px;
    color: black;
    transition: all 0.3s ease-in-out;
}

.portfolio-filters li:hover,
.portfolio-filters .filter-active {
    background: #e31c79;
    color: white;
}
.portfolio-2 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-2 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio-2 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio-2 .portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ✅ Align to the left */
  text-align: left; /* ✅ Align text inside */
  background-color: var(--surface-color);
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  margin: 0 2px;
  margin-bottom: 15px;
  /* ✅ Image with fixed 2:3 ratio */
  /* ✅ Container for event details */
}

.portfolio-2 .portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-2 .portfolio-item .portfolio-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  border-radius: 5px 5px 0 0;
  margin-top: 10px;
}

.portfolio-2 .portfolio-item .portfolio-info {
  width: 100%;
  padding: 8px 8px;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  text-align: center;
  border-radius: 0 0 5px 5px;
  transition: all 0.3s ease-in-out;
  min-height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -4px;
  /* ✅ Reduced space between image and text */
  /* ✅ Magnifier & Link on the Same Line */
}

.portfolio-2 .portfolio-item .portfolio-info h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px;
  /* ✅ Reduced spacing */
  line-height: 1.2;
}

.portfolio-2 .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-bottom: 3px;
  /* ✅ Reduced spacing */
  line-height: 1.2;
}

/* ✅ Ensures both links are on the same line */
.portfolio-2 .portfolio-item .portfolio-info .portfolio-links {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 15px !important;
  width: 100%;
}

/* ✅ Style each link */
.portfolio-2 .portfolio-item .portfolio-info .preview-link,
.portfolio-2 .portfolio-item .portfolio-info .details-link {
  display: flex !important;
  align-items: center !important;
  font-size: 14px !important;  /* ✅ Same as navigation */
  font-family: "Inconsolata", sans-serif !important;
  font-weight: 700 !important; /* ✅ Ensures same boldness as the nav menu */
  text-transform: none !important;
  color: var(--default-color) !important;
  transition: 0.3s;
  white-space: nowrap !important; /* ✅ Prevents line breaks */
}

/* ✅ Ensure icon + text align properly */
.portfolio-2 .portfolio-item .portfolio-info .link-container {
  display: flex !important;
  align-items: center !important;
}

/* ✅ Adjust spacing between icon and text */
.portfolio-2 .portfolio-item .portfolio-info .link-container i {
  font-size: 14px !important;
  margin-right: 6px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* ✅ Hover effect */
.portfolio-2 .portfolio-item .portfolio-info .preview-link:hover,
.portfolio-2 .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color) !important;
}

.portfolio-2 .left-column {
  position: relative;
  border-right: 6px solid #e31c79;
  padding-right: 15px;
}

.portfolio-2 .image-container {
  position: sticky;
  top: 0;
  max-width: 100%;
  margin-bottom: 20px;
}

.portfolio-2 .image-container img {
  width: 100%;
  max-width: 1080px;
  height: auto;
  aspect-ratio: 2/3;
}

.portfolio-2 .right-column {
  padding-left: 15px;
}

.portfolio-2 .row {
  justify-content: flex-start; /* ✅ Align items to the left */
}

.portfolio-2 .col-lg-2 {
  flex: 0 0 20%;
  max-width: 20%;
}

.portfolio-2 .col-lg-10 {
  flex: 0 0 80%;
  max-width: 80%;
}

.portfolio-2 .col-lg-3 {
  flex: 0 0 calc(25% - 4px);
  max-width: calc(25% - 4px);
}

@media (max-width: 992px) {
  .portfolio-2 .left-column {
    border-right: none;
    text-align: center;
    display: block !important; /* ✅ Ensure it stays visible */
    order: 2 !important; /* ✅ Forces left column BELOW portfolio */
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px !important;
    margin-top: 20px !important; /* ✅ Adds spacing */
  }

  .portfolio-2 .image-container img {
    max-width: 100%;
  }

  .portfolio-2 .col-lg-2 {
    display: none;
  }

  .portfolio-2 .col-lg-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .portfolio-2 .col-md-6 {
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }
}

@media (max-width: 768px) {
  /* ✅ Move the Left Column Below the Right Column */
  .portfolio-2 {
    display: flex !important;
    flex-direction: column-reverse !important; /* Forces the left column below */
  }

  /* ✅ Ensure the Row Follows the Correct Order (Items in HTML order) */
  .portfolio-2 .row {
    display: flex !important;
    flex-direction: column !important;
  }

  /* ✅ Adjust the Left Column */
  .portfolio-2 .left-column {
    order: 2 !important; /* Ensures the left column stays below */
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px !important;
    text-align: center !important;
  }

  /* ✅ Adjust the Right Column */
  .portfolio-2 .right-column {
    order: -1 !important; /* Ensures the right column is on top */
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  /* Portfolio Item Setup */
  .portfolio-2 .portfolio-item {
    width: 50% !important; /* Each item takes 50% of the width */
    margin-bottom: 10px !important; /* Space between items */
    box-sizing: border-box;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 0 auto; /* Center the item horizontally */
  }

  /* Ensure Image is Properly Sized */
  .portfolio-2 .image-container img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important; /* Ensures image doesn't get distorted */
  }

  /* Correct Title Position */
  .portfolio-2 .section-title {
    order: 1 !important; /* Ensure title stays at the top */
    margin-bottom: 10px !important; /* Adds space below the title */
  }
}
@media (max-width: 992px) {
  /* ✅ Move the Left Column Below the Right Column */
  .portfolio-2 .row {
    flex-direction: column
  }

  /* ✅ Make the Left Column Full Width */
  .portfolio-2 .left-column {
    order: 1; /* ✅ Ensures left column stays below */
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    border-right: none !important; /* Remove side border */
    padding: 15px !important; /* Add space */
    margin-top: 20px !important; /* Space between sections */
  }
    .portfolio-2 .right-column {
        order: -1 !important; /* ✅ Ensures portfolio stays above */
    }
  /* ✅ Ensure Image is Properly Sized */
  .portfolio-2 .image-container img {
    width: 100% !important;
    max-width: 500px !important; /* Prevent too large images */
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

/* ✅ Fix for Mobile Layout (max-width: 576px) */


@media (max-width: 576px) {
  /* ✅ Make the portfolio-2 container a flex container */
  .portfolio-2 {
    display: flex !important;
    flex-direction: column !important; /* Stacking the columns */
    align-items: center !important; /* Centering the content */
    width: 100% !important;
  }

  /* ✅ Title should remain at the top and be centered */
  .portfolio-2 .section-title {
    width: 100% !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important; /* Add spacing below title */
    order: 0 !important; /* Make sure title stays at the top */
  }

  /* ✅ Ensure the Right Column is on top */
  .portfolio-2 .right-column {
    order: 1 !important; /* Place right column first */
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  /* ✅ Left Column should move below the Right Column */
  .portfolio-2 .left-column {
    order: 2 !important; /* Place left column below */
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px !important;
    text-align: center !important;
  }

  /* ✅ Portfolio items should take full width of the page */
  .portfolio-2 .portfolio-item {
    width: 100% !important; /* One item per row */
    margin-bottom: 20px !important; /* Space between items */
    box-sizing: border-box !important;
    /* display: flex !important; */
    flex-direction: column !important;
    align-items: center !important;
    /* margin: 0 auto !important; */ /* Center the item horizontally */
  }

  /* ✅ Ensure Image is Properly Sized */
  .portfolio-2 .image-container img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important; /* Ensure images aren't distorted */
  }
}
  #lightbox-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  #lightbox-description {
    font-size: 13px !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  /* ✅ Ensure the close button is always visible */
  .close-lightbox {
    top: 50px !important;
    right: 50px !important;
    font-size: 50px !important;
  }
}
/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  --accent-color: #c90076;
}

.contact-2 .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact-2 .info-item i {
  font-size: 20px;
  color: var(--default-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-2 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-2 .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact-2 .php-email-form {
    padding: 20px;
  }
}

.contact-2 .php-email-form input[type=text],
.contact-2 .php-email-form input[type=email],
.contact-2 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .php-email-form input[type=text]:focus,
.contact-2 .php-email-form input[type=email]:focus,
.contact-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-2 .php-email-form input[type=text]::placeholder,
.contact-2 .php-email-form input[type=email]::placeholder,
.contact-2 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-2 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: #e31c79;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* ✅ Ensure "La Famille" title appears correctly */
#team::before {
    content: "La Famille"; /* Title text */
    display: block;
font-family: var(--heading-font); /* Same font as other section titles */
    font-size: 32px; /* Same as other section titles */
    font-weight: 700;
    color: var(--heading-color); /* Matches design */
    text-transform: sentence case;
    text-align: center;
    margin-bottom: 20px; /* Control spacing */
}

/* Team Section */
.team-section {
    background: #1f261c; /* Darker background for the whole section */
    padding: 40px 0;
}

.team-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Team Card */
.team-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

/* Team Content (Each Box) */
.team-content {
    display: flex;
    align-items: center;
    background: rgba(239, 213, 233, 0.5); /* Pale Rose with 50% transparency */
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    min-height: 120px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Logo Styling */
.team-logo {
    flex: 0 0 80px; /* Logo stays at a fixed size */
    margin-right: 15px;
}

.team-logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

/* Team Text Styling */
.team-text {
    flex: 1; /* Takes up remaining space */
}

.team-text h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #efd5e9;
}

.team-text p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
  background-color: #2a3b19 !important; /* ✅ Green background */
  padding: 50px 0;
  text-align: center;
}

/* ✅ Instagram Feed Section */
.instagram-feed {
  background-color: #445f28 !important; /* ✅ Darker green background behind Instagram post */
  padding: 50px 0;
  text-align: center;
}

/* ✅ Title Styling */
.instagram-feed .section-title {
  font-size: 2rem;
  color: #efd5e9 !important; /* ✅ Pink color */
  margin-bottom: 20px;
}

/* ✅ Instagram Widget Styling */
.lightwidget-widget {
  max-width: 100%;
  height: auto;
  aspect-ratio: 4/3; /* Ensures proper ratio */
  display: block;
  margin: 0 auto;
  border-radius: 10px; /* Optional rounded corners */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* ✅ Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dark semi-transparent overlay */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* ✅ Lightbox Content */
.lightbox-content {
  background: var(--background-color); /* Uses site’s global background color */
  padding: 25px;
  max-width: 600px;
  text-align: center;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  font-family: var(--default-font);
}

/* ✅ Lightbox Image */
#lightbox-image {
  height: 300px !important; /* Keeps all images at the same height */
  width: auto !important; /* Adjusts width automatically to maintain aspect ratio */
  object-fit: contain !important; /* Ensures full image is visible, no cropping */
  display: block !important;
  margin: 0 auto !important;
  border-radius: 5px !important;
}

/* ✅ Lightbox Title */
#lightbox-title {
  font-size: 22px;
  color: var(--accent-color); /* Uses your site’s accent color */
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 600;
margin-top: 5px;
  margin-bottom: 5px;
}

/* ✅ Lightbox Description */
#lightbox-description,
.lightbox-content p {
  font-size: 14px !important;
  font-family: "Inconsolata", sans-serif !important;
  text-transform: none !important;
  font-weight: 500 !important;
  text-align: left !important;
  line-height: 1 !important;
  color: var(--default-color) !important;
  background: var(--background-color) !important;
  padding: 10px 10px !important;
  border: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ✅ Close Button */
.close-lightbox {
  position: absolute;
  top: 50px;
  right: 15px;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  color: var(--default-color);
  transition: 0.3s;
}

.close-lightbox:hover {
  color: var(--accent-color); /* Highlight close button on hover */
}
