/* main.css - Garutech Business Tours */
/* ========================================== */
/* GLOBAL STYLES & VARIABLES */
/* ========================================== */

@import url("https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,200..900;1,200..900&family=Nunito:wght@300;400;600;700&family=Ubuntu:wght@400;500;700&family=Roboto:wght@300;400;500&display=swap");

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Ubuntu", sans-serif;
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #282828;
  --accent-color: #84393a;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #5b5b5b;
  --nav-hover-color: #84393a;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--nav-hover-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* ========================================== */
/* HEADER & NAVIGATION */
/* ========================================== */

.header {
  background-color: var(--surface-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header .logo img {
  max-height: 70px;
  transition: all 0.3s ease;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu a {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  transition: color 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--accent-color);
}

.navmenu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 20px;
  transition: width 0.3s ease;
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: calc(100% - 40px);
}

.cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-btn:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(132, 57, 58, 0.3);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--accent-color);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle:hover {
  transform: scale(1.1);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--surface-color);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .navmenu.active {
    right: 0;
  }

  .navmenu ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .navmenu a {
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navmenu a::after {
    display: none;
  }

  .cta-btn {
    display: none !important;
  }
}

/* ========================================== */
/* HERO SECTION */
/* ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.hero .info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--contrast-color);
  padding: 120px 20px;
  animation: fadeInUp 1s ease;
}

.hero h2 {
  font-family: "Zalando Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-get-started:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(132, 57, 58, 0.4);
}

/* Hero Carousel */
#hero-carousel {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero .carousel-item.active {
  opacity: 1;
}

.hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background-size: 60%;
  filter: invert(1);
}

/* ========================================== */
/* GALLERY SECTION */
/* ========================================== */

.gallery-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.gallery-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-color),
    transparent
  );
}

.subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Event Cards */
.event-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tour-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  animation: fadeIn 0.6s ease;
}

.tour-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-img {
  transform: scale(1.05);
}

.tour-card-body {
  padding: 25px;
}

.tour-card-date {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.tour-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.tour-card:hover .tour-card-title {
  color: var(--accent-color);
}

.tour-card-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tour-card-meta {
  display: flex;
  gap: 20px;
  color: #888;
  font-size: 0.9rem;
}

.tour-card-meta i {
  margin-right: 5px;
}

/* ========================================== */
/* TOUR PAGE */
/* ========================================== */

.tour-page {
  padding: 120px 0 60px;
  min-height: 100vh;
  animation: fadeIn 0.5s ease;
}

.tour-header {
  text-align: center;
  margin-bottom: 50px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 30px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(132, 57, 58, 0.1);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(132, 57, 58, 0.2);
  transform: translateX(-5px);
  gap: 15px;
}

.tour-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.tour-date {
  color: #666;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Media Sections */
.media-section {
  margin-bottom: 60px;
}

.media-section-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-section-title i {
  color: var(--accent-color);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.media-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
  background: #f5f5f5;
}

.media-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.1);
}

.media-item .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-item:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.media-item:hover .play-icon {
  transform: scale(1.1);
  background: var(--accent-color);
  color: white;
}

/* ========================================== */
/* MODALS */
/* ========================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content img,
.modal-content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.modal-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* ========================================== */
/* FOOTER */
/* ========================================== */

footer {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo {
  max-height: 60px;
}

.footer-links a {
  color: #666;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.copyright {
  color: #888;
  font-size: 0.9rem;
}

/* ========================================== */
/* ANIMATIONS */
/* ========================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(132, 57, 58, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(132, 57, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(132, 57, 58, 0);
  }
}

/* ========================================== */
/* RESPONSIVE STYLES */
/* ========================================== */

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .gallery-section h2 {
    font-size: 2.2rem;
  }

  .tour-header h1 {
    font-size: 2rem;
  }

  .event-cards-container {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .modal-prev,
  .modal-next {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }

  .btn-get-started {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .tour-card-body {
    padding: 20px;
  }

  .tour-card-title {
    font-size: 1.3rem;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.position-relative {
  position: relative !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  flex: 1 0 0%;
  padding: 0 15px;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .col-lg-4,
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ========================================== */
/* MEDIA SELECTION CARDS */
/* ========================================== */

.media-selection-section {
  margin: 60px 0;
  animation: fadeInUp 0.6s ease;
}

.media-selection-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 2px solid transparent;
  margin-bottom: 30px;
}

.media-selection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.media-selection-card:active {
  transform: translateY(-5px);
}

.selection-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(132, 57, 58, 0.1), rgba(132, 57, 58, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.media-selection-card:hover .selection-card-icon {
  background: linear-gradient(135deg, var(--accent-color), #a34546);
  transform: scale(1.1);
}

.selection-card-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.media-selection-card:hover .selection-card-icon i {
  color: white;
}

.selection-card-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.selection-card-desc {
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.selection-card-count {
  display: inline-block;
  background: rgba(132, 57, 58, 0.1);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.media-selection-card:hover .selection-card-count {
  background: var(--accent-color);
  color: white;
}

/* ========================================== */
/* MEDIA DISPLAY SECTIONS */
/* ========================================== */

.media-display-section {
  animation: fadeIn 0.5s ease;
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.back-to-selection {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  background: rgba(132, 57, 58, 0.1);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.back-to-selection:hover {
  background: rgba(132, 57, 58, 0.2);
  transform: translateX(-5px);
  gap: 15px;
}

.section-header h2 {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-header h2 i {
  color: var(--accent-color);
}

/* ========================================== */
/* MEDIA GRID (for photos/videos) */
/* ========================================== */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.media-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
  background: #f5f5f5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.media-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.1);
}

/* Video specific styling */
.media-item.video-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-item.video-item:hover::before {
  opacity: 1;
}

.media-item.video-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  z-index: 2;
  opacity: 0;
}

.media-item.video-item:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================== */
/* EMPTY STATE */
/* ========================================== */

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 15px;
  border: 2px dashed #ddd;
}

.empty-state i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 15px;
}

.empty-state p {
  color: #888;
  font-size: 1.1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ========================================== */
/* RESPONSIVE */
/* ========================================== */

@media (max-width: 992px) {
  .media-selection-card {
    padding: 30px 20px;
  }
  
  .selection-card-icon {
    width: 70px;
    height: 70px;
  }
  
  .selection-card-icon i {
    font-size: 30px;
  }
  
  .selection-card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .media-selection-section {
    margin: 40px 0;
  }
  
  .media-selection-card {
    padding: 25px 15px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .media-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .selection-card-title {
    font-size: 1.3rem;
  }
}
