: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';
}

@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;
    overflow-x: hidden;
  }

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

* {
  box-sizing: border-box;
}

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

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

::-webkit-scrollbar-track {
  background: #fff; /* 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: #ffffff00; /* Background color */
    width: 100%; /* Full width */
    position: fixed; /* Makes the header sticky */
    top: 0; /* Sticks the header to the top */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for depth */
    transition: background-color 1s ease, padding 1s ease; /* Smooth transition */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14pt;
    font-family: 'MontserratUKarlu', sans-serif;
    font-weight: 500;
    transition: background-color 1s ease, padding 1s ease; /* Smooth transition */
    z-index: 100;
}

#header.scrolled {
  background-color: var(--primary); /* Background color */
  width: 100%; /* Full width */
  position: fixed; /* Makes the header sticky */
  top: 0; /* Sticks the header to the top */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for depth */
  transition: background-color 1s ease, padding 1s ease; /* Smooth transition */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14pt;
  font-family: 'MontserratUKarlu', sans-serif;
  font-weight: 500;
  transition: background-color 1s ease, padding 1s ease; /* Smooth transition */
  padding: 0.5% 0 0.5% 0;
}

.menu-toggle {
  display: none;
}

/* logos */
.logo {
  height: max-content;
  width: 160px;
  margin-left: 20px;
}

.nav {
  margin-right: 2%;
}


nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: var(--cream);
  text-decoration: none;
  position: relative; /* To position the ::after pseudo-element */
  font-size: x-large;
}

nav ul li a:hover {
  color: var(--darkBlue);
  text-decoration: none;
  transition: 0.2s;

}

nav ul li a::after {
  content: ''; /* No text content, just for the underline */
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust this value to control the distance of the underline from the text */
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: var(--darkBlue); /* Underline color */
  transition: width 0.4s ease; /* Animation for swooping in */
}

nav ul li a:hover::after {
  width: 100%; /* The underline expands on hover */
}


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


.language-dropdown {
  position: relative;
}

.dropdown-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
}

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

.language-list {
  display: none; /* Initially hidden */
  width: 140px;
  position: absolute;
  top: 40px;
  right: 10px;
  background-color: #fcf6e6;
  list-style: none;
  padding: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s 0.5s; /* Wait 0.5s to hide completely */

}

.language-list li {
  opacity: 0; /* Initially transparent */
  transform: translateY(-20px); /* Slide from above */
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
  position: relative;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-between;
  height: 40px;
}

.language-list li:hover {
  cursor: pointer;
}

.language-list li a {
  display: flex;        /* This makes the text and image align nicely */
  align-items: center;  /* Centers the items vertically */
  text-decoration: none; /* Optional: removes underline */
  margin: 0;
}

.language-list li img {
  margin-left: 10px;     /* Adds some space between the text and flag */
  width: 30px;           /* Optional: adjust the size of the flags */
}


.language-dropdown:hover .language-list {
  visibility: visible;
  max-height: 100px;
  pointer-events: all; /* Enable interaction when visible */
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s; /* Remove delay */
}

.language-dropdown:hover .language-list li {
  opacity: 1;
  transform: translateY(0); /* Slide down to original position */
}

.language-dropdown:hover .language-list li:nth-child(1) {
  transition-delay: 0.1s; /* Staggered animation for first option */
}

.language-dropdown:hover .language-list li:nth-child(2) {
  transition-delay: 0.2s; /* Staggered animation for second option */
}

.language-list a {
  text-decoration: none;
  color: var(--darkBlue);
  position: relative; /* To position the ::after pseudo-element */
}


.language-dropdown:hover .language-list, 
.language-list:hover {
  display: block; /* Show on hover */
}



.language-list li:hover a {
  color: var(--primary);
  cursor: pointer;
  transition: color 0.2s;
}

.language-list li a::after {
  content: ''; /* No text content, just for the underline */
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust this value to control the distance of the underline from the text */
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: var(--darkBlue); /* Underline color */
  transition: width 0.4s ease; /* Animation for swooping in */
}

.language-list li:hover a::after {
  background-color: #000000;
  width: 100%; /* The underline expands on hover */
}

#language-icon {
  transition: transform 0.3s ease;
}

#language-icon:hover {
  transform: scale(1.1);
}

