:root {
  --primary: #E07A5f;
  --cream: #F4F1DE;
  --brown: #8A5A44;
  --darkBlue: #3D405B;
  --secondary: #7A9F7B;
  --bodyColor: #4F4D43;
}

html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'MontserratUKarlu';
    box-sizing: border-box;

}

@font-face {
    font-family: 'CrimsonBold'; /* Name of the font */
    src: url('../brand/fonts/Crimson_Text/CrimsonText-Bold.ttf') format('truetype'); /* Adjust the path and format */
  }
  
  @font-face {
    font-family: 'MontserratUKarlu'; /* Name of the font */
    src: url('../brand/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype'); /* Adjust the path and format */
  }

  @font-face {
    font-family: 'DancingScriptUKarlu';
    src: url('../brand/fonts/DancingScript/DancingScript-VariableFont_wght.ttf') format('truetype');
  }



 h1,h2 {
    font-family: 'CrimsonBold', sans-serif;
    font-size: xxx-large;
    color: var(--primary);
  }

body {
    font-family: 'MontserratUKarlu', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .no-scroll {
    overflow: hidden; /* Prevent scrolling */
    height: 100vh; /* Ensure the body takes up full height */
}

* {
  box-sizing: border-box;
  /* outline: 1px solid red; /* Visual debugging */
}

/*     ------------------------------------------     Scroll-Bar     ------------------------------------------     */
/*     --------------------------------------------------------------------------------------------------------     */

/* Scrollbar styles for WebKit browsers */
::-webkit-scrollbar {
  width: 6px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background-color: #404E57; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
  border-radius: 0px; /* Change this value to increase the thumb radius */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary); /* Color of the thumb on hover */
}


/*     ------------------------------------------     Header     ------------------------------------------     */
/*     ----------------------------------------------------------------------------------------------------     */

#header {
  background-color: transparent; /* Initial transparent background */
  width: 100%;
  position: fixed; /* Sticky header */
  top: env(safe-area-inset-top, 0); /* Adjust for safe areas */
  box-shadow: none; /* No shadow initially */
  transition: background-color 0.5s ease, height 0.5s ease; /* Smooth transition for background and size */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14pt;
  font-family: 'MontserratUKarlu', sans-serif;
  font-weight: 500;
  z-index: 100;
  box-sizing: border-box;
  height: 60px; /* Fixed header height */
  padding: 0 20px; /* Consistent padding */
}

#header.scrolled {
    background-color: var(--primary); /* Solid background color when scrolled */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow when scrolled */
    height: 60px; /* Consistent height to prevent resizing */
    padding: 0 20px; /* Ensure padding stays the same */
}

/* logos */

.logo-container {
  display: flex;
}

.logo {
  height: max-content;
  width: 160px;
}


/*     ------------------------------------------     Mobile NAV / Hamburger menu     ------------------------------------------     */
/*     -------------------------------------------------------------------------------------------------------------------------     */


/* Menu toggle for mobile */
.menu-toggle { 
  background: none;
  border: none;
  font-size: 48px;
  cursor: pointer;
  display: flex;
  color: #f4f1de;
  transition: transform 0.3s ease; /* Slower rotation */
}

/* Rotate when active */
.menu-toggle.active {
  transform: rotate(90deg);
}


/* Mobile navigation menu */
.nav {
  position: absolute;
  top: 100%; /* Places it directly below the header */
  left: 50%;
  transform: translateX(-50%); /* Centers the menu */
  max-width: 90vw; /* Prevents it from stretching beyond screen */
  width: fit-content;
  min-width: 200px; /* Ensures it’s not too small */
  background: #fff;
  display: none; /* Hidden by default */
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Show nav with animation */
.nav.active {
  display: flex;
  animation: slideDownNav 0.2s ease-out forwards;
}

/* Slide down animation */
@keyframes slideDownNav {
  from {
    transform: translate(-50%, -10px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* Style unordered list */
.nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
  list-style: none;
}

/* Individual list items animation */
.nav li {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInNav 0.2s ease-out forwards;
}

.nav.active li:nth-child(1) { animation-delay: 0.05s; }
.nav.active li:nth-child(2) { animation-delay: 0.1s; }
.nav.active li:nth-child(3) { animation-delay: 0.15s; }
.nav.active li:nth-child(4) { animation-delay: 0.2s; }

/* Fade-in animation */
@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* List item styling */
.nav ul li {
  width: 100%;
}

/* Link styling */
.nav ul li a {
  color: var(--bodyColor);
  text-decoration: none;
  font-size: x-large;
  display: block;
  padding: 5px;
  transition: color 0.2s;
}

/* Hover effect */
.nav ul li a:hover {
  color: var(--darkBlue);
}

/* Underline animation */
.nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--darkBlue);
  transition: width 0.4s ease;
}

.nav ul li a:hover::after {
  width: 100%;
}


/*     -----------------------------------------     Language     -----------------------------------------     */
/*     ----------------------------------------------------------------------------------------------------     */



.language-dropdown {
  position: relative;
}

/* 🏳️ Language Button */
.dropdown-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease; /* Slower rotation */
}

.dropdown-btn.show {
  transform: scale(1.1);
}



.dropdown-btn img {
  height: 55px;
  width: 55px;
}

/* 🌍 Dropdown List (Hidden by Default) */
.language-list {
  position: absolute;
  top: 40px;
  right: 0;
  max-width: 90vw;
  width: 140px;

  background-color: #fcf6e6;
  display: none; /* Initially hidden */


  list-style: none;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  overflow-x: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;

}

/* ✅ When Active (Dropdown Opens) */
.language-list.show {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  animation: SlideDownLan 0.3s 1 ease-out forwards;
}

