/* ============================
   Country Modern Components
============================= */

/* Global Mobile Fix */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-stone);
  z-index: 300;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100vw;
  overflow: visible;
  height: auto;
}

.navbar.scrolled {
  box-shadow: var(--shadow-medium);
  border-bottom-color: var(--color-sage);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  gap: 3rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--color-bark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sage);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-sage-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Search Toggle Button */
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-moss);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  flex-shrink: 0;
}

.search-toggle:hover {
  background: rgba(122, 155, 118, 0.1);
  color: var(--color-sage-dark);
}

.search-toggle svg {
  width: 20px;
  height: 20px;
}

/* Shop Icon Button */
.shop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-moss);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
}

.shop-icon:hover {
  background: rgba(122, 155, 118, 0.1);
  color: var(--color-sage-dark);
}

.shop-icon svg {
  width: 22px;
  height: 22px;
}

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Search Overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61, 61, 61, 0.9);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-overlay.active {
  display: flex;
  opacity: 1;
}

.search-modal {
  background: var(--color-cream);
  padding: 3rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-strong);
}

.search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-charcoal);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.search-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.search-modal h2 {
  font-family: var(--font-heading);
  color: var(--color-moss);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.search-form {
  display: flex;
  gap: 1rem;
}

.search-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--color-stone);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
}

.search-form input:focus {
  outline: none;
  border-color: var(--color-sage);
}

.search-form button {
  padding: 1rem 2rem;
  background: var(--color-sage);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.search-form button:hover {
  background: var(--color-sage-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
  position: relative;
}

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

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

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

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

/* Mobile Menu Overlay - DISABLED */
.mobile-menu-overlay {
  display: none !important;
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.7), rgba(168, 197, 209, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 0;
  border-bottom: 4px solid var(--color-sage);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

.hero-slideshow img.active {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.7), rgba(168, 197, 209, 0.6));
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  opacity: 0.95;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--color-cream);
  color: var(--color-moss);
  box-shadow: var(--shadow-medium);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  background: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--color-moss);
}

/* Quick Links Cards */
.quick-links {
  max-width: 1200px;
  margin: -60px auto 0;
  padding: 0 2rem 4rem;
  position: relative;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}

.country-card {
  background: white;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--color-stone);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-sage);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.country-card:hover::before {
  transform: scaleX(1);
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--color-sage);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-moss);
}

.card-description {
  color: var(--color-bark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Featured Image Section */
.featured-image-section {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.featured-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(74, 103, 65, 0.9), transparent);
  padding: 3rem 2rem;
  color: white;
  text-align: center;
}

.featured-overlay h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.featured-overlay p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Background Image Section */
.bg-image-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 8px;
  overflow: hidden;
}

.bg-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 241, 232, 0.92);
  z-index: 1;
}

.bg-image-section .content-box,
.bg-image-section .two-column,
.bg-image-section .three-column,
.bg-image-section .section-header {
  position: relative;
  z-index: 2;
}

/* Darker overlay variant for better contrast */
.bg-image-section.dark-overlay::before {
  background: rgba(245, 241, 232, 0.95);
}

/* Light overlay variant for subtle effect */
.bg-image-section.light-overlay::before {
  background: rgba(245, 241, 232, 0.88);
}

/* Event Card Preview with Background Image */
.event-card-preview {
  position: relative;
  overflow: hidden;
}

.event-card-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 241, 232, 0.90);
  z-index: 1;
  transition: all 0.3s ease;
}

.event-card-preview:hover::before {
  background: rgba(245, 241, 232, 0.85);
}

.event-card-preview:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Image Gallery Grid */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
  z-index: 10;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Weather Widget */