@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 */
}


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


  #cover {
    background:  url('/assets/brand/imgs/cover/newcover4.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh; /* Full viewport height */
    width: 100vw;  /* Full viewport width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 4s ease;
  }

  #cover.hidden {
    display: none;
  }

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

  #biglogo {
    width: 50vw;
    margin-right: 25%;
    margin-bottom:10%;
  }
  
  #cover h1 {
    color: white;
    font-size: 5vw;
    text-align: center;  /* Ensure text stays centered */
    position: absolute; /* Allow positioning */
    top: 20%; /* Position the h1 30% from the top, leaving 70% space below it */
  }

#cover .points-div {
  position: relative;
  top: 0;
  left: 15%;
  margin: 0;
  padding: 0;
  margin-top: 10%;
}

#cover .point{
  font-family: 'MontserratUKarlu', sans-serif;
  font-weight: 200;
  position: relative;   /* Use relative positioning so elements naturally stack */
  top: 0px;
  left: 100px;              /* Align to the left edge */
  opacity: 0;           /* Start hidden for animation */
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 36px;
  color: white;
  margin: 5px 0;       /* Add vertical space between p elements */
  text-align: left;     /* Ensure text aligns to the left */
  transform: translateX(-30px);
}

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

.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: 100%;
      height: 100%; /* Other vertical border starts shrinking */
  }
  100% {
      width: 100%; /* Completes animation */
      height: 100%;
  }
}


.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-container {
  position: absolute;
  bottom: 20px;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%);
  transition: transform 0.1s ease-in; /* Smooth scaling */
}

.scroll-arrow-container:hover {
  transform: translateX(-50%) scale(1.5); /* Scale up on hover */
}

.scroll-arrow {
  width: 64px;
  animation: bounce 1.5s infinite; /* Bounce 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 */
  }
}



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


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

#cover {
  position: relative;
}

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

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

#cheers:hover .glsR {
  transform: rotate(-11deg);
}

#cheers:hover .glsL {
  transform: rotate(11deg);
}

.dingL, .dingR {
  position: absolute;
  width: 40px !important;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dingL {
  left: 15px; /* Adjust as needed */
  top: 10px; /* Adjust to make it look nice */
}

.dingR {
  right: 10px; /* Adjust as needed */
  top: 10px; /* Adjust to make it look nice */
}

#cheers:hover .dingL,
#cheers:hover .dingR {
  opacity: 1;
  transform: scale(1);
}

.naZdravi {
  position: absolute;
  bottom: 20px; /* Adjust to control the vertical position */
  left: 50%;
  transform: translateX(-50%) scale(0); /* Start hidden and scaled down */
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 12; /* Ensure it's above the glasses */
}

#cheers:hover .naZdravi {
  display: block;
  opacity: 1;
  transform: translate(-50%, -150px) scale(1); /* Show and scale up */
}

.hover {
  position: absolute;
  bottom: -100px; /* Adjust as needed */
  right: -100px; /* Adjust as needed */
  width: 80px; /* Adjust size as needed */
  animation: pulse 1.5s infinite ease-in-out; /* Pulsating effect */
}

/* Pulsating animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1); /* Make it a bit bigger at the peak */
    opacity: 0.8; /* Slightly transparent at the peak */
  }
}


/* Background */


.background-svg {
  width: 100px;
}

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

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


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

.svg-wrapper:hover {
  transform: scale(2);
  height: auto;
}

html[lang="cs"] .svg1::after {
  content: "Rodinná";
}
html[lang="cs"] .svg2::after {
  content: "Restaurace";
}
html[lang="cs"] .svg3::after {
  content: "v prostředí venkova";
}

/* English */
html[lang="en"] .svg1::after {
  content: "Family";
}
html[lang="en"] .svg2::after {
  content: "Rustic Restaurant";
}
html[lang="en"] .svg3::after {
  content: "Countryside Setting";
}

/* German */
html[lang="de"] .svg1::after {
  content: "Familie";
}
html[lang="de"] .svg2::after {
  content: "Rustikales Restaurant";
}
html[lang="de"] .svg3::after {
  content: "Ländliche Umgebung";
}

.svg1::after {
  position: absolute;
  bottom: 0; /* Start at the bottom of the image */
  left: 50%; /* Center the text horizontally */
  transform: translateX(0px) translateY(0px); /* Start below the image */
  font-family: 'dancingscriptUKarlu', sans-serif;
  color: var(--primary);
  white-space: nowrap; /* Prevent the text from wrapping */
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease; /* Smooth transition */
}