/* ✨ Animation for Dropdown Open */
@keyframes slideDownLan {
  from {
    transform: translate(-50%, -10px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* 🌍 Dropdown Items */
.language-list li {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInLan 0.3s ease-out forwards;
}

.language-list.show li:nth-child(1) { animation-delay: 0.1s; }
.language-list.show li:nth-child(2) { animation-delay: 0.2s; }

/* Fade-in animation */
@keyframes fadeInLan {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 🌎 Links Inside Dropdown */
.language-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--darkBlue);
}

/* 🏳️ Flag Icon */
.language-list li img {
  margin-left: 10px;
  width: 30px;
}

@keyframes jump {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); /* No movement */
}
40% {
    transform: translateY(-10px); /* Move up */
}
60% {
    transform: translateY(-5px); /* Slightly move up */
}
}

.jump {
  animation: jump 1.5s ease; /* Adjust duration and timing function as needed */
}


/*     ----------------------------------------     Load Cover     ----------------------------------------     */
/*     ----------------------------------------------------------------------------------------------------     */


#load-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F4F1DE;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.75s ease;
}

#load-biglogo {
  width: 50%;
  opacity: 0;
  transition: opacity 2s ease;
}

#load-cover.hidden {
  opacity: 0;
  visibility: hidden; /* Hide the cover after fade */
}







/*     ----------------------------------------     SVGs     -----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------     */


/* CHEERS */
/* CHEERS */
#cheers {
  position: absolute !important;
  top: 70%; 
  left: 10%; 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 100px;
}

#cover {
  position: relative;
}

#cheers img {
  width: 64px;
  transition: transform 0.3s ease;
}

.glsL, .glsR {
  transform-origin: bottom center;
}

/* Corrected Active Classes for Glasses */
.glsR.active-glsR {
  transform: rotate(-12deg);
}

.glsL.active-glsL {
  transform: rotate(12deg);
}

.dingL, .dingR {
  position: absolute;
  width: 25px !important;
  opacity: 0; /* Start hidden */
  transform: translateX(0) scale(0); /* Initial state */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dingL {
  left: 0;
  top: 25px;
}

.dingR {
  right: 0;
  top: 20px;
}

.dingL.active-dingL {
  transform: translateX(-5px) scale(1);
  opacity: 1;
}

.dingR.active-dingR {
  transform: translateX(5px) scale(1);
  opacity: 1;
}


.naZdravi {
  position: absolute;
  left: 25%;
  bottom: 25%;
  opacity: 0;
  transition: transform 1s ease, opacity 0.5s ease;
  z-index: 12;
  scale: 1;
}

/* Corrected Active Class for Na Zdravi */
.naZdravi.active-naZdravi {
  display: block;
  left: 25%;
  bottom: 25%;
  opacity: 1;
  transform: translate(0, -90px) scale(2);
}

.hover {
  position: absolute;
  bottom: -20px;
  right: 0;
  scale: 2;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Pulsating animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}



/* Background */


.background-svg {
  width: 48px !important;
}

.svg-background {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.svg-background img {
  width: 48px;
  height: auto;
  transition: 0.2s;
}


.svg-wrapper {
  position: relative;
  display: inline-block;
  transition: 0.2s;
}

.svg1 {
  position: relative;
  transition: transform 0.4s ease; /* Smooth scaling transition */
}

.svg1.active-svg1 {
  transform: scale(2); /* Scale up the whole wrapper */
}

.svg1 img {
  opacity: 1; /* Full opacity by default */
  transition: opacity 0.4s ease;
}

.svg1.active-svg1 img {
  opacity: 0.3; /* Reduced opacity when active */
}


.svg2 {
  position: relative;
  transition: transform 0.4s ease; /* Smooth scaling transition */
}

.svg2.active-svg2 {
  transform: scale(2); /* Scale up the whole wrapper */
}

.svg2 img {
  opacity: 1; /* Full opacity by default */
  transition: opacity 0.4s ease;
}

.svg2.active-svg2 img {
  opacity: 0.3; /* Reduced opacity when active */
}


.svg3 {
  position: relative;
  transition: transform 0.4s ease; /* Smooth scaling transition */
}

.svg3.active-svg3 {
  transform: scale(2); /* Scale up the whole wrapper */
}

.svg3 img {
  opacity: 1; /* Full opacity by default */
  transition: opacity 0.4s ease;
}

.svg3.active-svg3 img {
  opacity: 0.3; /* Reduced opacity when active */
}

.svg1::after {
  left: 100%;
}

.svg2::after {
  left: 50%;
}

.svg3::after {
  left: 0%;
}


.svg1::after,
.svg2::after,
.svg3::after {
  content: var(--svg-text, "Default Text");
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'dancingscriptUKarlu', sans-serif;
  color: var(--primary);
  white-space: nowrap;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.svg1.active-svg1::after,
.svg2.active-svg2::after,
.svg3.active-svg3::after {
  opacity: 1;
}


.svg4 {
  position: absolute;
  right: 0;
  top: 3rem;
  float: left; /* Allows text to wrap around the image */
  margin: 10px; /* Space between image and text */
}

.svg4.active-svg4 {
  animation: wave 0.8s linear infinite; /* Smooth wave animation */
  transform-origin: bottom center; /* Set the pivot point at the bottom center */
}

/* Keyframes for waving motion */
@keyframes wave {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(45deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-45deg); }
  100% { transform: rotate(0deg); }
}

.svg6 {
  justify-self: center;
  transition: 0.5s;
  margin-bottom: 10px;
}

.svg6.active-svg6 { 
  transform: rotate(360deg);
}


.svg7 {
  align-self: center;
  transition: transform 0.1s ease;
  transform-origin: center; /* Ensures the rotation happens around the center */
  margin-bottom: 10px;
}

.svg7.active-svg7 {
  animation: ring 0.2s ease infinite; /* Faster and continuous ringing */
}

@keyframes ring {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}


/*     ----------------------------------------     Cover     ----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------     */


  #cover {
    background:  url('/assets/brand/imgs/cover/newcover4.jpg') no-repeat center center;
    background-color: #333;
    background-size: cover;
    height: 100vh; /* Full viewport height */
    width: 100%;  /* Full viewport width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 4s ease;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
  }

  #cover.hidden {
    display: none;
  }

  #cover.visible{
    display: block;
    transform: translateY(0px);
  }

  #biglogo {
    width: 50vw;
    margin-right: 25%;
    margin-bottom:10%;
  }
  
  #cover h1 {
    color: #fff;
    font-size: 10vw; /* Ensures min 2rem, max 6rem */
    text-align: center;
    width: 90%; /* Prevents text from stretching too far */
    max-width: 900px; /* Prevents excessive width */
    margin: 0 auto; /* Centers text horizontally */
    
    position: relative; /* Ensures text is contained */
    top: -10%; /* Prevents accidental misalignment */
    display: flex;
    align-items: center;
    justify-content: center;
  }

#cover .points-div {
  position: relative;
  top: -80px;
  left: 0%;
  text-align: end;
  margin: 0;
  padding: 0;
}

