:root {
  --font-family-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --color-body: #212529;
  --color-bg: #ffffff;
  --color-primary: #0d6efd;
  --line-height-base: 1.5;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-body);
  background-color: var(--color-bg);
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: var(--color-bg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-body);
  margin-right: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--color-body);
  font-weight: 500;
}

nav a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

#darkModeToggle {
  background: none;
  border: none;
  color: var(--color-body);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: transform 0.2s;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-body);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
    text-align: center;
    gap: 1rem;
  }

  nav ul.active {
    display: flex;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  color: #fff;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.3s;
  opacity: 0;
}

.gallery-grid img.loaded {
  opacity: 1;
}

.image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid #e9ecef;
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  pointer-events: none;
}

.image-wrapper:hover .caption {
  transform: translateY(0);
}

.masonry-section {
  margin-top: 4rem;
  text-align: center;
}

.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.masonry-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.masonry-item img,
.masonry-item video {
  width: 100%;
  display: block;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.3s;
}

.masonry-item img {
  opacity: 0;
}

.masonry-item img.loaded {
  opacity: 1;
}

.masonry-item img:hover,
.masonry-item video:hover {
  transform: scale(1.02);
}

.mute-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
  z-index: 2;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-icon {
  transform: scale(1);
}

@media (max-width: 900px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1;
  }
}

.load-more-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 2rem;
  cursor: pointer;
  font-size: 1rem;
}

.load-more-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.about-section {
  padding: 4rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-top: 4rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.download-btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 1rem;
  transition: opacity 0.3s;
}

.download-btn:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--color-body);
  transition: color 0.3s, transform 0.2s;
}

.social-icon:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.testimonials-section {
  margin-top: 4rem;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 3rem;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 10;
  padding: 0.5rem;
}

.carousel-button:hover {
  color: var(--color-body);
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  flex: 0 0 100%;
  width: 100%;
}

.testimonial-card p {
  font-style: italic;
}

.testimonial-card cite {
  font-weight: 600;
  font-style: normal;
  color: var(--color-primary);
  display: block;
  margin-top: 1rem;
}

