/* Example Color Scheme */
:root {
  --section-primary: #fff; /* white */
  --section-alternate: #638680; /* lt grey */
  --text-color-primary: #638680; /* doktalk logo */
  --text-color-alternate: #fff; /* white */
  --primary-color: #f9f9f5; /* Soft warm beige for backgrounds */
  --accent-color: #638680; /* doktalk logo */
  --neutral-color: #333333; /* Dark muted gray for text */
  --gold: #D4AF37;
}

@media screen and (max-width: 1024px) {
  body {
    margin-left: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--neutral-color);
  background-color: #f9f9f9;
  line-height: 1.6;
  margin-left: 200px; /* Adjust this value to match the sidebar width */
}

a {
  color: var(--primary-color);
}

a:hover {
  text-decoration: underline;
  background-color: var(--primary-color);
  color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  /* color: var(--accent-color); */
}

/* Example Button Style */
.btn {
  background-color: var(--accent-color);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px; /* Rounded for a softer feel */
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #a52a2a; /* Slightly lighter burgundy on hover */
}

/* ------------------------------------------------------------------------------
 * Hamburger Menu Section
 * ------------------------------------------------------------------------------
 */
/* Hamburger Button */
.hamburger {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 24px;
  z-index: 1100;
  cursor: pointer;
  display: block;
}

.hamburger div {
  width: 100%;
  height: 4px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

.hamburger.open .line1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open .line2 {
  opacity: 0;
}

.hamburger.open .line3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger .line1, .hamburger .line2, .hamburger .line3 {
  margin-bottom: 4px; /* Space between lines */
}

.hamburger .line2 {
  margin-top: 4px;
}

.hamburger.open .line1,
.hamburger.open .line3 {
  margin-bottom: 0; /* Reset margin when open */
}

.hamburger.open .line2 {
  display: none; /* Hide the middle line when menu is open */
}

/* Hide hamburger and show sidebar on larger screens */
@media screen and (min-width: 1025px) {
  .hamburger {
    display: none; /* Hide hamburger on screens larger than 1024px */
  }
  .mobile-menu {
    display: none; /* Ensure mobile menu is hidden */
  }
}
/* Show hamburger and hide sidebar on smaller screens */
@media screen and (max-width: 1024px) {
  .hamburger {
    display: block; /* Show hamburger on screens 1024px or smaller */
  }
  .sidebar {
    display: none; /* Hide the sidebar on smaller screens */
  }
}
/* Language Visibility */
[data-lang=es] {
  display: none;
}

/* ------------------------------------------------------------------------------
 * Section Styles
 * ------------------------------------------------------------------------------
 */
.section {
  position: relative;
  padding: 60px 0;
  background-color: var(--section-primary);
  color: var(--text-color-primary);
}

.section:nth-of-type(even) {
  background-color: var(--section-alternate);
  color: var(--text-color-alternate);
}

.section h2 {
  display: inline-block;
  font-size: 32px;
  margin-bottom: 10px;
  text-align: left; /* Ensure text alignment is left */
  padding-left: 0; /* Remove any padding to the left */
  position: relative;
  text-align: left !important;
}

/* h2 text color */
.section h2 {
  text-color: var(--text-color-primary);
}

.section h2:nth-of-type(even) {
  text-color: var(--text-color-alternate);
}

/* underline color after h2 */
.section h2::after {
  content: "";
  width: 100%; /* This makes the underline the same width as the h2 */
  height: 4px;
  display: block;
  margin: 0; /* Reset the margin */
  margin-top: 5px; /* Space between the text and the line */
  border-radius: 2px;
}

.section h2:nth-of-type(odd)::after {
  background-color: white !important;
}

.section h2:nth-of-type(even)::after {
  background-color: blue !important;
}

.section p,
.section ul {
  font-size: 18px;
  margin-bottom: 20px;
}

.section ul {
  list-style: disc;
  padding-left: 40px;
}

/* ------------------------------------------------------------------------------
 * Slideshow Section
 * ------------------------------------------------------------------------------
 */
/* Two-column layout */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
}