.weather-widget {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.weather-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-icon svg {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.weather-temp {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-moss);
  margin-bottom: 0.5rem;
}

.weather-condition {
  font-size: 1.1rem;
  color: var(--color-bark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.weather-note {
  font-size: 0.9rem;
  color: var(--color-bark);
  opacity: 0.8;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* Footer */
footer {
  background: var(--color-moss);
  color: var(--color-cream);
  text-align: center;
  padding: 3rem 2rem;
  border-top: 4px solid var(--color-sage);
}

footer::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-cream);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  opacity: 0.5;
}

footer p {
  opacity: 0.9;
}

footer a {
  color: var(--color-cream);
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    overflow: visible;
    height: auto;
  }
  
  /* Force all elements to respect viewport */
  * {
    max-width: 100vw !important;
  }
  
  /* Ensure all containers respect viewport width */
  .main-content,
  .content-section,
  .content-box,
  .two-column,
  .three-column,
  .four-column,
  .events-grid,
  .calendar-container,
  .calendar-grid,
  table,
  img,
  iframe {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  /* Fix buttons that might overflow */
  .btn,
  .cta-buttons,
  .calendar-nav {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Mobile Navigation - Complete Override */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw !important;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 2rem 2rem;
    margin: 0;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    list-style: none;
  }
  
  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }
  
  .nav-links li {
    width: 100% !important;
    border-bottom: 1px solid var(--color-stone) !important;
  }
  
  .nav-links a {
    display: block !important;
    padding: 1.25rem 0 !important;
    font-size: 1rem !important;
    text-align: left !important;
  }
  
  .nav-links a::after {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    position: relative !important;
    z-index: 10001 !important;
    flex-shrink: 0 !important;
  }
  
  .mobile-menu-overlay {
    display: none !important;
  }
  
  .search-toggle {
    margin-left: 0.5rem;
    padding: 0.4rem;
  }
  
  .search-modal {
    padding: 2rem;
    width: 95%;
  }
  
  .search-modal h2 {
    font-size: 1.5rem;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .search-form button {
    width: 100%;
  }
  
  /* Other mobile styles */
  .hero {
    height: 50vh;
    min-height: 400px;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .nav-container {
    padding: 0.5rem 0.75rem;
    max-width: 100%;
    min-width: 0;
  }
  
  .logo img {
    height: 100px;
    max-width: 200px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .quick-links {
    margin: -40px auto 0;
    padding: 0 0.75rem 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .country-card {
    padding: 2rem 1.5rem;
  }

  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .featured-image-section {
    height: 300px;
  }
  
  .featured-overlay {
    padding: 2rem 1.5rem;
  }
  
  .featured-overlay h2 {
    font-size: 1.75rem;
  }
  
  .featured-overlay p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .weather-widget {
    padding: 1.5rem 1rem;
  }
  
  .weather-icon {
    width: 50px !important;
    height: 50px !important;
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .weather-icon svg {
    width: 50px !important;
    height: 50px !important;
  }
  
  .weather-temp {
    font-size: 2.5rem;
  }
  
  .weather-condition {
    font-size: 1rem;
  }
  
  .weather-note {
    font-size: 0.85rem;
  }
  
  footer {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 45vh;
    min-height: 350px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .logo img {
    height: 70px;
    max-width: 150px;
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  
  .nav-container {
    padding: 0.4rem 0.5rem;
    min-width: 0;
  }
  
  .nav-links {
    display: flex;
    width: 70vw;
    max-width: 260px;
    padding: 70px 1.25rem 1.5rem;
  }
  
  .nav-links a {
    padding: 0.875rem 0;
    font-size: 0.9rem;
  }
  
  .quick-links {
    margin: -30px auto 0;
    padding: 0 0.5rem 1.5rem;
  }
  
  .cards-grid {
    gap: 1rem;
  }
  
  .country-card {
    padding: 1.5rem 1rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .card-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-description {
    font-size: 0.9rem;
  }
  
  .image-gallery {
    grid-template-columns: 1fr;
  }
  
  .featured-image-section {
    height: 250px;
  }
  
  .featured-overlay {
    padding: 1.5rem 1rem;
  }
  
  .featured-overlay h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.8rem;
  }
}

/* ============================
   Dropdown Navigation
============================= */

.nav-links li {
  position: relative;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solid var(--color-stone);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.75rem;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--color-cream);
  color: var(--color-sage-dark);
  padding-left: 2rem;
}

/* Dropdown arrow indicator */
.dropdown > a::after {
  content: '▾';
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background: rgba(122, 155, 118, 0.05);
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  
  .dropdown-menu a {
    padding-left: 2.5rem;
    font-size: 0.875rem;
  }
  
  .dropdown-menu a:hover {
    padding-left: 3rem;
  }
  
  .dropdown > a {
    cursor: pointer;
  }
}

/* ============================
   Breadcrumbs
============================= */

.breadcrumbs {
  background: var(--color-cream);
  padding-top: 80px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-stone);
}

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

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-charcoal);
}

.breadcrumbs-list li:not(:last-child)::after {
  content: '›';
  color: var(--color-sage);
  font-weight: bold;
}

.breadcrumbs-list a {
  color: var(--color-sage-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-list a:hover {
  color: var(--color-moss);
  text-decoration: underline;
}

.breadcrumbs-list li:last-child {
  color: var(--color-moss);
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0.75rem 0;
  }
  
  .breadcrumbs-list {
    font-size: 0.8rem;
  }
}

/* ============================
   Quick Actions Bar
============================= */

.quick-actions {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-moss) 100%);
  padding: 2rem 0;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.quick-actions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.quick-action-btn {
  background: white;
  border: none;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-charcoal);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quick-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: var(--color-cream);
}

.quick-action-icon {
  width: 40px;
  height: 40px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-action-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.quick-action-text {
  flex: 1;
}

.quick-action-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-moss);
  margin-bottom: 0.25rem;
}

.quick-action-text span {
  font-size: 0.8rem;
  color: var(--color-charcoal);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .quick-actions {
    padding: 1.5rem 0;
  }
  
  .quick-actions-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .quick-action-btn {
    padding: 1rem;
  }
}
