/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

/* === Font Face Declarations === */
@font-face {
  font-family: 'Calibre';
  src: url('assets/fonts/Calibre-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Classic Script';
  src: url('assets/fonts/CLASSSMN.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Instrument Serif is now loaded via Google Fonts */

/* === Global Theme Variables === */
:root {
  --font-family: 'Calibre', sans-serif;
  --color-background: #000000;
  --color-primary: #de1808;
  --color-primary-dark: #b01406;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #f8f8f8;
  --color-text: #333333;
  --color-border: #dddddd;
  --color-table-border: #eeeeee;
  --color-success: #28a745;
  --color-danger: #dc3545;
}

/* === Base Styles === */
body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

nav {
  background-color: var(--color-black);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

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

.nav-bar li a {
  text-decoration: none;
  color: var(--color-white);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-bar li a:hover {
  color: #FFEA00;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

/* === Header Styles === */
.logo-image {
  max-width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
  animation: rotate3d 8s linear infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes rotate3d {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: rotateY(90deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(180deg) rotateX(0deg);
  }
  75% {
    transform: rotateY(270deg) rotateX(0deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(0deg);
  }
}

/* Alternative: For a more subtle 3D effect with hover interaction */
.logo-image:hover {
  animation-play-state: paused;
  transform: rotateY(0deg) rotateX(0deg) scale(1.1);
  transition: transform 0.3s ease;
}

h1 {
  font-family: 'Instrument Serif', serif;
  font-size: 140px;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.1;
  color: var(--color-white);
}

/* Special styling for RSVP page h1 */
.rsvp-header h1 {
  font-size: 140px;
  margin: 1rem 0;
  letter-spacing: 4px;
}

/* Responsive font sizes */
@media (max-width: 1200px) {
  h1 {
    font-size: 120px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 100px;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 80px;
  }
}



@media (max-width: 400px) {
  h1 {
    font-size: 50px;
  }
}

h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.1;
}

/* Make the ampersand larger */
h2 .ampersand {
  font-size: 67px;
  font-weight: 400;
  font-style: italic;
  color: #888888;
  vertical-align: middle;
  margin: 0 20px;
}

/* Responsive font sizes for h2 */
@media (max-width: 1200px) {
  h2 {
    font-size: 26px;
  }
  
  h2 .ampersand {
    font-size: 60px;
  }
}

@media (max-width: 900px) {
  h2 {
    font-size: 24px;
  }
  
  h2 .ampersand {
    font-size: 52px;
  }
}

@media (max-width: 700px) {
  h2 {
    font-size: 22px;
  }
  
  h2 .ampersand {
    font-size: 45px;
  }
}

@media (max-width: 500px) {
  h2 {
    font-size: 20px;
  }
  
  h2 .ampersand {
    font-size: 38px;
  }
}

@media (max-width: 400px) {
  h2 {
    font-size: 18px;
  }
  
  h2 .ampersand {
    font-size: 32px;
  }
}

.photostrip-image {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sticker-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.sticker {
  position: absolute;
  width: 230px;
  height: 64px;
  background-color: #FFEA00;
  border-radius: 50px;
  border: 3px solid black;
  outline: 2px solid white;
  outline-offset: -2px;
  top: 60px;
  left: 73%;
  transform: rotate(7.5deg);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticker-text {
  color: #FF437F;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

@media (min-width: 1200px) {
  .sticker {
    top: 54px;
  }
  
  .sticker-text {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  .sticker {
    top: 49px;
    width: 168px;
    height: 49px;
  }
  
  .sticker-text {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 80px;
  }
  
  .sticker {
    top: 30px;
    height: 35px;
    width: 136px;
    left: 57%;
  }
  
  .sticker-text {
    font-size: 20px;
  }
}

.date {
  font-family: 'Instrument Serif', serif;
  font-size: 27px;
  font-weight: 400;
  text-align: center;
  margin: 1rem 0;
  color: var(--color-white);
}

.location {
  font-family: var(--font-family);
  font-size: 14px;
  text-align: center;
  margin: 0.5rem 0;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
}

.description {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  margin: 2rem auto;
  max-width: 800px;
  color: var(--color-white);
}

/* Responsive font sizes for description */
@media (max-width: 1200px) {
  .description {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .description {
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  .description {
    font-size: 18px;
    margin: 1.5rem auto;
  }
}

@media (max-width: 500px) {
  .description {
    font-size: 16px;
    margin: 1rem auto;
  }
}

@media (max-width: 400px) {
  .description {
    font-size: 14px;
  }
}

/* === Hotel List Section === */
.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.hotel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
}

.hotel-img {
  width: 480px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.hotel-info {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white);
}

.hotel h2 {
  font-family: 'Instrument Serif', serif;
  color: var(--color-white);
  margin-bottom: 0.1rem;
  font-size: 40px;
  font-style: normal;
}

.hotel-address {
  font-family: var(--font-family);
  color: #888888;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}

.hotel-info p {
  font-family: var(--font-family);
  color: #888888;
  margin-bottom: 0.75rem;
}

.hotel-booking-deadline {
  font-family: var(--font-family);
  color: #4BB6FF !important;
  margin-bottom: 1rem;
  font-style: normal;
}

.hotel-cta {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  transition: all 0.2s;
  align-self: center;
}

.hotel-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* === Schedule Table === */
.schedule-table {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  border-collapse: collapse;
  background: var(--color-white);
  color: var(--color-text);
  overflow: hidden;
}

.schedule-table th,
.schedule-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-table-border);
  text-align: left;
}

.schedule-table th {
  background: var(--color-primary);
  color: var(--color-white);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

/* === Event List Section === */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 2rem auto;
}

.event {
  color: var(--color-white);
  padding: 2rem;
  text-align: center;
}

.event h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.hotel-description {
  max-width: 800px;
  font-family: 'Instrument Serif', serif;
  text-align: center;
  margin: 0 auto 2rem auto;
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.7);
}

/* === Confirmation Screen Styles === */
#confirmationScreen {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
}

.thank-you-message {
  color: var(--color-white);
  text-align: center;
}

.thank-you-message h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-align: center;
}

.thank-you-message p {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin: 0;
  opacity: 0.8;
}

/* Responsive styles for thank you message */
@media (max-width: 700px) {
  .thank-you-message h2 {
    font-size: 40px;
  }
  
  .thank-you-message p {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .thank-you-message h2 {
    font-size: 32px;
  }
  
  .thank-you-message p {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .thank-you-message h2 {
    font-size: 28px;
  }
  
  .thank-you-message p {
    font-size: 16px;
  }
}

.confirmation-summary {
  margin-bottom: 2rem;
}

.confirmation-summary h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.confirmation-summary p {
  margin: 0.5rem 0;
  padding: 0.5rem;
  background: var(--color-gray);
}

.attending {
  color: var(--color-success);
  font-weight: bold;
}

.not-attending {
  color: var(--color-danger);
  font-weight: bold;
}

.confirmation-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.edit-btn, .confirm-btn, .reset-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.edit-btn {
  background: var(--color-gray);
  color: var(--color-text);
}

.edit-btn:hover {
  background: #e0e0e0;
}

.confirm-btn {
  background: var(--color-success);
  color: var(--color-white);
}

.confirm-btn:hover {
  background: #218838;
}

.reset-btn {
  background: var(--color-primary);
  color: var(--color-white);
}

.reset-btn:hover {
  background: var(--color-primary-dark);
}

#successMessage {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--color-white);
  color: var(--color-text);
  text-align: center;
}

#successMessage h2 {
  color: var(--color-success);
  margin-bottom: 1rem;
}

#successMessage p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* === Form Styles === */
#rsvpForm {
  flex: 1;
  padding: 2rem;
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
}

.rsvp-status {
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 40px;
  text-transform: none;
  letter-spacing: 0.5px;
  width: 720px;
  max-width: 100%;
}

.status-badge.confirmed {
  background: transparent;
  color: #4BB6FF;
  font-style: italic;
}

.status-badge.pending {
  background: transparent;
  color: #ffd700;
  font-style: italic;
}

#rsvpForm label {
  display: block;
  margin: 1rem 0 0.5rem 0;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
}

#guestOptions {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

#plusOneContainer {
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

#phoneContainer {
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#rsvpForm input, #rsvpForm select {
  width: 100%;
  height: 50px;
  max-width: 400px;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  font-size: 16px;
  box-sizing: border-box;
  text-align: center;
}

#rsvpForm button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  transition: all 0.2s;
  align-self: center;
  cursor: pointer;
}

#rsvpForm button:hover {
  background: var(--color-primary-dark);
}

/* RSVP Header */
.rsvp-header {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* === Registry Styles === */
.registry-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
  text-align: center;
}

.registry-container p {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0 0 2rem 0;
  text-align: left;
}

.registry-link {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  transition: all 0.2s;
  margin-top: 1rem;
}

.registry-link:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Responsive registry styles */
@media (max-width: 700px) {
  .registry-container {
    padding: 0 1rem;
  }
  
  .registry-container p {
    font-size: 14px;
  }
  
  .registry-link {
    font-size: 20px;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 500px) {
  .registry-container p {
    font-size: 13px;
  }
  
  .registry-link {
    font-size: 18px;
    padding: 0.7rem 1.2rem;
  }
}

.chinese-badge {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  background: #ffd700;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #000;
  transform: translateX(50%) rotate(5deg);
  z-index: 10;
}

.rsvp-info {
  margin-top: 1rem;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.rsvp-info p {
  margin: 0.5rem 0;
  color: var(--color-white);
  font-family: 'Instrument Serif', serif;
}

/* Custom styling for RSVP page sticker - New scalable approach */
.rsvp-header {
  position: relative;
}

/* Make the h1 a positioning context for the sticker */
.rsvp-header h1 {
  position: relative;
}

.rsvp-header .sticker {
  /* Position relative to the h1 text - perfect positioning on large screens */
  position: absolute;
  top: 10%;
  left: 53%;
  transform: rotate(15deg);
  
  /* Size relative to the h1 font size */
  width: calc(1em * 1.3);
  height: calc(1em * 0.4);
  min-width: 120px;
  max-width: 200px;
  min-height: 35px;
  max-height: 60px;
}

.rsvp-header .sticker-text {
  /* Consistent with index page sticker fonts */
  font-size: 18px;
}

/* Responsive adjustments - consistent with index page stickers */
@media (min-width: 1200px) {
  .rsvp-header .sticker {
    top: 10%;
    left: 53%;
    transform: rotate(15deg);
    width: calc(5em * 2.2);
    min-height: 47px;
  }
  
  .rsvp-header .sticker-text {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  .rsvp-header .sticker {
    top: 12%;
    left: 55%;
    transform: rotate(12deg);
  }
  
  .rsvp-header .sticker-text {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .rsvp-header .sticker {
    top: 14%;
    left: 57%;
    transform: rotate(10deg);
  }
  
  .rsvp-header .sticker-text {
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  .rsvp-header .sticker {
    top: 16%;
    left: 59%;
    transform: rotate(8deg);
  }
  
  .rsvp-header .sticker-text {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .rsvp-header .sticker {
    top: 18%;
    left: 61%;
    transform: rotate(5deg);
  }
  
  .rsvp-header .sticker-text {
    font-size: 18px;
  }
}

/* RSVP Layout Container */
.rsvp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#lookup {
  flex: 1;
  padding: 2rem;
  color: var(--color-white);
  text-align: center;
}

.lookup-prompt {
  font-size: 18px;
  margin-bottom: 2rem;
  color: var(--color-white);
}

#lookup input {
  width: 100%;
  max-width: 720px;
  padding: 1rem;
  border: 2px solid var(--color-white);
  background: var(--color-white);
  color: #666;
  font-size: 18px;
  margin-bottom: 2rem;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
}

#lookup input::placeholder {
  color: #999;
  font-size: 32px;
  text-align: center;
  font-weight: 300;
}

/* Specific styling for guestName placeholder */
#guestName::placeholder {
  color: #4BB6FF;
  font-size: 28px;
  text-align: center;
  font-weight: 400;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  opacity: 0.8;
}

#lookup button {
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-white);
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 200px;
}

#lookup button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

#lookupResult {
  margin-top: 1rem;
  padding: 0.75rem;
  font-weight: bold;
}

/* === Responsive Styles === */
/* Desktop layout - side by side */
@media (min-width: 768px) {
  .rsvp-container {
  }
  
  #lookup {
    max-width: 400px;
  }
  

/* RSVP Page Responsive Styles */
@media (max-width: 700px) {
  .rsvp-header h1 {
    font-size: 80px;
    letter-spacing: 2px;
  }
  
  .chinese-badge {
    font-size: 12px;
    padding: 6px 12px;
    top: -15px;
  }
  
  .rsvp-info {
    font-size: 14px;
  }
  
  #rsvpForm button {
    margin-top: 2rem;
  }
  
  .lookup-prompt {
    font-size: 16px;
  }
  
  #lookup input {
    max-width: 100%;
    font-size: 16px;
    padding: 0.8rem;
  }
  
  #lookup button {
    font-size: 14px;
    padding: 0.8rem 1.5rem;
    min-width: 180px;
  }
}