.col-text {
  background-color: #f0f0f0; /* Light grey background color */
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
  height: 100%; /* Ensure the column takes full height */
}

.col-slideshow {
  max-width: 600px;
  height: 100%; /* Ensure the column takes full height */
  background-color: #f0f0f0; /* Light grey background color */
  padding: 0; /* Remove padding to make the image take the full space */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: flex-start; /* Align content to the top */
  overflow: hidden; /* Hide any overflow to keep the design clean */
  position: relative; /* Make the container relative to position the overlay */
}

/* Slideshow Styles */
.slideshow-container {
  width: 100%; /* Make the slideshow take full width */
  height: 100%; /* Make the slideshow take full height */
  margin: 0; /* Remove margin */
  position: relative;
}

/* Overlay for Text */
.slideshow-container .text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 0 0 10px 10px; /* Match the border-radius of the container */
}

.section .col-slideshow .text-below {
  font-size: 24px !important;
  color: white;
  margin: 0;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  height: 100%; /* Ensure the image takes the full height of the container */
  object-fit: cover; /* Cover the entire container while maintaining aspect ratio */
  border-radius: 10px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* Add a background color to the active dot/circle */
.active {
  background-color: #717171;
}

/* ------------------------------------------------------------------------------
 * Navbar Styles
 * ------------------------------------------------------------------------------
 */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 16px;
  padding: 10px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0066cc;
}

.language-switch {
  display: flex;
  gap: 10px;
}

.lang-btn {
  background-color: #eaeaea;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
  background-color: #0066cc;
  color: #fff;
}

/* ------------------------------------------------------------------------------
 * Mobile Menu Section
 * ------------------------------------------------------------------------------
 */
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background-color: #000; /* Ensure the background is black */
  padding-top: 60px;
  z-index: 1000;
  transform: translateX(100%); /* Start off-screen */
  transition: transform 0.3s ease-in-out; /* Slide in and out with ease */
  overflow-y: auto; /* Allow scrolling if content overflows */
  border-left: 2px solid #fff; /* White line on the right edge */
}

/* When the menu is shown */
.show-menu {
  transform: translateX(0); /* Slide in */
}

.overlay.hidden {
  display: none;
}

.overlay.show-overlay {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Grey overlay */
  z-index: 900; /* Slightly below the mobile menu */
}

/* Additional Mobile Menu Style Adjustments */
.mobile-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 15px;
  text-align: left;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  display: block;
}

.mobile-menu ul li:hover,
.mobile-menu ul li#language-toggle:hover {
  background-color: #575757;
}

.mobile-menu ul li#language-toggle {
  color: #fff;
  padding: 15px;
  text-align: left;
  cursor: pointer;
  font-size: 1.2em;
  display: block;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: block; /* Show hamburger menu on screens 1024px or smaller */
  }
  .sidebar {
    display: none; /* Hide the sidebar on smaller screens */
  }
  body {
    margin-left: 0; /* Reset the body margin on smaller screens */
  }
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes popInOut {
  0%, 100% {
    background-color: rgba(99, 134, 128, 0); /* Fully transparent */
  }
  50% {
    background-color: rgba(212, 175, 55, 0.4); /* Slightly transparent */
  }
}
/* ------------------------------------------------------------------------------
 * Sidebar Section
 * ------------------------------------------------------------------------------
 */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-color: #000;
  padding-top: 20px;
  z-index: 1000;
  border-right: 2px solid #fff; /* White line on the left edge */
}

.sidebar .language-content.hidden {
  display: none;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 15px;
  text-align: left;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  display: block;
}

.sidebar ul li:hover {
  background-color: #575757;
}

.sidebar ul li#language-toggle {
  cursor: pointer;
  color: #fff;
  font-size: 1.2em;
  text-align: left;
  padding: 15px;
}

/* ------------------------------------------------------------------------------
 * Footer Section
 * ------------------------------------------------------------------------------
 */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin-top: 40px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* ------------------------------------------------------------------------------
 * Hero Section
 * ------------------------------------------------------------------------------
 */