#cover .point{
  font-family: 'MontserratUKarlu', sans-serif;
  font-weight: 300;
  position: relative;   /* Keep relative positioning */
  top: 0px;  
  left: 40px;  /* Remove horizontal offset */
  opacity: 0;  
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: clamp(16px, 10vw, 24px); /* Min: 16px, Scales up to 24px */
  color: white;
  margin: 5px 0;
  text-align: start;  /* Change this to "center" if needed */
  transform: translateX(-30px);
  max-width: 90vw; /* Prevents it from expanding beyond screen width */
}

#cover .call-to-action-btns {
  margin-top: 40px;
  text-align: end;
}

.animated-border-btn {
  position: relative;
  padding: 10px 20px;
  font-size: 24px;
  color: #ffffff;
  background-color: var(--secondary); /* Button background */
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden; /* Hide overflow for pseudo-elements */
}

/* Pseudo-elements for border animation */
.animated-border-btn::before,
.animated-border-btn::after {
    display: none;
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border: 2px solid #fff; /* Border color */
    box-sizing: border-box;
    pointer-events: none; /* Prevent interaction with borders */
}

/* Hover animation */
.animated-border-btn:hover::before,
.animated-border-btn:hover::after {
  display: block;
    animation: slide-border 1s ease forwards;
}


.animated-border-btn::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Initial states */
.animated-border-btn::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

/* Keyframes for border animation */
@keyframes slide-border {
  0% {
      width: 0;
      height: 0;
  }
  25% {
      width: 100%; /* Horizontal border grows */
  }
  50% {
      width: 100%;
      height: 100%; /* Vertical border grows */
  }
  75% {
      width: 0;
      height: 100%; /* Other vertical border starts shrinking */
  }
  100% {
      width: 0; /* Completes animation */
  }
}


.call-to-action-btns {
  margin-top: 10px; /* Add space above buttons */
}


p.visible, .cta-link.visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }


/*     ----------------------------------------     Scroll-Arrow     ----------------------------------------     */
/*     ------------------------------------------------------------------------------------------------------     */


  .scroll-arrow {
    width: 7.5%;
    max-width: 50px; /* Prevent it from growing too large */
    position: absolute; /* Position relative to #cover */
    left: 50%; /* Ensure it's centered */
    bottom: 20px; /* Position it from the bottom */
    transform: translateX(-50%); /* Adjust alignment */
    animation: bounce 1s infinite; /* Animation */
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* No movement */
    }
    40% {
        transform: translateY(-10px); /* Move up */
    }
    60% {
        transform: translateY(-5px); /* Slightly move up */
    }
}

.bounce {
    animation: bounce 1.5s infinite; /* Increase duration to 2s */
}


/*     ----------------------------------------     About     ----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------     */


#About-Section {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 5%; /* Reduce padding */
  padding-top: 20px;
  margin: 0 auto; /* Center the section */
  text-align: center;
  position: relative;
  max-width: 100%; /* Prevents stretching beyond viewport */
  overflow-x: hidden; /* Ensures nothing forces it to overflow */
}


#About-Section h2 {
  margin: 0px;
  margin-bottom: px;
  text-align: center; /* Center the heading */
  font-family: 'CrimsonBold', sans-serif; /* Use the font-family you've loaded */
  font-size: 8rem;
  color: var(--primary);
  font-weight: 50;
}

.photo-grid {
  display: flex;
  flex-direction: column; /* Stack the images vertically */
  gap: 20px; /* Add space between the images */
  align-items: center;
}

.photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: auto;
  min-width: auto; /* Remove forced width */
  max-width: 100%; /* Prevent stretching */
}

.photo-container img {
  max-width: 100%;
  height: auto; /* Keep aspect ratio */
  max-height: none;
}

.photo-container p {
  font-family: 'MontserratUKarlu', sans-serif;
  font-size: 1.2rem;
  color: var(--bodyColor);
  line-height: 1.5;
}


.about-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  margin: 0 auto; /* Center content */
  max-width: 80vw; /* Prevent text from stretching */
  position: relative ;
}

.about-text p {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limits text to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative; 
  text-align: start; /* Makes the text look balanced around the image */
}

/* When expanded, remove line clamping */
.about-text p.expanded {
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  max-height: none; /* Fully show content */
  overflow: visible;
}

/* "Read More" Button */
.read-more {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 10px;
  border-radius: 5px;
  text-align: right;
  border: none;
  background: none;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-end;
  text-align: right;
}


.about-text h4 {
  margin-top: 10px;
  padding-top: 0;
  font-size: 4rem;
  font-family: 'dancingscriptUKarlu', sans-serif;
  color: var(--secondary);
  margin-bottom: 20px;
}

