/* ==========================================
   gallery.css - UPDATED WITH DROPDOWN FILTERS
   ========================================== */

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Header - 2-LINE VERSION ===== */
header {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 80px;
}

header h1 {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 240px;
  line-height: 1.2;
}

.line1, .line2 {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.line1 {
  margin-bottom: 2px;
}

.line2 {
  font-size: 1.1rem;
}
/* About Me Button */
.about-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    order: 3;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
}

.about-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
    border-color: #666;
}

.about-btn::before {
    content: "👤";
    font-size: 1rem;
}


/* Navigation - MOVED TO RIGHT */
nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 1;
  margin-left: auto; /* This pushes nav to the right */
}

/* Home Button */
.home-btn {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  order: 2; /* Home button comes after dropdown */
}

.home-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateY(-1px);
}

.home-btn::before {
  content: "🏠";
  font-size: 1rem;
}

/* Dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
  order: 1; /* Dropdown comes before home button */
}

.dropbtn {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid #444;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dropbtn::after {
  content: "▼";
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown.active .dropbtn::after {
  transform: rotate(180deg);
}

.dropbtn:hover {
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
  border-color: #666;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  min-width: 260px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1001;
  border: 1px solid #444;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  margin-top: 8px;
  padding: 12px;
}

.dropdown-content.show {
  display: block;
  animation: dropdownSlideIn 0.3s ease;
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Thematic Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #555;
  transform: translateX(5px);
  text-decoration: none;
  color: #fff;
}

.menu-icon {
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-item:hover .menu-icon {
  transform: scale(1.1);
}

/* Theme Colors */
.earth-theme .menu-icon {
  background: linear-gradient(135deg, #8B4513, #CD853F);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.earth-theme:hover .menu-icon {
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
}

.air-theme .menu-icon {
  background: linear-gradient(135deg, #87CEEB, #B0E0E6);
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
}

.air-theme:hover .menu-icon {
  box-shadow: 0 6px 20px rgba(135, 206, 235, 0.6);
}

.water-theme .menu-icon {
  background: linear-gradient(135deg, #1E90FF, #00BFFF);
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.water-theme:hover .menu-icon {
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.landscape-theme .menu-icon {
  background: linear-gradient(135deg, #32CD32, #90EE90);
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.landscape-theme:hover .menu-icon {
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.6);
}

.menu-text {
  flex: 1;
}

.menu-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: #fff;
}

.menu-subtitle {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 400;
}

.menu-arrow {
  color: #666;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-arrow {
  transform: translateX(3px);
  color: #fff;
}

/* ===== Main Content ===== */
main {
  margin-top: 95px;
  min-height: calc(100vh - 95px);
}

/* ===== Gallery Controls ===== */
.gallery-controls {
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-bottom: 1px solid #333;
}

.gallery-title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 300;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #fff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* Enhanced Filter Section - DROPDOWN STYLE */
.filter-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
  align-items: center;
}

.filter-dropdown {
  position: relative;
  display: inline-block;
  min-width: 200px;
}

.filter-dropdown-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #444;
  color: #fff;
  border-radius: 10px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.filter-select:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #666;
}

.filter-select:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.filter-select option {
  background: #2a2a2a;
  color: #fff;
  padding: 10px;
}

.photos-count {
  color: #888;
  font-size: 1rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #333;
  text-align: center;
  margin-top: 20px;
}

/* ===== Gallery Grid - 4 PHOTOS PER ROW ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 30px;
  max-width: 1400px;
  margin: 0 auto;
  background: #0a0a0a;
}

/* Photo cards */
.photo-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid #333;
  cursor: pointer;
}

.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  border-color: #444;
}

/* Image container with orientation detection */
.photo-image-container {
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Orientation-based scaling for 4-column layout */
.photo-card img {
  width: 100%;
  transition: transform 0.4s ease;
  display: block;
}

.photo-card img.landscape {
  height: 280px;
  object-fit: cover;
}

.photo-card img.portrait {
  height: 380px;
  object-fit: cover;
}

/* REMOVED SQUARE STYLES */

.photo-card:hover img {
  transform: scale(1.08);
}

/* Orientation badge */
.orientation-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid #333;
}

.orientation-badge.landscape {
  background: rgba(76, 175, 80, 0.9);
}

.orientation-badge.portrait {
  background: rgba(33, 150, 243, 0.9);
}

/* Info section */
.photo-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

.photo-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

.photo-info p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Photo metadata tags */
.photo-meta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.meta-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  border: 1px solid #333;
}

.meta-tag.subcategory {
  background: rgba(76, 175, 80, 0.2);
  border-color: #4CAF50;
  color: #a5d6a7;
}

.meta-tag.country {
  background: rgba(33, 150, 243, 0.2);
  border-color: #2196F3;
  color: #90caf9;
}

/* ===== Rating System ===== */
.rating {
  padding: 15px 20px;
  text-align: center;
  border-top: 1px solid #333;
  background: rgba(0, 0, 0, 0.3);
}

.rating .stars {
  margin-bottom: 10px;
}

.rating .star {
  font-size: 1.8rem;
  color: #444;
  cursor: pointer;
  margin: 0 3px;
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.rating .star:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.rating .star.selected {
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.rating .average {
  display: block;
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 5px;
  font-weight: 500;
}

.rating .user-vote {
  display: block;
  font-size: 0.9rem;
  color: #ffd700;
  font-weight: bold;
}

/* No results message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #888;
}

.no-results-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

.no-results h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ccc;
  font-weight: 300;
}

.no-results p {
  font-size: 1.1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ===== Photo Modal Popup ===== */
.photo-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  animation: modalFadeIn 0.4s ease;
}

.photo-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}

.modal-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  display: flex;
  animation: modalSlideIn 0.4s ease;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-image-container {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60%;
  max-height: 90vh;
  overflow: hidden;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.modal-info {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  padding: 40px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #333;
}

.modal-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.modal-description {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.modal-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.modal-meta-tag {
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-meta-tag.subcategory {
  background: rgba(76, 175, 80, 0.2);
  color: #a5d6a7;
  border: 1px solid #4CAF50;
}

.modal-meta-tag.country {
  background: rgba(33, 150, 243, 0.2);
  color: #90caf9;
  border: 1px solid #2196F3;
}

.modal-rating {
  padding: 25px 0;
  border-top: 1px solid #333;
}

.modal-rating .stars {
  margin-bottom: 15px;
  text-align: center;
}

.modal-rating .star {
  font-size: 3rem;
  color: #444;
  cursor: pointer;
  margin: 0 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.modal-rating .star:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.modal-rating .star.selected {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.modal-rating .average {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: center;
}

.modal-rating .user-vote {
  font-size: 1.1rem;
  color: #ffd700;
  font-weight: bold;
  text-align: center;
  display: block;
}

/* Modal Navigation */
.modal-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  pointer-events: none;
}

.modal-nav-btn {
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
  border: 1px solid #333;
}

.modal-nav-btn:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.15);
  border-color: #555;
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: #fff;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
  backdrop-filter: blur(10px);
  border: 1px solid #333;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.1);
  border-color: #555;
}

/* Modal loading state */
.modal-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-loading::after {
  content: '';
  width: 25px;
  height: 25px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Orientation indicators for modal */
.modal-orientation {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid #333;
}

/* Photo counter in modal */
.modal-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid #333;
}

/* ===== Responsive Design ===== */
@media (max-width: 1400px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
  }

  .photo-card img.landscape {
    height: 250px;
  }

  .photo-card img.portrait {
    height: 340px;
  }
}

@media (max-width: 1200px) {
  .gallery-controls {
    padding: 25px 20px;
  }

  .gallery-title {
    font-size: 2.2rem;
  }

  .filter-section {
    gap: 15px;
  }

  .filter-dropdown {
    min-width: 180px;
  }

  .modal-content {
    flex-direction: column;
    max-height: 90%;
  }

  .modal-image-container {
    min-width: 100%;
    max-height: 60vh;
  }

  .modal-info {
    min-width: 100%;
    padding: 25px;
  }

  .modal-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .photo-card img.landscape {
    height: 220px;
  }

  .photo-card img.portrait {
    height: 300px;
  }

  .filter-section {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-dropdown {
    min-width: auto;
  }

  .modal-nav-btn {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .modal-close {
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
  }

  .modal-rating .star {
    font-size: 2.5rem;
    margin: 0 6px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    padding: 12px 20px;
    min-height: auto;
  }

  .line1, .line2 {
    font-size: 1.1rem;
  }

  .line2 {
    font-size: 1rem;
  }

  header h1 {
    max-width: 200px;
  }

  nav {
    gap: 12px;
    margin-left: 0; /* Reset margin on mobile */
    justify-content: center; /* Center items on mobile */
    width: 100%;
  }

  main {
    margin-top: 120px;
  }

  .gallery-controls {
    padding: 20px 15px;
  }

  .gallery-title {
    font-size: 1.8rem;
  }

  .filter-section {
    gap: 15px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .photo-card img.landscape {
    height: 250px;
  }

  .photo-card img.portrait {
    height: 350px;
  }

  .modal-content {
    max-width: 98%;
    max-height: 95%;
  }

  .modal-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .modal-close {
    width: 45px;
    height: 45px;
    font-size: 2rem;
    top: 15px;
    right: 15px;
  }

  .modal-info {
    padding: 20px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-rating .star {
    font-size: 2rem;
    margin: 0 4px;
  }

  .dropbtn {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 15px;
  }

  .line1, .line2 {
    font-size: 1rem;
  }

  .line2 {
    font-size: 0.95rem;
  }

  header h1 {
    max-width: 180px;
  }

  main {
    margin-top: 130px;
  }

  .gallery-controls {
    padding: 15px 10px;
  }

  .gallery-title {
    font-size: 1.6rem;
  }

  .photos-count {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .photo-info {
    padding: 15px;
  }

  .photo-info h3 {
    font-size: 1.1rem;
  }

  .rating {
    padding: 12px 15px;
  }

  .rating .star {
    font-size: 1.6rem;
  }

  .modal-nav {
    padding: 0 15px;
  }

  .modal-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .modal-info {
    padding: 15px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-description {
    font-size: 1rem;
  }

  .modal-rating .star {
    font-size: 1.8rem;
  }

  .home-btn {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .meta-tag {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .filter-dropdown-label {
    font-size: 0.9rem;
  }

  .filter-select {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

/* Print styles */
@media print {
  header, .gallery-controls, .rating, .modal {
    display: none !important;
  }

  .gallery {
    display: block !important;
    padding: 0 !important;
  }

  .photo-card {
    break-inside: avoid;
    margin-bottom: 20px;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}
