/* Modern CSS for Gallery Site */
/* CSS Variables for Modern Theming */
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #000000;
  --text-color: #000000;
  --light-text: #666666;
  --white: #ffffff;
  --black: #000000;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  transition: filter 0.3s ease;
}

.nav-logo:hover img {
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), #666);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

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

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
  }
  
  .nav-logo img {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }
  
  .nav-logo img {
    max-width: 90px;
  }
}



/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  /* padding-top: 80px; /* Account for fixed navbar */
  overflow: hidden;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.hero-logo img {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

/* Force grayscale on all hero slideshow images */
.hero-slideshow .slide {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grayscale'%3E%3CfeColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/filter%3E%3C/svg%3E#grayscale") !important;
}

#hero-slideshow-container img,
.hero-slideshow img,
.hero-slideshow .slide img,
.slide img {
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grayscale'%3E%3CfeColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/filter%3E%3C/svg%3E#grayscale") !important;
  object-fit: cover !important;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}

.slideshow-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 15;
}

.slide-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
}

.slide-btn:hover,
.slide-btn.active {
  opacity: 1;
  background: var(--white);
  transform: scale(1.2);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--white);
  scroll-margin-top: 80px;
}

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px var(--shadow);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

/* Gallery Preview Section */
.gallery-preview-section {
  padding: 5rem 0;
  background: #f8f9fa;
  scroll-margin-top: 80px;
}

.gallery-preview-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.gallery-preview-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.gallery-preview-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

.gallery-preview-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-preview-card:hover img {
  transform: scale(1.05);
}

.gallery-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1rem;
  color: var(--white);
}

.gallery-preview-overlay p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.gallery-preview-overlay h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.view-more {
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}

.view-more-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

/* Collaborations Section */
.collaborations-section {
  padding: 5rem 0;
  background: var(--white);
  scroll-margin-top: 80px;
}

.collaborations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.collaborations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.collaboration-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.collaboration-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

.collaboration-item img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 1rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.collaboration-item:hover img {
  filter: grayscale(0%);
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: #f8f9fa;
  scroll-margin-top: 80px;
}

.reviews-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.reviews-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
  /* Center items when fewer than 3 are visible */
  justify-content: center;
}

.review-card {
  flex: 0 0 auto;
  min-width: 280px;
  max-width: 350px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Center 1 review */
.reviews-track.reviews-center-1 {
  justify-content: center;
}

.reviews-track.reviews-center-1 .review-card {
  flex: 0 0 350px;
  max-width: 350px;
}

/* Center 2 reviews */
.reviews-track.reviews-center-2 {
  justify-content: center;
  gap: 2rem;
}

.reviews-track.reviews-center-2 .review-card {
  flex: 0 0 320px;
  max-width: 320px;
}

/* 3+ reviews - normal carousel */
.reviews-track.reviews-center-3 {
  justify-content: flex-start;
  gap: 1.5rem;
}

.reviews-track.reviews-center-3 .review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 350px;
}