.about-action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: x-large;
  margin: 40px;
  background-color: var(--primary);
  padding: 10px 20px;
}


/* Optional: Style for the image and paragraph for better spacing */
.about-action img {
  display: none;
}

.about-action a {
  margin: 0; /* Remove default margins from paragraphs */
  color: var(--cream);
  font-size: 24px;
    font-family:  'MontserratUKarlu', sans-serif;
    font-weight: 200;
    text-decoration: none;
}

.wedding img {
  order: 2;
  width: 100%;
}

.wedding .about-action img {
  width: 75px;
  margin-left: 20px;
}

.wedding .about-text {
  order:1;
}



/*     -----------------------------------------     Carousel     ----------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */

.carousel {
  position: relative;
  max-width: 100%; /* Set your desired width */
  margin: auto;
  overflow: hidden;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease; /* Smooth transition for sliding */
}

.carousel-item {
  min-width: 100%; /* Each item takes full width of the carousel */
  flex-shrink: 0; /* Prevent shrinking */
}

.carousel button {
  position: absolute;
  top: 50%;
  width: 50px;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 10; /* Ensure buttons are above images */
}

.carousel button.active {
  transform-origin: center;
  transform: translateY(-50%) scale(0.9);
}

.carousel button.left {
  transition: left 0.3s ease;
}

.carousel button.right {
  transition: right 0.3s ease;
}

.carousel button.left:hover {
  left: 5px;
}

.carousel button.right:hover {
  right: 5px;
}

.prev {
  left: 10px; /* Position the left button */
}

.next {
  right: 10px; /* Position the right button */
}

.carousel-progress {
  position: absolute;
  bottom: 10px;
  right: 20px;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.carousel-progress .progress-rect {
  width: 12px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s ease;
  border-radius: 2px;
}

.carousel-progress .progress-rect.active {
  background-color: white;
}

/*     -----------------------------------------     Maps     ----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------     */


#map-section {
  background-color: var(--bodyColor);
  padding: 40px 20px;
  margin: 0px;
  border-bottom: 2px solid var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers everything */
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't cause overflow */
}

#map-section h2,h3 {
  margin: 0px;
  margin-bottom: 20px;
  text-align: center; /* Center the heading */
  font-family: 'CrimsonBold', sans-serif; /* Use the font-family you've loaded */
  font-size: 3rem;
  color: #fff;
}

#map-section .open-time {
  font-size: 1.5rem;
  color: var(--cream);
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: var(--primary) 1px solid;
  border-bottom: var(--primary) 1px solid;
  margin-bottom: 20px;
}

.map-container {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Keep it contained */
  justify-content: center; /* Center items */
  width: 100%;
  max-width: 1000px; /* Prevents it from stretching too much */
  box-sizing: border-box;
}

#map-section .contact-info {
  width: 100%;
  flex-direction: column;
  display: flex;
  align-items: start; /* Keep everything centered */
  justify-content: center;
  box-sizing: border-box;
  flex: 1;
}

#map-section .contactbox {
  transition: transform 0.2s ease;
  cursor: pointer;
}

#map-section .contactbox a{
display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.3s ease, scale 0.3s ease;
  width: 100%;
  font-size: 1.2rem; /* Adjust this value as needed */
}

#map-section .contactbox a span {
  position: relative;
}

#map-section .contactbox img {
  height: auto;
  width: 60px;
  margin: 0;
}

#map-section .contact-row {
  display: flex;
  gap: 20px; /* Adds gap between elements */
  margin-bottom: 20px; /* Adds spacing between rows */
}

#map-section .map-box {
  flex: 1; /* Allow it to take up equal width */
  margin-right: 0; /* Remove extra margin */
  display: flex;
  flex-direction: column;
  align-items: center;
}


#map-section .address-copy {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: 100%;
  position: relative; /* Added to make this the positioning context */
  padding-top: 20px;
  margin-bottom: 20px;  
  border-top: 1px solid var(--cream);
  overflow: hidden;
}

#map-section .confirmation-message {
  position: absolute;
  top: 0; /* Adjust to appear just above the p element */
  right: 30px;
  background-color: var(--primary); /* A blue background for the message */
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  visibility: hidden; /* Hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s; /* Smooth fade-out */
}


#map-section .address-copy img{
margin-right: 10px;
}

#map-section .map-box p {
  justify-self: center;
  color: #fff;
  font-family: "myriadProUKarlu";
  transition: color 0.2s ease;
}

#map-section .address-copy p {
  font-family: 'MontserratUKarlu';
  font-size: 1rem;
}

#map-section .address-copy p:hover {
  cursor: pointer;
  color: var(--primary);
}




#map-section  iframe {
  width: 100%; /* Ensure it takes full width of parent */
  height: 60vh;
}


/*     ---------------------------------------------------------------------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */
/*     ----------------------------------------     Menu Page     ----------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */



/*     -----------------------------------------     SVGs     ----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------     */


/*     -----------------------------------------     Background SVGs     ----------------------------------------     */
/*     ----------------------------------------------------------------------------------------------------------     */


#icon-toggle {
  justify-self: flex-end;
  align-self: flex-end;
  margin-top: 20px;
  right: 20px;
  background-color: transparent;
  z-index: 5;
}

#toggle-icons {
  padding: 10px 20px;
  font-size: 14px;
  color: white;
  background-color: #555;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#toggle-icons.toggle-on {
  background-color: #fff; /* Green when enabled */
  color: var(--primary);
  border: var(--primary) 1px solid;
}

#toggle-icons.toggle-off {
  background-color: var(--primary); /* Red when disabled */
  color: #fff;
  border: var(--primary) 1px solid;
}

/* Basic SVG Styling */
.falling-svg {
  position: absolute;
  transition: transform 0.3s ease, top 0.1s ease; /* Smooth movement and top update */
  pointer-events: auto; /* Allow clicking */
  z-index: 1;

    user-select: none;   /* Prevent text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For IE/Edge */
    pointer-events: auto; /* Allow clicking */

}

