/* === SHARED CSS FOR MARATHON PHOTO BOOTH === */

/* === GLOBAL STYLES === */
* {
  font-family: 'Outfit', 'Segoe UI', 'Arial', sans-serif;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
}



/* === CONTENT WRAPPER === */
.content-wrapper {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.6rem;
}

/* === EVENT LOGO === */
.event-logo {
  position: fixed !important;
  top: 10px !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw !important;
  height: auto !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important; /* Space between logos */
}

.event-logo img {
  width: auto !important;
  max-width: 200px !important;
  height: 100px !important;
  max-height: 100px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: brightness(1.2) contrast(1.3) saturate(1.4) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)) !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: max-height 0.3s ease !important;
  align-self: center !important;
}

/* Ensure both logos have the same height */
.event-logo img:first-child,
.event-logo img:last-child {
  height: 100px !important;
  max-height: 100px !important;
}


/* === LOGO === */
.logo {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* === MATERIAL SYMBOLS === */
.material-symbols-outlined {
  font-size: 1.5rem;
  vertical-align: -2px;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 428px) {
  .event-logo {
    gap: 15px !important; /* Smaller gap on mobile */
    align-items: center !important;
  }
  
  .event-logo img {
    max-width: 150px !important;
    height: 80px !important;
    max-height: 80px !important;
    object-position: center !important;
    filter: brightness(1.2) contrast(1.3) saturate(1.4) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) !important;
    align-self: center !important;
  }
  
  .event-logo img:first-child,
  .event-logo img:last-child {
    height: 80px !important;
    max-height: 80px !important;
  }
  
  .logo {
    bottom: 15px;
  }
  
  .logo img {
    width: 100px;
    max-height: 50px;
  }
}

@media (max-width: 375px) {
  .event-logo {
    gap: 10px !important; /* Even smaller gap on small mobile */
  }
  
  .event-logo img {
    max-width: 120px !important;
    height: 60px !important;
    max-height: 60px !important;
    object-position: center !important;
    filter: brightness(1.2) contrast(1.3) saturate(1.4) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3)) !important;
  }
  
  .event-logo img:first-child,
  .event-logo img:last-child {
    height: 60px !important;
    max-height: 60px !important;
  }
  
  .logo {
    bottom: 12px;
  }
  
  .logo img {
    width: 90px;
    max-height: 45px;
  }
}

/* === SAFARI FIXES === */
@supports (-webkit-touch-callout: none) {
  .content-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* === CHROME OPTIMIZATIONS === */
@supports (-webkit-appearance: none) {
  input {
    -webkit-appearance: none;
    border-radius: 12px;
  }
} 