.hero {
  background-image: url("../img/hero.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 80px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  background-color: var(--gold);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #005bb5;
}

.h2-small {
  font-size: 0.85em;
}

.social-links {
  text-align: left;
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  font-size: 18px;
}

/* ------------------------------------------------------------------------------
 * FAQ Section
 * ------------------------------------------------------------------------------
 */
.faq-section {
  background: url("../img/faq.png") no-repeat center center/cover;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.faq-section .container {
  background-color: rgba(0, 0, 0, 0.7); /* Optional: To make text more readable */
  padding: 20px;
  border-radius: 8px;
  position: relative;
  z-index: 2; /* Ensure the content is above the overlay */
}

.faq-section ul.price-list {
  list-style-type: disc; /* Keep the bullets but make them normal discs */
  padding-left: 20px; /* Adjust left padding for the list */
  margin-top: 10px; /* Add some space before the list */
  line-height: 1.6; /* Improve readability by increasing line height */
}

.faq-item {
  margin-top: 20px; /* Space between each FAQ item */
}

.faq-question {
  font-weight: bold; /* Make the question stand out */
  margin-bottom: 5px; /* Space between the question and the answer */
  font-size: 1.1em; /* Slightly larger font for questions */
}

.faq-answer {
  margin-left: 20px; /* Indent the answer to separate it from the question */
  font-size: 1em; /* Regular font size for answers */
  color: #f5f5f5; /* Slightly lighter color for answers for readability */
  line-height: 1.6; /* Improve readability by increasing line height */
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust the color and opacity here */
  z-index: 1; /* Ensure the overlay is above the background image */
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

/* ------------------------------------------------------------------------------
 * Vendor Section
 * ------------------------------------------------------------------------------
 */
.vendor-section {
  background: url("../img/vendors.png") no-repeat center center/cover;
  color: #fff;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  position: top;
}

.vendor-section p {
  text-align: center;
}

.vendor-section .container {
  background-color: rgba(0, 0, 0, 0.6); /* Optional: To make text more readable */
  padding: 20px;
  border-radius: 8px;
  position: relative;
  z-index: 2; /* Ensure the content is above the overlay */
}

/* ------------------------------------------------------------------------------
 * Venue Section
 * ------------------------------------------------------------------------------
 */
.venue-section {
  background: url("../img/venue.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.section p a {
  text-align: left;
}

.venue-section a {
  text-decoration: none;
  color: var(--gold);
  display: inline-block;
  padding: 5px 20px; /* Adding padding to make the background more visible */
  border-radius: 5px; /* Optional: rounded corners */
  transition: color 0.3s ease;
  animation: popInOut 3s ease-in-out infinite; /* Controls the timing and ease of the background animation */
  border-radius: 14px; /* Rounded edges for the "button" effect */
}

.venue-section .container {
  background-color: rgba(0, 0, 0, 0.6); /* Optional: To make text more readable */
  padding: 20px;
  border-radius: 8px;
  position: relative;
  z-index: 2; /* Ensure the content is above the overlay */
}

.venue-section ul {
  list-style-type: none; /* Removes the bullets */
  padding-left: 0; /* Removes any default left padding */
}

.venue-section ul li {
  margin-bottom: 10px; /* Optional: Add some space between the list items */
}

.col2-left {
  text-align: left;
}

.col2-right {
  text-align: left;
}

/* ------------------------------------------------------------------------------
 * Register Section
 * ------------------------------------------------------------------------------
 */
.register-section {
  padding: 60px 0;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.register-content {
  display: flex;
  justify-content: center; /* Center the button within the container */
  align-items: center;
  width: 100%;
}

.register-btn {
  background-color: var(--gold);
  color: #fff; /* Button text color */
  font-size: 1.5em; /* Larger font size for the button */
  padding: 20px 40px; /* Padding to make the button larger */
  text-decoration: none; /* Remove underline from the link */
  border-radius: 5px; /* Rounded corners for the button */
  display: inline-block;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.hidden {
  display: none !important;
}