.falling-svg img {
  width: 96px;
  height: auto;
  animation: wiggle 1s ease-in-out infinite; /* Continuous wiggle animation */
  transition: transform 0.1s ease; /* Smooth jump animation */
}

.f-svg0 {   /* click me */
  left: 75%;
  top: 1%;
  animation: pulse 1.5s infinite ease-in-out; /* Pulsating effect */
}

.f-svg1 {   /* Cake Slice */
  left: -4%;
  top: 70%;
}

.f-svg2 {   /* beer */
  left: 75%;
  top: 20%;
}

.f-svg3 {   /* steak */
  left: -4%;
  top: 45%;
}

.f-svg4 {   /* fried fish */
  left: 80%;
  top: 30%;
}

.f-svg5 {   /* tomatoes */
  left: -6%;
  top: 5%;
}

.f-svg6 {   /* soup */
  left: 88%;
  top: 10%;

}



.f-svg7 {   /* rice */
  left: 88%;
  top: 60%;

}



.f-svg8 {   /* brocolli */
  left: 10%;
  top: 58%;
}

.f-svg9 {   /* food */
  display: none !important;
}

.f-svg10 {   /* cheese */
  left: 60%;
  top: 60%;

  
}

.f-svg11 {   /* turkey */

  left: -5%;
  top: 15%;
}

.f-svg12 {   /* grapes */
  display: none !important;  
}

/* Wiggle Animation */
@keyframes wiggle {
  0% { transform: translateX(0px) rotate(0deg); }
  25% { transform: translateX(-2px) rotate(-2deg); }
  50% { transform: translateX(2px) rotate(2deg); }
  75% { transform: translateX(-1px) rotate(-1deg); }
  100% { transform: translateX(1px) rotate(1deg); }
}

/* Jump Animation */
@keyframes jump {
  0% { transform: translateY(0); }
  30% { transform: translateY(-20px); } /* Jump up */
  50% { transform: translateY(-10px); } /* Slight drop */
  70% { transform: translateY(-15px); } /* Little bounce */
  100% { transform: translateY(0); } /* Back to position */
}

/* fall animation */
@keyframes fall-trail {
  0% { opacity: 0.5; transform: translateY(0) scale(1); }
  25% { opacity: 0.4; transform: translateY(-10px) scale(0.9); }
  50% { opacity: 0.3; transform: translateY(-20px) scale(0.8); }
  75% { opacity: 0.2; transform: translateY(-30px) scale(0.7); }
  100% { opacity: 0; transform: translateY(-40px) scale(0.5); }
}

/* Apply jump animation on click */
.falling-svg img.active {
  animation: jump 0.3s ease; /* Smooth and quick jump */
}

/* Falling Trail Lines */
.falling-svg::after,
.falling-svg::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.2); /* Line color */
  transform-origin: top center;
  top: -40px; /* Position above the object */
  transform: translateX(-50%);
  opacity: 0;
  animation: fall-trail 1s linear infinite;
  z-index: 2; /* Ensure it's above the object */
}

.falling-svg::after {
  left: 30%; /* First line */
  top: -30%;
}

.falling-svg::before {
  left: 70%; /* Second line */
}

/*     -----------------------------------------     Cover + PDF     ----------------------------------------     */
/*     ------------------------------------------------------------------------------------------------------     */



/* Menu Cover Section */
#menu-cover {
  position: relative;
  min-height: 40vh; /* 40% of the viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100vw;
  padding-top: 60px;
  overflow-x: hidden;
}

/* Background Image Container */
#menu-cover .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  /* Change from 100vw */
  max-width: 100%;  /* Prevents horizontal overflow */
  height: 100%;
  overflow: hidden; /* Ensures it doesn't expand outside */
}

/* Image Scaling */
#menu-cover .cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without stretching */
  object-position: top; /* Centers the image within the container */
}

/* Content (H2 and Button) */
#menu-cover .menu-cover-content {
  z-index: 1; /* Keeps the content above the background image */
  color: white;
  text-align: center;
  padding: 20px;
  width: 90%;
  max-width: 90%;
}

.menu-cover-content h2 {
  font-size: 2rem;
  max-width: 80%;
  margin-bottom: 60px;
  color: #fff;
  max-width: 100%; /* Ensures it doesn’t extend beyond its container */
}

.menu-cover-content a {
  font-size: 1.5rem;
  margin-bottom: 20px;
  white-space: nowrap;
}


.download-button {
  padding: 1rem;
  max-width: 80%;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: padding 0.2s ease, background-color 0.2s ease;
  font-family: "montserratUKarlu";
}





section {
  padding: 10px;
}

/*     -----------------------------------------     sidebar     -----------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */

.mobile-pulldown {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 100;
  transition: right 0.15s linear;
}

.mobile-pulldown.show {
  right: 300px;
}


.pulldown-button {
  background: var(--darkBlue); /* Or match your site theme */
  border: none;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
}

.pulldown-button img {
  rotate: 90deg;
}

#sidebar {
  position: fixed;
  top: 45%;
  right: -300px; /* Start completely offscreen */
  z-index: 10;
  padding: 10px;
  width: auto;
  max-width: 60%;
  font-family: "montserratUKarlu";
  transition: right 0.15s linear, opacity 0.15s ease-in-out;
  background-color: var(--cream);
  border: var(--darkBlue) solid 1px;
  visibility: hidden;
  opacity: 0;
}


#sidebar.show {
  right: 0;
  visibility: visible;
  opacity: 1;
  background-color: var(--cream);
  border: var(--darkBlue) solid 1px;
}

#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right; /* Aligns all anchor items to the right */
}

#sidebar li {
  margin: 0;
  padding: 0;
}