.svg1:hover::after {
  opacity: 1;
  transform: translateX(100%) translateY(0px); /* Slide up into view */
}

.svg2::after {
  position: absolute;
  bottom: 0; /* Start at the bottom of the image */
  left: 50%; /* Center the text horizontally */
  transform: translateX(0px) translateY(0px); /* Start below the image */
  font-family: 'dancingscriptUKarlu', sans-serif;
  color: var(--primary);
  white-space: nowrap; /* Prevent the text from wrapping */
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease; /* Smooth transition */
}

.svg2:hover::after {
  opacity: 1;
  transform: translateX(100%) translateY(0px); /* Slide up into view */
}

.svg3::after {
  position: absolute;
  bottom: 0; /* Start at the bottom of the image */
  left: 0%; /* Center the text horizontally */
  transform: translateX(0px) translateY(0px); /* Start below the image */
  font-family: 'dancingscriptUKarlu', sans-serif;
  color: var(--primary);
  white-space: nowrap; /* Prevent the text from wrapping */
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease; /* Smooth transition */
}

.svg3:hover::after {
  opacity: 1;
  transform: translateX(-100%) translateY(0px); /* Slide up into view */
}

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

.svg4:hover {
  animation: wave 1s 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;
}

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

.svg7 {
  align-self: center;
}

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

.svg7:hover {
  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); }
}



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


.read-more {
  display: none;
}


#About-Section {
  background-color: #fff;
  display: grid;
  padding: 40px 10%;
  margin: 0px;
  align-self: center;
  justify-self: center;
  text-align: center;
  position: relative;
  scroll-margin-top: 5rem;
  max-width: 2560px;
}


#About-Section h2 {
  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: 8rem;
  color: var(--primary);
  font-weight: 50;
}


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

.photo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  min-height: 50vh;
  min-width: 50vh;
}

.photo-container img {
  max-width: 100%;
  max-height: 50vh; /* Keep the height relative */
}

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

.about-text {
  display: grid;
  font-size: 16px;
  margin: 0 40px 0 40px;
}


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

.about-heading {
  position: relative;
}

.about-action {
  align-items: center;
  justify-items: start;
  font-size: x-large;
  transition: transform 0.2s ease;
  margin-top: 40px;
}

/* Optional: Style for the image and paragraph for better spacing */
.about-action img {
  display: none;
  justify-self: end;
  height: 75px;
  margin-right: 25px;
}

.about-action a {
  margin: 0; /* Remove default margins from paragraphs */
  color: var(--primary);
  font-size: larger;
    font-family: 'MontserratUKarlu', sans-serif;
    font-weight: 700;
    text-decoration: none;
    justify-self: center;
  padding: 10px 20px;
  border: var(--primary) solid 1px;
  transition: background-color 0.3s;
}

.about-action a:hover {
  cursor: pointer;
  background-color: var(--primary);
  color: #fff;
}

/*     -----------------------------------------     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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bodyColor);
  padding: 40px 20px;
  margin: 0px;
  border-bottom: 2px solid var(--cream); /* 2px wide, solid line, black color */
}

#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: 6rem;
  color: #fff;
}

#map-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: #fff;
}

.map-container {
  display: flex;
  justify-content: space-between;
  justify-self: center;
  align-items: center;
  margin-top: 20px;
  max-width: 2560px;
  max-height: 2560px;
}

#map-section  .map-box {
  flex: 1; /* Takes up the other 50% */
  width: 50%;
  height: 100%;
}


#map-section .address-copy {
  display: flex;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  position: relative; /* Added to make this the positioning context */
}

.confirmation-message {
  position: absolute;
  top: -20px; /* 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: 1.5rem;
}

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

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

#map-section  .contact-info {
  flex: 1;
  margin-right: 20px;
  margin-left: 0%;
  flex-direction: column; /* Stack the contact boxes vertically */
  display: flex;
  align-self: center;
}

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

#map-section  .contactbox a{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, scale 0.3s ease;
  width: 100%;
}

#map-section  .contactbox a span {
  position: relative;
  max-width: 100vw;
  font-size: 1.5vw;
}

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


#map-section .contactbox:hover {
  transform: scale(1.1); /* Scale the contact box by 10% on hover */
}