@media (max-width: 500px) {
  .rsvp-header h1 {
    font-size: 60px;
    letter-spacing: 1px;
  }
  
  .chinese-badge {
    font-size: 10px;
    padding: 4px 8px;
    top: -10px;
  }
  
  .rsvp-info {
    font-size: 12px;
  }
  
  .lookup-prompt {
    font-size: 14px;
  }
  
  #lookup input {
    max-width: 100%;
    font-size: 14px;
    padding: 0.7rem;
  }
  
  #lookup button {
    font-size: 12px;
    padding: 0.7rem 1.2rem;
    min-width: 160px;
  }
}
}

/* === Event Item Styles === */
.event-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 178px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.event-item + .event-item {
  margin-top: 70px;
}

.event-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.event-label {
  font-family: 'Calibre', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4BB6FF;
  margin-bottom: 0.5rem;
}

.event-time {
  font-family: 'Instrument Serif', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.event-name {
  font-family: 'Instrument Serif', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.event-name a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.event-name a:hover {
  color: var(--color-primary);
}

.event-address {
  font-family: 'Calibre', sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  opacity: 0.8;
}

/* Responsive styles for event items */
@media (max-width: 700px) {
  .event-item {
    margin-top: 100px;
    padding: 0 1rem;
  }
  
  .event-item + .event-item {
    margin-top: 80px;
  }
  
  .event-image {
    max-width: 300px;
  }
  
  .event-time,
  .event-name {
    font-size: 32px;
  }
  
  .event-label {
    font-size: 12px;
  }
  
  .event-address {
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .event-item {
    margin-top: 80px;
  }
  
  .event-item + .event-item {
    margin-top: 60px;
  }
  
  .event-image {
    max-width: 250px;
  }
  
  .event-time,
  .event-name {
    font-size: 28px;
  }
  
  .event-label {
    font-size: 11px;
  }
  
  .event-address {
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  .event-item {
    margin-top: 60px;
  }
  
  .event-item + .event-item {
    margin-top: 50px;
  }
  
  .event-image {
    max-width: 200px;
  }
  
  .event-time,
  .event-name {
    font-size: 24px;
  }
  
  .event-label {
    font-size: 10px;
  }
  
  .event-address {
    font-size: 9px;
  }
}

/* === Event Image Container and Sticker === */
.event-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}

.event-sticker {
  position: absolute;
  width: 85px;
  height: 49px;
  background-color: white;
  border-radius: 50px;
  border: 3px solid black;
  outline: 1px solid white;
  outline-offset: -1px;
  top: -23px;
  left: -31px;
  transform: rotate(-15deg);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.afterparty-event .event-sticker {
  width: 136px;
}

.event-sticker-text {
  color: #FF437F;
  font-weight: bold;
  font-size: 30px;
}

/* Responsive styles for event sticker */
@media (max-width: 700px) {
  .event-sticker {
    width: 70px;
    height: 40px;
  }
  
  .afterparty-event .event-sticker {
    width: 110px;
  }
  
  .event-sticker-text {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .event-sticker {
    width: 60px;
    height: 35px;
  }
  
  .afterparty-event .event-sticker {
    width: 95px;
  }
  
  .event-sticker-text {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .event-sticker {
    width: 50px;
    height: 30px;
  }
  
  .afterparty-event .event-sticker {
    width: 80px;
  }
  
  .event-sticker-text {
    font-size: 16px;
  }
}

/* === Footer Divider === */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #666666;
  margin: 80px auto 40px auto;
  max-width: 800px;
}

@media (max-width: 700px) {
  .footer-divider {
    margin: 60px auto 30px auto;
  }
}

@media (max-width: 500px) {
  .footer-divider {
    margin: 50px auto 25px auto;
  }
}

@media (max-width: 400px) {
  .footer-divider {
    margin: 40px auto 20px auto;
  }
}

/* === FAQ Styles === */
.faq-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.faq-item {
  margin-bottom: 0;
  padding: 2rem 0;
  border-bottom: 1px solid #666666;
}

.faq-item:first-child {
  border-top: 1px solid #666666;
}

.faq-item h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0 0 1rem 0;
  text-align: left;
}

.faq-item p {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0 0 1rem 0;
  text-align: left;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-item ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-item li {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

/* Responsive FAQ styles */
@media (max-width: 700px) {
  .faq-container {
    padding: 0 1rem;
  }
  
  .faq-item {
    padding: 1.5rem 0;
  }
  
  .faq-item h3 {
    font-size: 20px;
  }
  
  .faq-item p,
  .faq-item li {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .faq-item {
    padding: 1rem 0;
  }
  
  .faq-item h3 {
    font-size: 18px;
  }
  
  .faq-item p,
  .faq-item li {
    font-size: 13px;
  }
}

/* === Footer Styles === */
footer {
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-logo {
  width: 40px;
  height: auto;
  opacity: 0.9;
  filter: hue-rotate(320deg) saturate(1.5) brightness(1.1);
}

.footer-text {
  font-family: 'Calibre', sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  opacity: 0.6;
  margin: 0;
}

/* Responsive footer styles */
@media (max-width: 700px) {
  footer {
    padding: 30px 0;
  }
  
  .footer-logo {
    width: 35px;
  }
  
  .footer-text {
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  footer {
    padding: 25px 0;
  }
  
  .footer-logo {
    width: 30px;
  }
  
  .footer-text {
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  footer {
    padding: 20px 0;
  }
  
  .footer-logo {
    width: 25px;
  }
  
  .footer-text {
    font-size: 9px;
  }
}

@media (max-width: 700px) {
  .hotel {
    max-width: 100%;
  }

  .hotel-img {
    width: 100%;
    height: 280px;
  }

  .hotel-info {
    padding: 1.5rem;
  }

  .hotel-cta {
    font-size: 28px;
  }

  .hotel-description {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .hotel-img {
    width: 100%;
    height: 240px;
  }

  .hotel-cta {
    font-size: 24px;
  }

  .hotel-description {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .hotel-img {
    width: 100%;
    height: 200px;
  }

  .hotel-cta {
    font-size: 20px;
  }

  .hotel-description {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hamburger-menu {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .nav-container {
    justify-content: flex-end;
  }

  .nav-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-black);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-bar.active {
    display: flex;
  }

  .nav-bar li {
    width: 100%;
    text-align: center;
  }

  .nav-bar li a {
    display: block;
    padding: 0.75rem 1rem;
    transition: background-color 0.2s ease;
  }

  .nav-bar li a:hover {
    /* Hover effect removed for mobile */
  }

  nav {
    padding: 1rem;
  }

  main {
    padding: 1rem;
  }
}