#sidebar ul li a {
  display: block;
  text-decoration: none;
  color: var(--darkBlue);
  font-size: 1.1rem;
  padding: 8px 0; /* Adds space around the text */
  transition: all 0.3s ease;
  text-align: right; /* Align the text to the right */
  padding: 0;
  margin-left: 20px;
}

/* Most Highlighted - Current section */
.menu-item-side.highlighted {
  font-size: 18px; /* Larger font size */
  opacity: 1; /* Fully visible */
  color: var(--primary); /* brand color */
  font-weight: bold; /* Bold for emphasis */
  font-family: "montserratUKarlu";
  padding: 12px 0; /* More padding for the active item */
  transform: translateX(-10px); /* Greater shift to the right */
  transition: all 0.3s ease; /* Smooth transition */
  position: relative; /* Required for the ::after pseudo-element */
}

 

/*     -----------------------------------------     Sections     ----------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */

#zero {
  display: none;
  margin: 0;
  padding: 0;
}

#menu-sections {
  justify-self: center;
  display: grid;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  overflow: hidden
  ;
}

#first-menu-category {
  margin-top: 0 !important;
}

.menu-category {
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  scroll-margin-top: 100px;
  position: relative;
}

.menu-category::after {
  content: ""; /* Create the pseudo-element */
  position: absolute;
  bottom: -20px; /* Align to the bottom of the section */
  left: 50%; /* Start at the center */
  transform: translateX(-50%); /* Shift left by half its width for centering */
  width: 80%; /* Set the width of the border */
  height: 1px; /* Border thickness */
  background-color: #333; /* Border color */
}

.menu-category h4 {
  font-size: 2.5rem;
  margin-bottom: 0px;
  font-family: 'DancingScriptUKarlu';
  color: var(--secondary) ;
  justify-self: start;
}

.gram-heading {
  display: flex;
  align-items: center; /* Ensures both p and h5 align to the same baseline */
}

.gram-heading p {
  font-size: 0.9rem; /* Ensure smaller size */
  margin: 0; /* Remove unwanted spacing */
  line-height: 1; /* Helps keep vertical alignment */
  align-self: flex-end;
}

.gram-heading h5 {
  font-size: 1.2rem; /* Ensure larger size */
  margin: 0; /* Remove unwanted spacing */
  line-height: 1; /* Ensures no extra space */
}

.desc-price {
  display: flex;
  justify-content: space-between;  
}


.menu-items {
  display: flex;
  justify-content: flex-start;
}

.menu-item {
  flex: 1;
  text-align: start;
  margin-top: 20px;
  
}

.menu-item h5, p {
  color: #404E57;
  margin: 0;
}


.menu-item h5 {
  font-family: "montserratUKarlu";
  font-size: 1rem;
  margin-left: 5px;
}

.menu-item p {
  font-family: "montserratUKarlu";
  font-size: 0.8rem;
}

.symbol {
  color: var(--primary);
  font-family: 'MyriadProUKarluCond', sans-serif;
  font-size: larger;

}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  row-gap: 0;
}

.menu-item {
  position: relative; /* Ensure the position context is available for the tooltip */
}

.info-container {
  position: relative;
  display: inline-block;
}

.info-hover-img {
  height: 18px;
  cursor: pointer;
  transition: transform 0.1s ease;
  transform-origin: center center;
  position: relative;
  top: -10px; /* Adjust this value to move the icon upward */
}


/* Tooltip text */
.info-text {
  visibility: hidden; 
  opacity: 0;
  width: 160px;
  max-width: 90vw; /* Prevents overflowing offscreen */
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-family: 'MyriadProUKarluBody', sans-serif;
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 5px); /* Ensures it stays above the icon */
  left: 50%;
  transform: translateX(-50%); /* Centers the tooltip */
  font-size: small;
  white-space: normal; /* Wraps text properly */
  transition: opacity 0.3s ease;
}

/* Show the tooltip on hover */
.info-container:hover .info-text {
  visibility: visible;
  opacity: 1;
}

/* Target only the menu items inside #sides */
#sides .menu-item p {
  display: flex;
  align-items: center; /* Align weight and text on the same line */
  gap: 10px; /* Spacing between weight and text */
}

/* Target the span (weight) inside #sides */
#sides .menu-item p span {
  min-width: 40px; /* Consistent width for all weights */
  text-align: left; /* Align the weight to the right */
  display: inline-block; /* Keep it behaving like a block */
}



  /*     ----------------------------------------     Footer INDEX     ---------------------------------------     */
  /*     -----------------------------------------------------------------------------------------------     */
/* Footer section Index */

.site-footer {
  background-color: var(--bodyColor);
  padding: 20px; /* Increase padding for better spacing */
  padding-top: 40px;
  padding-bottom: 0px;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%; /* Ensure the footer spans the full width */
  overflow: hidden; /* Prevent content from overflowing */
  z-index: 111;
}

/* Container for the footer content */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Vertically aligns the content */
  justify-content: space-between; /* Space out items evenly */
  flex-wrap: wrap; /* Allow content to wrap to the next line if necessary */
  max-width: 100%; /* Set a max width to prevent content from stretching too much */
  margin: 0 auto; /* Center the footer content */
  z-index: 100;

}

.footer-logo {
  align-self: center;
  justify-self: center;
  width: 30%;
  margin-bottom: 20px;
}

.copyright {
  text-align: center;
  margin-bottom: 20px;
}

.footer-content p {
  color: #fff;
  padding-top: 20px;
  border-top: var(--cream) 1px solid;
}

#index-footer .footer-contact {
  display: none;
}

/* Contact section styles */
.footer-contact {
  color: white;
  flex: 1; /* Ensure the contact section grows to fill space */
  margin-bottom: 20px;
}

.footer-contact strong {
  font-family: 'MontserratUKarlu';
  font-size: 1rem;
}

