* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color-scheme: light only;
  -webkit-color-scheme: light only;
}

body {
  font-family: 'Oswald', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f0f0f0;
  color-scheme: light only;
  -webkit-color-scheme: light only;
}

.container {
  margin: 0 auto;
}

.container-constrained {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #a44719;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a44719;
  transition: width 0.3s ease;
}

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: #a44719;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.landing-section {
  height: 60vh;
  background: linear-gradient(135deg, #a7a8ac 0%, #07010e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.landing-section-inner-pages {
  height: 40vh;
}

.landing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/photos/ACC58B88-924E-4938-A5B3-D9E3CA89F25A - Vlad Vatsek.jpeg')
    center/cover;
  opacity: 0.8;
  z-index: 1;
}

.about-landing-section::before {
  background: url('assets/about/about0.jpg') center/cover;
}

.sponsor-landing-section::before {
  background: url('assets/about/sponsors.JPG') center/cover;
}

.shop-landing-section::before {
  background: url('assets/shop/geo_1140.JPG') center/cover;
}

.workshops-landing-section::before {
  background: url('assets/photos/workshops-b.JPG') center/cover;
}

.schedule-landing-section::before {
  background: url('assets/schedule/schedule-b.jpg') center/cover;
}

.landing-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.welcome-content-background {
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.landing-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.landing-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
}

.landing-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-button {
  background: #a44719;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #a44719;
}

.cta-button:hover {
  background: white;
  color: #a44719;
  transform: translateY(-2px);
}

.secondary-button {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.secondary-button:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.countdown {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  min-width: 120px;
}

.countdown-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.countdown-label {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.festival-started {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #27ae60;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

section {
  padding: 20px 0;
}

section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2a2b0e;
}

section h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2a2b0e;
}

section h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #2a2b0e;
}

.home-section {
  background: white;
}

.welcome-content {
  text-align: center;
  margin-bottom: 60px;
}

.welcome-title {
  font-size: 4rem;
  font-weight: 700;
  color: #a44719;
  margin-bottom: 20px;
}

.welcome-dates {
  font-size: 2.5rem;
  color: #2a2b0e;
  font-weight: 400;
}

.festival-description {
  margin-bottom: 60px;
}

.description-title {
  color: #a44719;
}

.festival-description p,
.accessibility-section p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555;
}

.key-figures-section {
  padding: 0;
}

.green-background-container,
.key-figures {
  background: #2a2b0e;
  padding: 80px 0;
  color: #fff;
  width: 100%;
}

.key-figures-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.key-figures-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
  align-items: end;
}

