/*
Theme Name: mcski-team
Theme URI: 
Author: Jakub Trzpiot
Author URI: 
Description: A custom theme for mcski-team
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mcski-team
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --primary-color: rgb(65, 105, 225);
  --secondary-color: rgb(253, 251, 255);
  --accent-color: rgb(248, 169, 43);
  --text-color: rgb(10, 9, 12);
  --light: rgb(248, 245, 250);
  --dark: rgb(85, 83, 88);
  --border-color: rgb(218, 211, 222);
  --xs: 480px;
  --sm: 640px;
  --md: 768px;
  --lg: 1024px;
  --xl: 1280px;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
  min-height: 100vh;
  max-width: 100%;
  background: var(--primary-color);
  font-size: 1rem;
}

body {
  overflow-x: hidden;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  max-width: 100%;
  background: linear-gradient(150deg, var(--secondary-color) 0%, var(--secondary-color) 20%, var(--primary-color) 100%);
}

.hidden {
  display: none !important;
}

/* Typography */
a {
  text-decoration: none;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

button {
  background: transparent;
  border: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
}

.icon {
  color: var(--text-color);
}

.btn {
  display: inline-block;
  padding: 1.25em 2.5em;
  color: white;
  text-decoration: none;
  border-radius: 1.25em;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

button:active,
button:focus {
  opacity: 1;
  background: transparent;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.shadow-primary {
  box-shadow: 0 8px 32px 0 color-mix(in srgb, var(--primary-color) 20%, transparent 80%);
}

.glass-primary {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--primary-color) 50%, transparent) !important;
}

.glass-accent {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--accent-color) 50%, transparent) !important;
}

.glass-secondary {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--secondary-color) 33%, transparent) !important;
  border: 0.5px solid color-mix(in srgb, var(--secondary-color) 50%, transparent);
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */
.site-container {
  display: flex;
  flex: 1 0 auto;
  overflow-x: hidden;
  flex-direction: column;
  align-items: center;
  padding: 2.5em 0;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.main-navigation {
  background: var(--primary-color);
  position: sticky;
  top: 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 5555;
}

.main-navigation,
.nav-container {
  height: 60px;
  min-height: 60px;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1.25em;
}

.site-logo-wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2em;
    height: 100%;
}
.site-logo-wrap > a {
	height: 100%;
	display: flex;
	align-items: center;
}

.site-logo {
  height: 100%;
  display: block;
  object-fit: contain;
}
.social-logo {
  height: 32px;
  display: block;
  object-fit: contain;
/*   filter: brightness(0) saturate(100%) invert(85%) sepia(22%) saturate(5366%) hue-rotate(338deg) brightness(100%) contrast(95%); */
}

.hamburger {
  width: 28px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.25em;
  position: absolute;
  top: -1.25em;
  left: -1.25em;
}

.hamburger span {
  display: block;
  background: var(--accent-color);
  width: 100%;
  height: 2px;
}

.menu-overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  padding: 1.25em;
  transition: right 0.2s;
}

.menu-overlay a {
  color: var(--secondary-color);
}

.menu-active {
  right: 0 !important;
}

.close-menu-container {
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.close-menu {
  width: 28px;
  height: 28px;
  position: relative;
}

.close-menu::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.25em;
  position: absolute;
  top: -1.25em;
  left: -1.25em;
}

.close-menu span {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: var(--secondary-color);
  width: 100%;
  height: 2.5px;
  transform: rotate(45deg);
}

.close-menu span:nth-child(2) {
  transform: rotate(135deg);
}

.nav-menu-desktop {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1em;
  margin-right: calc(-1.25em / 2);
}

.nav-menu-desktop a {
  color: var(--accent-color);
  transition: color 0.2s;
  padding: calc(1.25em / 4) calc(1.25em / 2);
}

.nav-menu-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1.6em;
  font-size: 1.6rem;
}

.nav-hidden {
  top: -60px !important;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 2.5em 0 1.25em 0;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25em;
  padding: 0 1.25em;
}

.footer-container > p {
  font-size: 1rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1.25em;
}

.footer-fir {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625em;
	font-size: 2rem;
}
.footer-fir > a {
	padding: 0 !important;
	display: flex;
	justify-content: center;
}

.footer-sec {
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: space-between;
}

.footer-contact {
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	justify-content: center;
	gap: 1.25em;
	font-size: 0.9em;
	text-align: left;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625em;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
}

.footer-logo {
/*   height: 60px; */
  display: block;
  object-fit: contain;
  width: 6.5em;
}