.footer-contact p {
  font-family: 'MontserratUKarlu';
  font-size: 1rem;
}

#index-footer .all-icon {
  display: none;
}

.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  gap: 10px;
}

.all-icon {
  display: flex;
  flex-direction: row;
  border-top: var(--cream) 1px solid;
  padding-top: 20px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}

.all-icon img {
  transition: transform 0.2s ease-in-out;
  width: 100%;
  margin: 5px;
  }

.contact-icons a,
.social-icons a {
  flex-wrap: wrap; /* Wrap the icons if they exceed available width */
}




/*     ---------------------------------------------------------------------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */
/*     ----------------------------------------     Wedding Page     ----------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */


#wedding-cover {
  position: relative;
  height: 75vh; /* 40% of the viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100vw;
}

/* Background Image Container */
#wedding-cover .cover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image Scaling */
#wedding-cover .cover-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without stretching */
  object-position: top; /* Centers the image within the container */
}

/* Content (H2 and Button) */
#wedding-cover .wedding-cover-content {
  z-index: 1; /* Keeps the content above the background image */
  color: white;
  text-align: center;
  padding: 20px;
}

.wedding-cover-content h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #ffffff90;
}




/*     -----------------------------------------     Wedding Services     ----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------------------     */

#wedding-services {
  display: flex;
  flex-direction: column;
  width: 90%;
  justify-content: center;
  align-items: center;
  justify-self: center;
  margin-bottom: 0px;
}

#wedding-services h2 {
  font-size: 2.5rem;
}

#wedding-services h4 {
  margin-top: 0;
  padding-top: 0;
  font-size: 3rem;
  font-family: 'dancingscriptUKarlu', sans-serif;
  color: var(--secondary);
  margin-bottom: 0;
}

#wedding-services p {
}


/* Accordion Container */
.accordion {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
}

/* Accordion Item */
.accordion-item {
  margin: 5px 0;
  border-bottom: 1px solid var(--primary);
  border-radius: 0px;
  overflow: hidden;
}

.accordion-text {
  display: flex;
}

/* Accordion Button */
.accordion-button {
  width: 100%;
  color: var(--bodyColor);
  padding: 15px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: 'MontserratUKarlu', sans-serif;
  transition: font-weight 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion ul {
  color: var(--bodyColor);
}

.accordion-button:hover {
  font-weight: 600;  

}

.accordion-button:hover .line1,
.accordion-button:hover .line2 {
    transition: transform 0.3s ease;
}

.accordion-button:hover .line1 {
    transform:  rotate(90deg); /* Move halfway */
}

.accordion-button:hover .line2 {
    transform: rotate(-90deg); /* Move halfway */
}

/* Accordion Content */
.accordion-content {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
  padding: 0 15px;
  font-family: 'MontserratUKarlu', sans-serif;
  transition: max-height 0.4s ease;
}

.accordion-content img {
  margin-bottom: 5%;
  margin-top: 5%;
  width: 64px;
  height: 64px;
}

.accordion-item .item1 {
  align-self: flex-start;
}

.accordion-item .item2 {
  align-self: flex-end;
}

.accordion-item .item3 {
  align-self: flex-end;
}

.accordion-item .item4 {
  align-self: center;
}

.accordion-item .item5 {
  align-self: flex-start;
}

.accordion-item .item6 {
  align-self: flex-end;
}

.accordion-item .item7 {
  align-self: center;
}

.accordion-item .item8 {
  align-self: flex-start;
}


.accordion-content.show {
  max-height: 1000px;
}

.accordion-button.active {
  border-bottom: var(--primary) 1px solid;
}

.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line {
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: var(--bodyColor);
  transition: transform 0.3s ease;
}

.line1 {
  transform: rotate(0deg);
}

.line2 {
  transform: rotate(90deg);
}

.accordion-button.active .line1 {
  transform: rotate(45deg);
}

.accordion-button.active .line2 {
  transform: rotate(-45deg);
}

#wedding-services button {

}

.wedding-button {
  position: relative;
  padding: 10px 20px;
  font-size: 24px;
  color: #ffffff;
  background-color: var(--secondary); /* Button background */
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden; /* Hide overflow for pseudo-elements */
  margin-top: 40px;
}

/* Pseudo-elements for border animation */
.wedding-button::before,
.wedding-button::after {
    display: none;
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border: 2px solid var(--darkBlue); /* Border color */
    box-sizing: border-box;
    pointer-events: none; /* Prevent interaction with borders */
}

/* Hover animation */
.wedding-button:hover::before,
.wedding-button:hover::after {
  display: block;
    animation: slide-border 1s ease forwards;
}


.wedding-button::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Initial states */
.wedding-button::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

/* Keyframes for border animation */
@keyframes wedding-slide {
  0% {
      width: 0;
      height: 0;
  }
  25% {
      width: 100%; /* Horizontal border grows */
  }
  50% {
      width: 100%;
      height: 100%; /* Vertical border grows */
  }
  75% {
      width: 100%;
      height: 100%; /* Other vertical border starts shrinking */
  }
  100% {
      width: 100%; /* Completes animation */
      height: 100%;
  }
}


/*     -----------------------------------------     Wedding Gallery     ----------------------------------------     */
/*     ----------------------------------------------------------------------------------------------------------     */

#wedding-gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-self: center;
  justify-self: center;
}

#wedding-gallery img{
  align-self: flex-end;
  width: 64px;
  height: 64px;
  margin: 0;
}

.photo-item {
  transition: transform 0.1s ease-in;
}

.photo-item.enlarged {
  transform: scale(2); /* Scale up on click */
  z-index: 10; /* Make sure it's on top */
  transition: transform 0.3s ease;
}

/* Individual transform shifts for each photo item */
.photo-item.photo1.enlarged {
  transform: scale(2) translate(50px, 50px); /* Shift to the left and up      X | Y | - LEFT | - UP*/   
}