#map-section  .contactbox img {
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between icon and text */
    max-width: 60px;
}

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

#map-section iframe {
  flex: 1; /* Allow the map iframe to take available space */
  max-height: 50vh; /* Height for the map */
  width: 100%;
  margin-right: 10%;
}


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


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

/* Basic SVG Styling */
#icon-toggle {
  justify-self: flex-end;
  top: 20px;
  right: 20px;
  background-color: transparent;
  z-index: 5;
}

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

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

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


.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: 128px;
  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: 80%;
  top: 1.5%;
  animation: pulse 1.5s infinite ease-in-out; /* Pulsating effect */
}

.f-svg1 {   /* Cake Slice */
  left: -30%;
  top: 55%;
}

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

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

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

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

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

}



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

}



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

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

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

  
}

.f-svg11 {   /* turkey */

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

.f-svg12 {   /* grapes */
  left: 103%;
  top: 70%;
}
/* 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;
  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 */
#menu-cover .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

/* 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: 5; /* Keeps the content above the background image */
  color: white;
  text-align: center;
  padding: 20px;
}

.menu-cover-content h2 {
  font-size: 4vw;
  margin-bottom: 60px;
  color: #fff;
}

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


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

.download-button:hover {
  padding: 44px 88px;
  background-color: #b3624c ;
}




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

.mobile-pulldown {
  display: none;
}

#sidebar-toggle {
  display: none;
}

.sticky-sidebar {
  position: fixed;
  top: 55%; /* Adjusted to center based on the height */
  right: 20px; /* Fixed to the right */
  z-index: 10;
  padding: 10px;
  transform: translateY(-50%); /* Centers vertically based on the height of the sidebar */
  width: auto;
  font-family: "montserratUKarlu";
  transition: all 0.3s ease;
}

#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: #404E57;
  font-size: 20px;
  padding: 8px 0; /* Adds space around the text */
  opacity: 0.5;
  transition: all 0.3s ease;
  text-align: right; /* Align the text to the right */
  padding: 0;
}

#sidebar ul li a:hover {
  color: var(--primary); /* Change color to blue on hover */
  opacity: 1; /* Ensure full opacity on hover */
  cursor: pointer;
}


/* 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 */
}

/* Underline effect using ::after */
.menu-item-side::after {
  content: ''; /* Empty content for the underline */
  position: absolute;
  bottom: 0; /* Position it at the bottom of the element */
  right: 0; /* Start the underline from the right */
  width: 100%; /* Full width of the item */
  height: 2px; /* Thickness of the underline */
  background-color: var(--primary); /* brand color for the underline */
  transform: scaleX(0); /* Initially, the underline is hidden */
  transform-origin: right; /* The underline grows from the right */
  transition: transform 0.1s ease; /* Smooth transition for the underline */
}

/* Underline effect using ::after */
.menu-item-side.highlighted::after {
  content: ''; /* Empty content for the underline */
  position: absolute;
  bottom: 0; /* Position it at the bottom of the element */
  right: 0; /* Start the underline from the right */
  width: 100%; /* Full width of the item */
  height: 2px; /* Thickness of the underline */
  background-color: var(--primary); /* brand color for the underline */
  transform: scaleX(1); /* Initially, the underline is hidden */
  transform-origin: right; /* The underline grows from the right */
  transition: transform 0.2s ease; /* Smooth transition for the underline */
}

/* Optional - Hover effect for the sidebar items */
.menu-item-side:hover {
  color: var(--primary); /* Change to brand color on hover */
  opacity: 1; /* Full opacity on hover */
  cursor: pointer;
}


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

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

#menu-sections {
  justify-self: center;
  display: grid;
  padding: 40px;
  width: 60%;
  max-width: 1152px;
  min-width: 967px;
  box-sizing: border-box;
  position: relative;
}



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

.menu-category {
  margin-bottom: 80px;
  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: 150%; /* Set the width of the border */
  height: 1px; /* Border thickness */
  background-color: #333; /* Border color */
}

.menu-category h4 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'DancingScriptUKarlu';
  color: var(--secondary) ;
  justify-self: start;
}
/* 'Playfair Display', serif;   'Cormorant Garamond', serif;  'Dancing Script', cursive;   'Lora', serif;   'Raleway', sans-serif;  */

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

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

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


.menu-item h5 {
  font-family: "montserratUKarlu";
  font-size: larger;
  margin-left: 5px !important;
}