.footer-nav a {
  color: var(--primary-color);
  transition: color 0.2s;
  padding: calc(1.25em / 4) 0;
}

.to-top-btn {
  position: fixed;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 1;
  color: var(--accent-color);
  background: var(--primary-color) !important;
  border-radius: 0.625em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: bottom 0.2s;
  right: 1.25em;
  bottom: calc(-1.25em - 40px);
  z-index: 555;
  font-size: 1rem;
}

.to-top-btn.to-top-active {
  bottom: 1.25em;
}

/* ========================================
   SECTION COMPONENTS
   ======================================== */
.section-header {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  color: var(--text-color);
  padding: 1.25em 1.25em 2.5em 1.25em;
  gap: 1.25em;
  border-radius: 2.5em;
}

.section-title {
  text-align: center;
}

.section-description {
  color: color-mix(in srgb, var(--text-color) 75%, transparent);
  text-align: center;
}

.section-description a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Section Image Header */
.section-image-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
  min-height: calc(100svh - 60px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.section-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.section-image-content {
  position: relative;
  z-index: 222;
  max-width: 1080px;
  padding: 1.25em;
  width: 100%;
}

.book-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
  padding: 0 1.25em;
  width: 100%;
}

.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
  padding: 0 1.25em;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
  padding: 0 1.25em;
}

/* ========================================
   SKI CAMPS SECTION
   ======================================== */
.camps-list {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  width: 100%;
}

.camp-card {
  display: flex;
  flex-direction: column;
  background: none;
  gap: 1.25em;
  border-radius: 2.5em;
  padding: 1.25em 1.25em 2.5em 1.25em;
  color: var(--text-color);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  width: 100%;
  z-index: 333;
}

.camp-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1.25em;
}

.camp-info {
  display: flex;
  flex-direction: column;
  gap: calc(1.25em / 2);
  padding-right: 1.25em;
}

.camp-description {
  color: color-mix(in srgb, var(--text-color) 80%, transparent);
}
.camp-description {
  text-align: left;
  overflow: hidden;
}

/* ========================================
   CAMPS SECTION
   ======================================== */
.camps-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
  padding: 0 1.25em;
}
.camps-home-section {
  padding-top: 2.5em !important;
  margin-top: -2.5em;
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  width: 100%;
}
.book-tile {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 1.25em;
  align-items: center;
  padding: 1.25em;
  border-radius: 1.25em;
  transition: box-shadow 0.2s, transform 0.2s;
}
.book-content {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: calc(1.25em / 2) 1.25em;
}
.book-arrow {
	display: none;
}

/* ========================================
   SINGLE SKI CAMP
   ======================================== */
.single-ski-camp {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2.5em;
  padding-left: 1.25em;
  padding-right: 1.25em;
}

.camp-in-preparation {
  position: relative;
  cursor: not-allowed !important;
}
.camp-in-preparation:after {
  content: 'W przygotowaniu';
  position: absolute;
  border: 0.5px solid var(--dark);
  top: -0.5px;
  left: -0.5px;
  width: 100%;
  height: 100%;
  border-radius: 1.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: var(--light);
  font-size: 1.5rem;
  font-weight: bold;
}
.camp-in-preparation .glass-secondary {
  border: none !important;
}
.camp-in-preparation .camp-card-link {
  pointer-events: none !important;
}
.book-tile-wrapper.camp-in-preparation:after {
	border-radius: .85em !important;
}

.ski-camp-description-section,
.ski-camp-hotel-section,
.ski-camp-offer-section,
.ski-camp-signup-section {
  display: flex;
}

.ski-camp-image-section,
.ski-camp-description-section,
.ski-camp-hotel-section,
.ski-camp-offer-section,
.ski-camp-signup-section,
.trails-button-wrapper {
  width: 100%;
}

.ski-camp-hotel-section .content-wrapper {
  padding: 1.25em;
}

/* Header Section */
.ski-camp-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.ski-camp-title {
  font-size: 1.5rem;
  color: var(--text-color);
}

.ski-camp-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1.4rem;
}

.ski-camp-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.8;
  font-weight: normal;
}

/* Gallery Components */
.ski-camp-gallery,
.hotel-gallery {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.ski-camp-gallery {
  border-radius: 2.5em;
}
.hotel-gallery {
  border-radius: 1.25em;
}

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

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: flex;
}