.photo-item.photo2.enlarged {
  transform: scale(2) translate(0px, 50px);
}

.photo-item.photo3.enlarged {
  transform: scale(2) translate(-50px, 50px); 
}

.photo-item.photo4.enlarged {
  transform: scale(2) translate(50px, 0px); 
}

.photo-item.photo5.enlarged {
  transform: scale(2) translate(0px, 0px); 
}

.photo-item.photo6.enlarged {
  transform: scale(2) translate(-50px, 0px); 
}

.photo-item.photo7.enlarged {
  transform: scale(2) translate(50px, -50px);
}

.photo-item.photo8.enlarged {
  transform: scale(2) translate(0px, -50px);
}

.photo-item.photo9.enlarged {
  transform: scale(2) translate(-50px, -50px);
}


.photo-item img {
  cursor: pointer;
}


#wedding-gallery h2 {
  text-align: center;
  align-self: center;
  padding-top: 60px;
  margin-top: 20px;
  border-top: var(--darkBlue) 1px solid;
  margin-bottom: 0;
}

#wedding-gallery .photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
  width: 100%;
  max-width: 1536px;
  justify-self: center;
}

#wedding-gallery .photo-gallery img {
  width: 100%;   /* Make the image take up the full width of the cell */
  height: 100%;  /* Make the image take up the full height of the cell */
  object-fit: cover; /* Ensures the image covers the area without distortion */
}


/*     ------------------------------------------------------------------------------------------------------     */
/*     ------------------------------------------------------------------------------------------------------     */
/*     ----------------------------------------     Contact Page     ----------------------------------------     */
/*     ------------------------------------------------------------------------------------------------------     */
/*     ------------------------------------------------------------------------------------------------------     */


/* Contact Cover Section */
#contact-cover {
  position: relative;
  height: 40vh; /* 40% of the viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100vw;
}

/* Background Image Container */
#contact-cover .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image Scaling */
#contact-cover .cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without stretching */
  object-position: top; /* Centers the image within the container */
}

/* Content (H2 and Button) */
#contact-cover .contact-cover-content {
  z-index: 1; /* Keeps the content above the background image */
  color: white;
  text-align: center;
  padding: 20px;
}

.contact-cover-content h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #fff;
}

.contact-cover-content a {
  font-size: 1.5rem;
  margin-bottom: 20px;
}


/*     -----------------------------------------     Maps     ----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------     */


#contact-section {
  background-color: #fff;
  padding: 40px 20px;
  margin: 0px;
  border-bottom: 2px solid var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers everything */
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't cause overflow */
}

#contact-section h2,h3 {
  margin: 0px;
  margin-bottom: 20px;
  text-align: center; /* Center the heading */
  font-family: 'CrimsonBold', sans-serif; /* Use the font-family you've loaded */
  font-size: 3rem;
  color: var(--darkBlue);
}

#contact-section .open-time {
  font-size: 1.5rem;
  color: var(--bodyColor);
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: var(--primary) 1px solid;
  border-bottom: var(--primary) 1px solid;
  margin-bottom: 20px;
}

#contact-section p {
  color: var(--bodyColor);
}


.contact-section-desc {
  margin-bottom: 40px;
}

#contact-section a {
  margin: 0px;
  text-align: center; /* Center the heading */
  font-family: 'MontserratUKarlu', sans-serif; /* Use the font-family you've loaded */
  font-weight: 300;
  font-size: 1.7vw;
  color: var(--bodyColor);
}

.contact-map-container {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Keep it contained */
  justify-content: center; /* Center items */
  width: 100%;
  max-width: 1000px; /* Prevents it from stretching too much */
  box-sizing: border-box;
}

#contact-section .contact-info {
  width: 100%;
  flex-direction: column;
  display: flex;
  align-items: start; /* Keep everything centered */
  justify-content: center;
  box-sizing: border-box;
  flex: 1;
}

#contact-section .contactbox {
  transition: transform 0.2s ease;
  cursor: pointer;
}

#contact-section .contactbox a{
  display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--bodyColor);
    transition: transform 0.3s ease, scale 0.3s ease;
    width: 100%;
    font-size: 1.2rem; /* Adjust this value as needed */
  }

  #contact-section .contactbox a span {
    position: relative;
  }


#contact-section .contactbox img {
  height: auto;
  width: 60px;
  margin: 0;
}


#contact-section .contact-row {
  display: flex;
  gap: 20px; /* Adds gap between elements */
  margin-bottom: 20px; /* Adds spacing between rows */
}

#contact-section .map-box {
  flex: 1; /* Allow it to take up equal width */
  margin-right: 0; /* Remove extra margin */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-section .address-copy {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: 100%;
  position: relative; /* Added to make this the positioning context */
  padding-top: 20px;
  margin-bottom: 20px;  
  border-top: 1px solid var(--cream);
  overflow: hidden;
}

#contact-section .confirmation-message {
  position: absolute;
  top: 0; /* Adjust to appear just above the p element */
  right: 30px;
  background-color: var(--primary); /* A blue background for the message */
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  visibility: hidden; /* Hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s; /* Smooth fade-out */
}


#contact-section .address-copy img{
  margin-right: 10px;
  }
  
  #contact-section .map-box p {
    justify-self: center;
    color: var(--bodyColor);
    font-family: "myriadProUKarlu";
    transition: color 0.2s ease;
  }
  
  #contact-section .address-copy p {
    font-family: 'MontserratUKarlu';
    font-size: 1rem;
  }
  
  #contact-section .address-copy p:hover {
    cursor: pointer;
    color: var(--primary);
  }
  
  #contact-section  iframe {
    width: 100%; /* Ensure it takes full width of parent */
    height: 60vh;
  }
  


#contact-footer .footer-contact { 
  display: none;
}

#contact-footer .all-icon { 
  display: none;
}