.menu-item p {
  font-family: "montserratUKarlu";
  margin: 0;
}

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

}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

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

.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;
  margin-bottom: 5px;  
  justify-content: space-between;
}

.desc-price p:nth-child(2) {
  color: var(--secondary); /* Example: change text color */
  font-weight: bold;
  align-self: end;
  margin-left: 10px;
}

#sides .desc-price span {
  display: inline-block;
  min-width: 50px;
}


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

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

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

.info-hover-img:hover {
  transform: scale(1.1); /* Scale effect on hover */
}

/* Tooltip text */
.info-text {
  visibility: hidden; 
  opacity: 0;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-family: "MyriadProUKarluBody", sans-serif;
  position: absolute;
  z-index: 1;
  bottom: 50%;
  font-size: small;
  width: auto;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

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



/*     ---------------------------------------------------------------------------------------------------     */
/*     ---------------------------------------------------------------------------------------------------     */
/*     ----------------------------------------     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: #ffffff;
  text-align: center;
  padding: 20px;
}

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


.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 Services     ----------------------------------------     */
/*     -----------------------------------------------------------------------------------------------------------     */

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

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

#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;
  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-right: 5%;
  width: 64px;
}

.accordion-content p {
}

.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 Gallery     ----------------------------------------     */
/*     ----------------------------------------------------------------------------------------------------------     */

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

#wedding-gallery img{
  align-self: flex-end;
}

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

.photo-item:hover {
  transform: scale(1.5);
}


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

#wedding-gallery .photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  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: 4vw;
  margin-bottom: 60px;
  color: #fff;
}

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

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

#contact-section {
  background-color: #fff;
  padding: 40px 20px;
  margin: 0px;
  border-bottom: 2px solid var(--cream); /* 2px wide, solid line, black color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#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: 6rem;
  color: var(--darkBlue);
}

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

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

#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;
  justify-content: space-between;
  justify-self: center;
  align-items: center;
  margin-top: 20px;
  max-width: 2560px;
  max-height: 2560px;
}


#contact-section .contact-info {
  flex: 1;
  margin-right: 20px;
  margin-left: 0%;
  flex-direction: column; /* Stack the contact boxes vertically */
  display: flex;
  align-self: center;
}


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

#contact-section .contactbox a{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #404E57;
  font-weight: 500;
  position: relative;
  transition: transform 0.3s ease, scale 0.3s ease;
  width: 100%;
}

#contact-section .contactbox a span {
  position: relative;
  max-width: 100vw;
  font-size: 1.5vw;
}

#contact-section .contactbox img {
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Space between icon and text */
  max-width: 60px;
  height: 64px;
}


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


#contact-section .contactbox:hover {
  transform: scale(1.1); /* Scale the contact box by 10% on hover */
}


#contact-section .map-box {
  flex: 1; /* Takes up the other 50% */
  width: 50%;
  height: 100%;
}






#contact-section .address-copy {
  display: flex;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  position: relative; /* Added to make this the positioning context */
}

#contact-section .confirmation-message {
  position: absolute;
  top: -20px; /* 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: #fff;
  font-family: "myriadProUKarlu";
  transition: color 0.2s ease;
}

#contact-section .address-copy p {
  font-family: 'MontserratUKarlu';
  font-size: 1.5rem;
  color: var(--bodyColor);
}

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


#contact-section iframe {
  flex: 1; /* Allow the map iframe to take available space */
  max-height: 50vh; /* Height for the map */
  width: 100%;
  margin-right: 10%;
} 


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

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


  /*     ----------------------------------------     Footer     ---------------------------------------     */
  /*     -----------------------------------------------------------------------------------------------     */
/* Footer section */

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

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

.site-footer {
  background-color: var(--bodyColor);
  padding: 20px; /* Increase padding for better spacing */
  padding-top: 40px;
  padding-bottom: 40px;
  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;
  position: relative; /* Establish stacking context */
}

/* Container for the footer content */
.footer-content {
  display: flex;
  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 {
  width: 20%;
  max-width: 350px;
  margin-right: 40px;
}

.footer-content p {
  color: #fff;
}

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

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

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

.all-icon {
  display: flex;
  flex-direction: column;
  width: 25%;
}

.social-icons, .contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

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

  .all-icon img:hover {
    transform: scale(1.1); /* Slightly scale icons on hover */
  }

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