.gallery-slide .ski-camp-main-image,
.gallery-slide .hotel-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ski-camp-main-image {
  border-radius: 2.5em;
}
.hotel-image {
  border-radius: 1.25em;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-nav:focus {
  background: rgba(0, 0, 0, 0.6);
}

.gallery-prev {
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.gallery-next {
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.gallery-dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
  justify-content: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(65, 105, 225, 0.4);
}

/* Content Sections */
.content-wrapper {
  padding: 1.25em 1.25em 2.5em 1.25em;
  border-radius: 2.5em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  width: 100%;
}

.section-title {
  font-size: 1.5rem;
  color: var(--text-color);
  text-align: center;
}

/* Description Section */
.ski-camp-description-section {
  display: flex;
}

/* Hotel Section */
.hotel-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.hotel-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.hotel-name {
  font-size: 1.3rem;
}

.hotel-description {
  line-height: 1.6;
  color: var(--text-color);
}

/* Offer Section */
.ski-camp-offer-section .content-wrapper {
  padding: 1.25em;
}
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.offer-item {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75em;
  padding: 1.25em;
  border-radius: 1.25em;
  background: color-mix(in srgb, var(--secondary-color) 20%, transparent) !important;
  border: 0.5px solid color-mix(in srgb, var(--secondary-color) 50%, transparent);
}

/* Signup Section */
.ski-camp-signup-section {
  margin-top: -2.5em;
  padding-top: 2.5em;
}
.ski-camp-signup-section .content-wrapper {
  padding: 1.25em;
}

.signup-message {
/*   margin-top: -1.25em; */
  text-align: center;
  padding: 1.25em;
  border-radius: 1.25em;
}

.signup-instructions {
  line-height: 1.6;
  color: var(--text-color);
  text-align: center;
}

.signup-button {
  display: inline-block;
  padding: 1.25em 2.5em;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 1.25em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.gdpr-button {
	font-size: 0.9rem; 
	cursor: pointer; 
	text-decoration: underline;
	transition: color 0.3s ease;
}
.gdpr-button:hover {
	color: var(--secondary-color);
}

.ski-camp-signup-form {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.ski-camp-signup-form .form-content {
  padding-top: 2.5em;
  gap: 2.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
  width: 100%;
}
.form-field {
  display: flex;
  position: relative;
  width: 100%;
}
.form-field input {
  width: 100%;
  font: inherit;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--secondary-color) 33%, transparent) !important;
  border: 0.5px solid color-mix(in srgb, var(--secondary-color) 50%, transparent);
  padding: 0.75em 1.25em;
  border-radius: 0.75em;
  font-size: 0.9rem;
  color: var(--text-color);
  outline: none;
  transition: all 0.3s ease;
}

.form-field input:focus {
  border: 1.5px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.form-field label {
  position: absolute;
  top: -1.5em;
  left: 0.9em;
  font-size: 0.9rem;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
}
.checkbox-field {
  gap: calc(1.25em / 2);
  width: 100%;
  display: flex;
  padding-left: 0.9em;
}
.checkbox-field label {
  font-size: 0.9rem;
  color: var(--text-color);
  cursor: pointer;
  user-select: none;
}
.checkbox-field input:checked {
  background: color-mix(in srgb, var(--primary-color) 40%, transparent) !important;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.checkbox-field input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--secondary-color) 20%, transparent) !important;
  border: 1.5px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(65, 105, 225, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Trails Button */
.trails-button-wrapper {
  text-align: center;
}

.open-trails {
  padding: 1.25em 2.5em;
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 1.25em;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(248, 169, 43, 0.3);
}

/* Trails Overlay */
.ski-camp-trails-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 6666;
  display: none;
  overflow: hidden;
  padding: 1.25em;
  touch-action: pinch-zoom pan-x pan-y;
  -ms-touch-action: pinch-zoom pan-x pan-y;
}

.ski-camp-trails-container * {
  touch-action: pinch-zoom pan-x pan-y;
  -ms-touch-action: pinch-zoom pan-x pan-y;
}

.ski-camp-trails-image {
  max-width: calc(100vw - 2.5em);
  max-height: calc(100svh - 2.5em);
  object-fit: contain;
  border-radius: 1.25em;
  z-index: 9999;
  touch-action: pinch-zoom pan-x pan-y;
  -ms-touch-action: pinch-zoom pan-x pan-y;
}

.trails-active {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
}

.close-trails {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6666;
  background: color-mix(in srgb, var(--primary-color) 50%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ========================================
   404 PAGE
   ======================================== */
.fof {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ========================================
   HOVER EFFECTS
   ======================================== */
@media (hover: hover) and (pointer: fine) {
  .camp-card-link:hover,
  .book-tile-link:hover {
    box-shadow: 0 12px 40px color-mix(in srgb, var(--primary-color) 18%, transparent 82%), 0 2px 8px color-mix(in srgb, var(--dark) 12%, transparent 88%);
    transform: translateY(-4px) scale(1.03);
  }
  .btn:hover {
    transform: translateY(-2px);
    cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(248, 169, 43, 0.4);
  }
  .open-trails:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.4);
  }
  .checkbox-field input:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(65, 105, 225, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
  }
  .form-field input:hover {
    border: 1.5px solid color-mix(in srgb, var(--primary-color) 50%, transparent);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.15);
    transform: translateY(-1px);
  }
  .nav-menu-desktop a:hover {
    color: var(--secondary-color);
  }
  .footer-nav a:hover {
    color: var(--secondary-color);
  }
  .gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .gallery-dot:hover {
    background: var(--accent-color);
    transform: scale(1.1);
  }
  .signup-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 169, 43, 0.4);
    cursor: pointer;
  }
}