/* Tablet - 2 reviews visible */
@media (max-width: 1024px) {
  .reviews-track.reviews-center-3 .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

/* Mobile - 1 review visible */
@media (max-width: 768px) {
  .reviews-track.reviews-center-3 .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .reviews-track.reviews-center-2 .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 0.25rem;
}

.review-type {
  font-size: 0.85rem;
  color: var(--light-text);
  font-style: italic;
  margin: 0;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--light-text);
  flex: 1;
  margin: 0;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.review-rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.reviews-nav {
  background: var(--white);
  border: 2px solid var(--light-text);
  color: var(--text-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviews-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

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

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-text);
  opacity: 0.4;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.review-dot.active {
  opacity: 1;
  background: var(--primary-color);
  transform: scale(1.2);
}

.review-dot:hover {
  opacity: 0.7;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: var(--white);
  scroll-margin-top: 80px;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

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

.pricing-category {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

.pricing-category-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary-color);
  padding: 1rem 1.5rem;
  margin: 0;
}

.pricing-items {
  padding: 1.5rem;
}

.pricing-item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.pricing-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-item:first-child {
  padding-top: 0;
}

.pricing-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.pricing-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  flex: 1;
}

.pricing-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.pricing-item-description {
  font-size: 0.9rem;
  color: var(--light-text);
  margin: 0;
  line-height: 1.5;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-text);
  font-style: italic;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.error-message {
  text-align: center;
  color: var(--light-text);
  padding: 2rem;
}

/* Pricing Mobile Responsive */
@media (max-width: 768px) {
  .pricing-section {
    padding: 3rem 0;
  }

  .pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .pricing-category-title {
    font-size: 1.2rem;
    padding: 0.875rem 1.25rem;
  }

  .pricing-items {
    padding: 1.25rem;
  }

  .pricing-item {
    padding: 0.875rem 0;
  }

  .pricing-item-name {
    font-size: 0.95rem;
  }

  .pricing-item-price {
    font-size: 1rem;
  }

  .pricing-item-description {
    font-size: 0.85rem;
  }

  .pricing-note {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .pricing-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .pricing-container {
    gap: 1.25rem;
  }

  .pricing-category-title {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }

  .pricing-items {
    padding: 1rem;
  }

  .pricing-item {
    padding: 0.75rem 0;
  }

  .pricing-item-name {
    font-size: 0.9rem;
  }

  .pricing-item-price {
    font-size: 0.95rem;
  }

  .pricing-item-description {
    font-size: 0.8rem;
  }
}

/* Booking Section */
.booking-section {
  padding: 3rem 0;
  background: #f8f9fa;
  scroll-margin-top: 80px;
}

.booking-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  align-items: start;
}

/* Booking Form */
.booking-form-wrapper {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.booking-form-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.6rem 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-family);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-submit-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.booking-submit-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.booking-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.booking-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

.booking-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.booking-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Calendar */
.calendar-wrapper {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.calendar-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.calendar-nav-btn {
  background: var(--white);
  border: 2px solid #e0e0e0;
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.calendar-nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-text);
  padding: 0.5rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background: var(--white);
  border: 2px solid transparent;
}

.calendar-day:hover:not(.full):not(.empty) {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.calendar-day.available {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #a5d6a7;
}

.calendar-day.full {
  background: #ffebee;
  color: #c62828;
  cursor: not-allowed;
  opacity: 0.7;
}

.calendar-day.full::after {
  content: 'PLNÉ';
  position: absolute;
  bottom: 2px;
  font-size: 0.55rem;
  font-weight: 700;
  opacity: 0.9;
}

.calendar-day.selected {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

.calendar-day.today {
  border: 2px solid var(--primary-color);
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--light-text);
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.legend-dot.available {
  background: #e8f5e9;
  border: 2px solid #a5d6a7;
}

.legend-dot.full {
  background: #ffebee;
  border: 2px solid #ef9a9a;
}

.legend-dot.selected {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Booking Section Mobile Responsive */
@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 700px;
  }

  .booking-form-wrapper,
  .calendar-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 3rem 0;
  }

  .booking-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .booking-container {
    padding: 0 1rem;
  }

  .booking-form-wrapper,
  .calendar-wrapper {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calendar-weekdays span {
    font-size: 0.75rem;
    padding: 0.25rem;
  }

  .calendar-day {
    font-size: 0.85rem;
  }

  .calendar-day.full::after {
    font-size: 0.5rem;
  }

  .calendar-legend {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .legend-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .booking-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .booking-form-wrapper,
  .calendar-wrapper {
    padding: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .booking-submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .calendar-header h3 {
    font-size: 1.1rem;
  }

  .calendar-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .calendar-days {
    gap: 0.25rem;
  }

  .calendar-day {
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .calendar-day.full::after {
    font-size: 0.45rem;
    bottom: 1px;
  }

  .calendar-legend {
    gap: 0.75rem;
  }

  .legend-item {
    font-size: 0.75rem;
  }

  .legend-dot {
    width: 12px;
    height: 12px;
  }
}

/* Reviews Mobile Responsive */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .reviews-carousel-wrapper {
    padding: 0 0.5rem;
  }

  .reviews-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .reviews-section {
    padding: 3rem 0;
  }

  .reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .review-header {
    gap: 0.75rem;
  }

  .review-avatar {
    width: 50px;
    height: 50px;
  }

  .review-name {
    font-size: 1rem;
  }

  .review-type {
    font-size: 0.8rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .reviews-nav {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #f8f9fa;
  scroll-margin-top: 80px;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* Contact Information Box */
.contact-info-box {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 2.5rem;
  transition: var(--transition);
}

.contact-info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.contact-info-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: var(--transition);
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-item .fa-icon {
  font-size: 1.2rem;
  color: #000000;
  width: 25px;
  margin-top: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
}

/* Map Section */
.contact-map {
  position: relative;
  height: 100%;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.map-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: var(--transition);
}

.map-container:hover iframe {
  transform: scale(1.02);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

header {
  background: var(--white);
  color: var(--text-color);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--primary-color);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

header h1 span {
  color: var(--primary-color);
}

header p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Gallery Controls */
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 1rem 2rem;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--light-text);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
  font-size: 0.9rem;
  z-index: 2;
  position: relative;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pagination {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.page-btn {
  background: var(--white);
  border: 2px solid var(--light-text);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Gallery Grid */
#gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Gallery Cards */
.gallery-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  transform: translateY(0);
  will-change: transform, box-shadow;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  will-change: transform;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Text Overlay */
.gallery-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1rem;
  color: var(--white);
}

.gallery-card h2 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.gallery-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Gallery Detail */
#gallery-detail {
  width: 90%;
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
}

.gallery-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.gallery-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-info p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--light-text);
}

.gallery-info strong {
  color: var(--text-color);
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.image-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px var(--shadow);
  display: block;
  will-change: transform, box-shadow;
}

.image-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

/* Media wrapper for images and videos */
.media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px var(--shadow);
}

.media-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

.media-wrapper img,
.media-wrapper video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.media-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease-out;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease-out;
  will-change: transform, opacity;
}

.lightbox .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox .close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: 2px solid var(--light-text);
  border-radius: var(--border-radius);
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  backdrop-filter: blur(10px);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-nav:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.9);
  border-color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.3);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

/* Lightbox Counter */
.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for Lightbox Navigation */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox .close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-counter {
    bottom: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .lightbox-nav {
    width: 35px;
    height: 35px;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-nav svg {
    width: 16px;
    height: 16px;
  }
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.back-btn:hover {
  transform: translateY(-2px);
  background: #333333;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.back-btn::before {
  content: '←';
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  #gallery-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .gallery-controls {
    flex-direction: column;
    gap: 1rem;
    padding: 90px 1rem 2rem;
  }

  .filters {
    justify-content: center;
  }

  .pagination {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 60px;
  }

  .gallery-controls {
    padding: 80px 1rem 2rem;
  }

  .hero-logo {
    transform: translate(-50%, -50%);
  }

  .hero-logo img {
    max-width: 200px;
  }

  .slideshow-controls {
    bottom: 1rem;
  }

  header {
    padding: 2rem 1rem;
  }

  header h1 {
    font-size: 2.5rem;
  }

  #gallery-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 95%;
    padding: 0 0.5rem;
  }

  .gallery-card {
    border-radius: 8px;
  }

  .gallery-card img {
    height: 200px;
  }

  .gallery-card .card-overlay {
    padding: 1.5rem 1rem 0.75rem;
  }

  .gallery-card h2 {
    font-size: 1.25rem;
  }

  .gallery-card p {
    font-size: 0.85rem;
  }

  .gallery-header {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .gallery-header h1 {
    font-size: 2rem;
  }

  .gallery-info {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .gallery-info p {
    font-size: 1rem;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .image-grid img {
    height: 200px;
  }

  .lightbox .close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .back-btn {
    margin: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .back-btn::before {
    margin-right: 0.25rem;
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }

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

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  /* Contact Section Responsive */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-box {
    padding: 2rem 1.5rem;
  }

  .contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .contact-items {
    gap: 1.25rem;
  }

  .contact-item {
    padding: 0.875rem;
  }

  .map-container {
    height: 300px;
  }

  .contact-map {
    height: auto;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }

  .gallery-controls {
    padding: 70px 1rem 2rem;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  #gallery-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 98%;
  }

  .gallery-card img {
    height: 180px;
  }

  .gallery-card h2 {
    font-size: 1.1rem;
  }

  .gallery-card p {
    font-size: 0.8rem;
  }

  .gallery-header h1 {
    font-size: 1.75rem;
  }

  .gallery-info p {
    font-size: 0.95rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .image-grid img {
    height: 180px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox .close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }

  .back-btn {
    margin: 0.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .footer {
    padding: 40px 0 15px;
  }

  .footer-content {
    padding: 0 10px;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-column p {
    font-size: 0.9rem;
  }

  .social-link {
    font-size: 1.25rem;
  }

  .back-to-top {
    bottom: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* Contact Section Mobile */
  .contact-content {
    padding: 0 1rem;
  }

  .contact-layout {
    gap: 1.5rem;
  }

  .contact-info-box {
    padding: 1.5rem 1rem;
  }

  .contact-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }

  .contact-items {
    gap: 1rem;
  }

  .contact-item {
    padding: 0.75rem;
  }

  .contact-item i {
    font-size: 1.1rem;
    width: 22px;
  }

  .contact-label {
    font-size: 0.8rem;
  }

  .contact-value {
    font-size: 0.95rem;
  }

  .map-container {
    height: 250px;
  }

  .contact-map {
    height: auto;
  }
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}



/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Footer Logo */
.footer-logo {
  height: 25px !important;
  margin-bottom: 0.75rem !important;
  max-width: 100%;
  object-fit: contain;
}

/* Footer */
.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease-out;
  /* margin-top: 4rem; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}


.footer-column i {
    color: #000000;
    width: 20px;
    margin-right: 10px;
}

.footer-column .contact-icon {
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
    color: #ffffff;
}

.social-link {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #000000;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    color: #ffffff;
}

.fa-icon-social {
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.social-link:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom hr {
    border: none;
    height: 1px;
    background-color: #eaeaea;
    margin-bottom: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

/* Focus Styles */
.gallery-card:focus,
.image-grid img:focus,
.back-btn:focus,
.back-to-top:focus,
.lightbox .close:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Performance Optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gallery-card,
.image-grid img,
.back-btn,
.social-link {
  backface-visibility: hidden;
  perspective: 1000px;
}