.key-figures h3 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.key-figures-top {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.key-figure-item.large {
  text-align: left;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.key-figure-item.large .key-figure-icon {
  font-size: 3rem;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
  margin-top: 5px;
}

.key-figure-item.large .key-figure-content {
  flex: 1;
}

.key-figure-number.large {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: #fff;
  display: block;
}

.key-figure-description {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 300;
  max-width: 300px;
}

.key-figures-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  color: #fff;
  margin-top: 5px;
}

.feature-icon.material-icons {
  font-size: 2.5rem;
  line-height: 1;
}

.feature-icon.material-symbols-outlined {
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.feature-content {
  flex: 1;
}

.feature-item h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.feature-item p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}

.key-figures ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.key-figures li {
  font-size: 1.1rem;
  margin-bottom: 0;
  padding: 20px;
  position: relative;
  color: #ccc;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.key-figures li::before {
  display: none;
}

.accessibility-section {
  background: #f0f0f0;
  padding: 40px;
  border-radius: 15px;
}

.accessibility-section h3 {
  color: #2a2b0e;
}

.accessibility-section a,
.about-subsection a,
.about-subsection .phone-number {
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
}

.accessibility-section a:hover {
  text-decoration: underline;
}

.accessibility-section p:has(.material-icons) {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.accessibility-section .material-icons {
  margin-right: 8px;
  font-size: 1.2em;
  display: inline-flex;
}

.sponsor-download-link {
  display: inline-flex;
  align-items: center;
  background: #a44719;
  color: white !important;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.sponsor-download-link:hover {
  background: #8a3a15;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(164, 71, 25, 0.3);
}

.sponsor-download-link .material-icons {
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: middle;
}

.schedule-section,
.workshops-section {
  background: #f0f0f0;
}

.schedule-content {
  margin: 0 auto;
}

.schedule-intro {
  text-align: center;
  margin-bottom: 50px;
}

.schedule-intro h3 {
  color: #a44719;
  margin-bottom: 20px;
}

.schedule-intro p {
  font-size: 1.2rem;
  color: #555;
}

.schedule-days {
  display: grid;
  gap: 40px;
  margin-bottom: 50px;
}

.schedule-day {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.schedule-day h4 {
  color: #a44719;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  border-bottom: 3px solid #a44719;
  padding-bottom: 15px;
}

.day-events {
  display: grid;
  gap: 20px;
}

.event-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.event-time {
  background: #a44719;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-width: 120px;
}

.event-details h5 {
  color: #2a2b0e;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.event-details p {
  color: #555;
  margin: 0;
  font-size: 1rem;
}

.schedule-highlights {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.schedule-highlights h4 {
  color: #a44719;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.schedule-highlights ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.schedule-highlights li {
  font-size: 1.1rem;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 10px;
  border-left: 4px solid #a44719;
}

.schedule-highlights strong {
  color: #2a2b0e;
}

.schedule-coming-soon {
  text-align: center;
  padding: 60px 20px;
}

.coming-soon-content {
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-content h4 {
  color: #a44719;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.coming-soon-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.schedule-preview {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  text-align: left;
}

.schedule-preview h5 {
  color: #2a2b0e;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.schedule-preview ul {
  list-style: none;
  padding: 0;
}

.schedule-preview li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.schedule-preview li::before {
  content: '🏔️';
  position: absolute;
  left: 0;
  top: 0;
}

.archive-link {
  background: #e8f4fd;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.archive-link a {
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
}

.archive-link a:hover {
  text-decoration: underline;
}

.schedule-note {
  font-style: italic;
  color: #7f8c8d;
  margin-top: 15px;
}

.schedule-note a {
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
}

.schedule-note a:hover {
  text-decoration: underline;
}

.workshops-content {
  text-align: center;
  font-size: 1.2rem;
  color: #7f8c8d;
}

.workshops-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.workshop-category {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.workshop-category:hover {
  transform: translateY(-5px);
}

.workshop-category h4 {
  color: #a44719;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.workshop-category p {
  color: #555;
  margin: 0;
}

.landing-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-section {
  background: white;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

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

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

.sponsors-section {
  background: #f0f0f0;
}

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

.sponsors-intro {
  text-align: center;
  margin-bottom: 50px;
}

.sponsors-intro h3 {
  color: #a44719;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.sponsors-intro p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.sponsorship-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.sponsor-tier {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.sponsor-tier:hover {
  transform: translateY(-5px);
}

.sponsor-tier h4 {
  color: #a44719;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.tier-amount {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.tier-details ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.tier-details li {
  font-size: 1rem;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.tier-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.contributors-section {
  margin-bottom: 50px;
}

.contributors-section h3 {
  text-align: center;
  color: #a44719;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.contributors-section > p {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.sponsors-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
}

.sponsor-category h4 {
  text-align: center;
  margin-bottom: 20px;
  color: #2a2b0e;
  font-size: 1.8rem;
}

.sponsor-category > p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  align-items: start;
}

.service-sponsor {
  text-align: center;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-sponsor:hover {
  transform: translateY(-5px);
}

.service-photo {
  margin-bottom: 20px;
}

.service-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a44719 0%, #c0392b 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-sponsor h5 {
  color: #2a2b0e;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-sponsor p {
  color: #555;
  margin: 0;
  font-size: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  align-items: start;
}

.product-sponsor {
  text-align: center;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-sponsor:hover {
  transform: translateY(-5px);
}

.product-logo {
  margin-bottom: 20px;
}

.logo-placeholder {
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-sponsor h5 {
  color: #2a2b0e;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-sponsor p {
  color: #555;
  margin: 0;
  font-size: 1rem;
}

.sponsor-cta {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 50px;
}

.sponsor-cta h4 {
  color: #a44719;
  margin-bottom: 20px;
  font-size: 2rem;
}

.sponsor-cta p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 0;
}

.sponsor-cta a {
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
}

.sponsor-cta a:hover {
  text-decoration: underline;
}

.sponsor-logo {
  max-width: 200px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 20px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
}
.sponsor-logo.photo-sponsor-logo {
  padding: 0;
}

.sponsor-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sponsors-section a {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.sponsors-section a:hover {
  transform: scale(1.05);
}

.sponsors-section .container-constrained {
  text-align: center;
  margin-bottom: 60px;
}

/* Shop Grid Layout */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Shop Styles */
.shop-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.shop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shop-item h3 {
  color: #a44719;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.product-images {
  margin-bottom: 30px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-description {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-description p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.product-description p:last-child {
  margin-bottom: 0;
}

.size-guide-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-action {
  text-align: center;
}

.stripe-button {
  background: #a44719;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stripe-button:hover {
  background: #8a3a15;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(164, 71, 25, 0.3);
}

.stripe-button .material-icons {
  font-size: 1.2rem;
}

/* Size Guide Link Styles */
.size-guide-link {
  background: transparent;
  color: #a44719;
  border: none;
  padding: 10px 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.size-guide-link:hover {
  background: #a44719;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(164, 71, 25, 0.3);
}

.size-guide-link .material-icons {
  font-size: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  border-radius: 15px 15px 0 0;
}

.modal-header h3 {
  margin: 0;
  color: #a44719;
  font-size: 1.5rem;
  font-weight: 600;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: #a44719;
}

.modal-body {
  padding: 25px;
  text-align: center;
}

.modal-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-image {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(164, 71, 25, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-nav:hover {
  background: rgba(164, 71, 25, 1);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
  left: -60px;
}

.modal-nav.next {
  right: -60px;
}

.modal-nav .material-icons {
  font-size: 24px;
}

.modal-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.modal-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-indicator.active {
  background: #a44719;
}

.modal-image-title {
  text-align: center;
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}

.sponsors-section h2 {
  color: #a44719;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}

.gold-sponsor {
  max-width: 650px;
  max-height: none;
  margin: 30px;
  padding: 20px;
}

.silver-sponsor {
  max-width: 450px;
  max-height: none;
  margin: 30px;
  padding: 20px;
}

.auspice-sponsor {
  max-width: 400px;
  max-height: none;
  margin: 25px;
  padding: 18px;
}

.sponsor-item {
  display: inline-block;
  text-align: center;
  margin: 20px;
  vertical-align: top;
}

.sponsor-name {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #2a2b0e;
  text-align: center;
  max-width: 200px;
  line-height: 1.3;
}

.about-section {
  background: white;
  padding: 20px 0;
}

.section-no-background {
  background: none !important;
  padding: 0px !important;
}

.about-subsection {
  margin-bottom: 60px;
  padding: 40px;
  background: #f0f0f0;
  border-radius: 15px;
}

.about-section h2,
.crag-etiquette-section h2 {
  color: #a44719;
  margin-bottom: 30px;
}

.green-background-container > * h2 {
  color: #fff;
}

.about-subsection h3 {
  color: #2a2b0e;
  margin-bottom: 30px;
}

.about-subsection p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.about-subsection ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-subsection li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.about-subsection li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.travel-info h4 {
  color: #a44719;
  margin-top: 30px;
}

.transit-widget {
  background: #e8f4fd;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
}

.transit-widget a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
}

.transit-widget a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  border: 2px solid #a44719;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #a44719;
  color: white;
  transform: translateY(-2px);
}

.social-link .material-icons {
  font-size: 1.2rem;
}

.team-organizer {
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.team-organizer-image {
  flex: 0 0 380px;
  max-width: 380px;
}

.team-organizer-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-organizer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-organizer h4 {
  color: #a44719;
  margin-bottom: 20px;
  font-size: 2rem;
}

.team-organizer h5 {
  color: #2a2b0e;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.organizer-info p {
  margin-bottom: 15px;
}

.rooted-ascents-shout-out {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555;
}

.founder-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

/* .founder-socials .instagram-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
} */

.founder-socials a,
.rooted-ascents-shout-out a {
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.founder-socials a:hover {
  color: #2a2b0e;
  text-decoration: underline;
}

.organizer-info .material-icons {
  font-size: 1rem;
  vertical-align: middle;
  margin: 0 4px;
}

.team-founders h4 {
  color: #a44719;
  margin-bottom: 30px;
  font-size: 2rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.founder-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.founder-photo {
  margin-bottom: 20px;
}

.founder-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.founder-card h5 {
  color: #a44719;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.founder-card p {
  margin-bottom: 15px;
  text-align: left;
  font-size: 1rem;
}

.founder-card strong {
  color: #2a2b0e;
}

.founder-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer {
  background: #2a2b0e;
  color: white;
  text-align: center;
  padding: 40px 0;
}

.footer p {
  font-size: 1.1rem;
}

input,
textarea,
select,
button {
  color-scheme: light only;
  -webkit-color-scheme: light only;
}

::placeholder {
  color: #999;
}

::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .landing-section {
    height: 100vh;
  }

  .landing-title {
    font-size: 2.5rem;
  }

  .welcome-title {
    font-size: 2.5rem;
  }

  .year-buttons {
    flex-direction: column;
    align-items: center;
  }

  .countdown {
    gap: 15px;
  }

  .countdown-item {
    min-width: 100px;
    padding: 15px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  section h2 {
    font-size: 2.5rem;
  }

  section h3 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .sponsors-categories {
    grid-template-columns: 1fr;
  }

  .sponsorship-tiers {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .key-figures-header {
    flex-direction: column;
    gap: 40px;
  }

  .key-figures-top {
    flex-direction: column;
    gap: 40px;
  }

  .key-figures-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .sponsor-logo {
    max-width: 180px;
    max-height: 110px;
    margin: 18px;
    padding: 12px;
  }

  .gold-sponsor {
    max-width: 250px;
    max-height: 150px;
    margin: 25px;
    padding: 18px;
  }

  .silver-sponsor {
    max-width: 200px;
    max-height: 150px;
    margin: 25px;
    padding: 18px;
  }

  .auspice-sponsor {
    max-width: 200px;
    max-height: 120px;
    margin: 20px;
    padding: 15px;
  }

  .sponsors-section h2 {
    font-size: 2.2rem;
  }

  .sponsor-item {
    margin: 15px;
  }

  .sponsor-name {
    font-size: 0.9rem;
    max-width: 180px;
  }

  .team-organizer {
    flex-direction: column;
    gap: 30px;
  }

  .team-organizer-image {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .team-organizer-image img {
    max-width: 250px;
  }
}

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

  .landing-title {
    font-size: 2rem;
  }

  .welcome-title {
    font-size: 2rem;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 80px;
    padding: 10px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

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

  .key-figures-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .key-figures h3 {
    font-size: 2rem;
  }

  .key-figure-number.large {
    font-size: 3.5rem;
  }

  .sponsor-logo {
    max-width: 150px;
    max-height: 90px;
    margin: 15px;
    padding: 10px;
  }

  .sponsor-logo.photo-sponsor-logo {
    padding: 0;
  }

  .gold-sponsor {
    max-width: 200px;
    max-height: 120px;
    margin: 20px;
    padding: 15px;
  }

  .silver-sponsor {
    max-width: 150px;
    max-height: 100px;
    margin: 18px;
    padding: 12px;
  }

  .auspice-sponsor {
    max-width: 170px;
    max-height: 100px;
    margin: 18px;
    padding: 12px;
  }

  .sponsors-section h2 {
    font-size: 2rem;
  }

  .sponsor-item {
    margin: 12px;
  }

  .sponsor-name {
    font-size: 0.85rem;
    max-width: 150px;
  }

  .team-organizer {
    gap: 20px;
  }

  .team-organizer-image img {
    max-width: 200px;
  }

  .team-organizer h4 {
    font-size: 1.5rem;
  }

  .team-organizer h5 {
    font-size: 1.2rem;
  }

  /* Shop Mobile Styles */
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .shop-item {
    padding: 20px;
  }

  .shop-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .product-gallery {
    text-align: center;
  }

  .product-image {
    max-width: 250px;
  }

  .size-guide-image {
    max-width: 300px;
  }

  .stripe-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .size-guide-link {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-image {
    max-height: 60vh;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
  }

  .modal-nav.prev {
    left: -45px;
  }

  .modal-nav.next {
    right: -45px;
  }

  .modal-nav .material-icons {
    font-size: 20px;
  }

  .modal-indicator {
    width: 10px;
    height: 10px;
  }
}

/* Collapsible Details/Summary Styling */
.crag-etiquette-section details {
  margin-bottom: 15px;
  width: 100%;
}

.crag-etiquette-section summary {
  width: 100%;
  padding: 15px 20px;
  background-color: #fff;
  border: 2px solid #a44719;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  list-style: none;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crag-etiquette-section summary::-webkit-details-marker {
  display: none;
}

.crag-etiquette-section summary::after {
  content: '▶';
  font-size: 14px;
  color: #a44719;
  transition: transform 0.3s ease;
  display: inline-block;
}

.crag-etiquette-section details[open] summary::after {
  transform: rotate(90deg);
}

.crag-etiquette-section summary:hover {
  background-color: #f9f9f9;
  border-color: #8a3914;
}

.crag-etiquette-section details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.crag-etiquette-section details > ul {
  padding: 20px 20px 20px 40px;
  margin: 0;
  background-color: #fff;
  border: 2px solid #a44719;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  list-style-type: disc;
}

.crag-etiquette-section details > ul > li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.crag-etiquette-section details > ul > li:last-child {
  margin-bottom: 0;
}

.crag-etiquette-section details ul ul {
  margin-top: 10px;
  padding-left: 20px;
  background-color: transparent;
  border: none;
  list-style-type: circle;
}

.crag-etiquette-section details ul ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.crag-etiquette-section details > .details-content {
  padding: 20px;
  margin: 0;
  background-color: #fff;
  border: 2px solid #a44719;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.crag-etiquette-section details > .details-content .travel-info {
  margin-bottom: 20px;
}

.crag-etiquette-section details > .details-content iframe {
  display: block;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Map Section - Full Width */
.map-section {
  padding: 0;
  background: #f0f0f0;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-container h2 {
  color: #a44719;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
}

/* Map iframe container with overlay */
.map-iframe-container {
  position: relative;
  width: 100%;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  cursor: pointer;
}

.map-section iframe {
  display: block;
  margin: 0 auto;
}

/* Crags Section Styling */
.crags-section {
  padding: 80px 0;
  background-color: #2a2b0e;
  position: relative;
}

.crags-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/crags/crags-background-brush-simple.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  filter: invert(1) brightness(1.2);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.crags-section > * {
  position: relative;
  z-index: 1;
}

.crags-section h2 {
  color: #a44719;
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: 700;
  text-align: left;
}

.crags-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin: 0 auto;
  padding: 80px 20px;
  max-width: 1400px;
}

.crag-item {
  display: flex;
  gap: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 75%;
  max-width: 900px;
  max-height: 350px;
}

.crag-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Alternating layouts - left/right alignment */
.crag-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
}

.crag-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

.crag-image {
  flex: 0 0 40%;
  overflow: hidden;
  position: relative;
  align-self: stretch;
}

.crag-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
}

.crag-info {
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.crag-info h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #222;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.crag-location-name {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.crag-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crag-details p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.8;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.crag-details strong {
  color: #a44719;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  min-width: 90px;
  flex-shrink: 0;
}

.crag-details a {
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
}

.crag-details a:hover {
  text-decoration: underline;
}

/* Responsive Design for Crags */
@media (max-width: 768px) {
  .crags-section::before {
    background-size: auto 100%;
  }

  .crags-grid {
    gap: 40px;
    padding: 40px 10px;
  }

  .crag-item {
    flex-direction: column;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-height: none;
  }

  .crag-image {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
  }

  .crag-info {
    padding: 25px 20px;
  }

  .crag-info h3 {
    font-size: 24px;
  }

  .crag-location-name {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .crag-details {
    gap: 8px;
  }

  .crag-details p {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .crag-details strong {
    font-size: 10px;
    min-width: auto;
  }
}