.pricing-section {
  margin-top: 4rem;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.pricing-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-card li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing-btn:hover,
.pricing-card.featured .pricing-btn {
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.booking-section {
  margin-top: 4rem;
  text-align: center;
}

.calendar-wrapper {
  max-width: 800px;
  margin: 2rem auto 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.contact-section {
  max-width: 600px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

button[type="submit"] {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}

button[type="submit"]:hover {
  opacity: 0.9;
}

footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #e9ecef;
  font-size: 0.875rem;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

#lightbox-img {
  cursor: zoom-in;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #bbb;
}

.share-btn {
  position: absolute;
  top: 20px;
  right: 80px;
  background: transparent;
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  z-index: 2001;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.fullscreen-btn {
  position: absolute;
  top: 20px;
  right: 160px;
  background: transparent;
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  z-index: 2001;
}

.fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.download-btn {
  position: absolute;
  top: 20px;
  right: 210px;
  background: transparent;
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  z-index: 2001;
  display: flex;
  align-items: center;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #f1f1f1;
  font-size: 3rem;
  cursor: pointer;
  padding: 0 1rem;
  z-index: 2002;
  transition: color 0.3s;
  user-select: none;
}

.lightbox-nav:hover {
  color: #bbb;
}

.lightbox-nav.prev {
  left: 10px;
}

.lightbox-nav.next {
  right: 10px;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dark Mode Overrides */
body.dark-mode {
  --color-body: #e9ecef;
  --color-bg: #212529;
  --color-primary: #6ea8fe;
}

body.dark-mode .image-wrapper {
  background-color: #343a40;
}

body.dark-mode .spinner {
  border-color: #495057;
  border-top-color: var(--color-primary);
}

body.dark-mode input,
body.dark-mode textarea {
  background-color: #343a40;
  border-color: #495057;
  color: var(--color-body);
}

body.dark-mode footer {
  border-top-color: #343a40;
}

body.dark-mode nav ul {
  border-top-color: #343a40;
}

.hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  width: 100%;
  background-color: #000;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-control {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

body.dark-mode .about-section {
  background-color: #343a40;
}

body.dark-mode .profile-pic {
  border-color: #495057;
}

body.dark-mode .testimonial-card {
  background-color: #343a40;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.dark-mode .pricing-card {
  background-color: #343a40;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.dark-mode .pricing-card.featured {
  background-color: #2b3035;
}

body.dark-mode .calendar-wrapper {
  background-color: #343a40;
}

.faq-section {
  margin-top: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.faq-container {
  margin-top: 2rem;
  text-align: left;
}

.faq-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: background-color 0.3s;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 1rem;
  margin-bottom: 0;
}

body.dark-mode .faq-item {
  background-color: #343a40;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.blog-section {
  margin-top: 4rem;
  text-align: center;
}

.blog-search {
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

#blogSearchInput {
  border-radius: 50px;
}

#blogSearchInput:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
  text-align: left;
}

.blog-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.blog-card p {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  align-self: flex-start;
}

body.dark-mode .blog-card {
  background-color: #343a40;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.dark-mode .blog-date {
  color: #adb5bd;
}

/* Blog Modal Styles */
.blog-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.blog-modal.active {
  display: flex;
}

.blog-modal-content {
  background-color: var(--color-bg);
  color: var(--color-body);
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.close-blog {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  color: var(--color-body);
  transition: color 0.3s;
}

.close-blog:hover {
  color: var(--color-primary);
}

.blog-modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

body.dark-mode .blog-modal-content {
  border: 1px solid #495057;
}

.pagination-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pagination-btn:hover,
.pagination-btn.active {
  background-color: var(--color-primary);
  color: #fff;
}

.newsletter-container {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem auto 0;
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #d1e7dd;
  color: #0f5132;
  border-radius: 4px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-body);
  color: var(--color-bg);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  margin-right: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn.secondary {
  background-color: transparent;
  border: 1px solid var(--color-bg);
  color: var(--color-bg);
}

.cookie-btn.secondary:hover {
  background-color: var(--color-bg);
  color: var(--color-body);
}

body.dark-mode .newsletter-container {
  background-color: #343a40;
}

body.dark-mode .newsletter-success {
  background-color: #146c43;
  color: #d1e7dd;
}

.error-page {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page h1 {
  font-size: 6rem;
  color: var(--color-primary);
  margin-bottom: 0;
  line-height: 1;
}

.btn-home {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 1rem;
  transition: opacity 0.3s;
}

.btn-home:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}

@media print {
  /* Hide non-essential elements */
  header,
  .menu-toggle,
  #darkModeToggle,
  .filter-buttons,
  .download-btn,
  .social-links,
  .carousel-button,
  .pricing-btn,
  .contact-section,
  .booking-section,
  #scrollToTopBtn,
  .lightbox,
  .blog-modal,
  .cookie-banner,
  .newsletter-container,
  .read-more,
  .pagination-container,
  .blog-search,
  .hero-slide,
  .hero-overlay,
  .hero-control,
  .load-more-btn,
  .mute-btn,
  .masonry-overlay,
  .share-btn,
  .lightbox-nav,
  .fullscreen-btn,
  .download-btn {
    display: none !important;
  }

  /* Reset body styles */
  body {
    background-color: #fff !important;
    color: #000 !important;
    font-size: 12pt;
    display: block;
  }

  /* Layout adjustments */
  main {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  .hero {
    height: auto;
    background: none !important;
    color: #000 !important;
    padding: 2rem 0 1rem;
    display: block;
  }

  .hero h1 {
    text-shadow: none;
    color: #000;
    font-size: 24pt;
  }

  .hero p {
    text-shadow: none;
    color: #000;
  }

  /* Gallery */
  .gallery-grid {
    display: block;
    margin-top: 1rem;
  }

  .masonry-grid {
    display: block;
    column-count: 2;
  }

  .masonry-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .image-wrapper {
    page-break-inside: avoid;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    display: block;
  }
  
  .image-wrapper img {
    opacity: 1 !important;
  }

  .caption {
    position: static;
    transform: none;
    background: none;
    color: #000;
    padding: 0.5rem;
    text-align: left;
    font-style: italic;
    border-top: 1px solid #eee;
  }

  /* About */
  .about-section {
    background: none !important;
    margin-top: 2rem;
    page-break-inside: avoid;
    padding: 0;
  }
  
  .about-content {
    display: block;
    text-align: left;
  }
  
  .profile-pic {
    box-shadow: none;
    border: 1px solid #ddd;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
    width: 100px;
    height: 100px;
  }

  /* Testimonials */
  .testimonials-section {
    page-break-inside: avoid;
    margin-top: 2rem;
  }
  
  .carousel {
    padding: 0;
    margin: 1rem 0;
    max-width: 100%;
  }
  
  .carousel-track-container {
    overflow: visible !important;
  }
  
  .carousel-track {
    transform: none !important;
    display: block;
  }
  
  .testimonial-card {
    background: none !important;
    border: 1px solid #ddd;
    box-shadow: none;
    margin-bottom: 1rem;
    page-break-inside: avoid;
    width: 100%;
    flex: none;
  }

  /* Pricing */
  .pricing-section {
    margin-top: 2rem;
  }

  .pricing-grid {
    display: block;
    padding: 0;
  }

  .pricing-card {
    background: none !important;
    border: 1px solid #000;
    box-shadow: none !important;
    margin-bottom: 1rem;
    page-break-inside: avoid;
    transform: none !important;
    display: block;
  }
  
  .popular-badge {
    border: 1px solid #000;
    color: #000;
    background: #fff;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .price {
    color: #000;
  }
  
  .pricing-card li::before {
    color: #000;
  }

  /* FAQ */
  .faq-section {
    page-break-inside: avoid;
    margin-top: 2rem;
    max-width: 100%;
  }
  
  .faq-item {
    background: none !important;
    border-bottom: 1px solid #ddd;
    box-shadow: none;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .faq-item summary::after {
    display: none;
  }

  /* Blog */
  .blog-section {
    margin-top: 2rem;
  }

  .blog-grid {
    display: block;
    padding: 0;
  }
  
  .blog-card {
    background: none !important;
    border: 1px solid #ddd;
    box-shadow: none;
    margin-bottom: 1rem;
    page-break-inside: avoid;
    display: block;
  }
  
  .blog-image {
    height: auto;
    max-height: 200px;
    width: 200px;
    float: left;
    margin-right: 1rem;
  }
  
  .blog-content {
    display: block;
  }

  /* Footer */
  footer {
    border-top: 1px solid #000;
    margin-top: 2rem;
    color: #000;
  }
  
  footer a {
    text-decoration: none;
    color: #000;
  }
}