/* ========================================
   MEDIA QUERIES
   ======================================== */

@media screen and (min-width: 480px) {
  .camp-image {
    aspect-ratio: 5/3;
  }

  .gallery-nav {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .gallery-prev {
    left: 13px;
  }
  .gallery-next {
    right: 13px;
  }
  .gallery-dots {
    bottom: 6px;
    padding: 6px 12px;
    gap: 12px;
  }
  .gallery-dot {
    width: 12px;
    height: 12px;
  }
}

@media screen and (min-width: 640px) {
	.footer-fir {
		align-items: flex-start;
	}
	
	.footer-nav {
		flex-direction: row;
		justify-content: space-between;
		gap: 2.5em;
	}
	.footer-sec {
		flex-basis: 35.75em;
		justify-content: space-between;
		gap: 1em;
	}
	
}

@media screen and (min-width: 768px) {
  .nav-menu-desktop {
    display: flex !important;
  }

  .nav-menu-mobile,
  .hamburger {
    display: none !important;
  }

  .camp-name {
    font-size: 1.6rem;
  }

  /* Single Ski Camp Tablet Styles */
  .hotel-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .hotel-image-wrapper {
    width: 40%;
    flex-shrink: 0;
    height: 100%;
  }

  .hotel-image {
    aspect-ratio: auto;
    height: 100%;
  }

  .ski-camp-main-image {
    aspect-ratio: 16/9 !important;
  }

  .hotel-info {
    flex: 1;
  }

  .offer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
  }

  .form-row,
  .form-checkboxes {
    max-width: 340px;
  }
  .booking-list {
	gap: 2.5em;	
  }
  .book-arrow {
	  display: flex;
	  position: relative;
	  width: 28px;
	  height: 28px;
}
.book-arrow span{
		position: absolute;
		top: 50%;
		background: var(--text-color);
	}
	.book-arrow span:nth-child(even) {
		width: 28px;
		height: 2.5px;
		border-radius: 2.5px;
		right: 1px;
	}
	.book-arrow span:nth-child(odd) {
		width: 14px;
		height: 2.75px;
		border-radius: 2.5px 0 0 2.5px;	
		right: 0;
	}
	.book-arrow span:nth-child(1) {
		transform: translatey(-4px) rotate(35deg);
	}
	.book-arrow span:nth-child(3) {
		transform: translatey(4px) rotate(-35deg);
	}
}

@media screen and (min-width: 1024px) {
  .section-header {
    padding: 1.25em 2.5em 2.5em 2.5em;
    max-width: 1080px;
  }

  .camps-section,
  .book-section,
  .team-section,
  .contact-section,
  .single-ski-camp {
    max-width: 1080px;
  }

  .ski-camp-trails-image {
    max-width: 1080px;
  }

  .nav-container,
  .footer-container {
    max-width: 1080px !important;
    margin: 0 auto;
  }

  .site-container {
    padding: 5em 0 !important;
  }

  .camps-home-section {
    padding-top: 5em !important;
    margin-top: -5em;
  }

  .camp-card {
    flex-direction: row;
    padding: 1.25em;
    height: 400px;
  }

  .camp-image {
    width: 100%;
  }

  .camp-info {
	width: 100%;
    padding: calc(1.25em / 2) 0;
  }

  .subtitle-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5em;
  }

  /* Single Ski Camp Desktop Styles */
  .ski-camp-header {
    gap: 0.75em;
  }

  .ski-camp-title {
    font-size: 2.5rem;
  }

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

  .form-row,
  .form-checkboxes {
    max-width: 440px;
  }
}
