/* India Wedding Minimal Theme - Gold and Maroon */

/* Costa Font Import */
@font-face {
  font-family: 'Costa';
  src: url('/Costa-Font.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* PPObjectSans Font Import */
@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-ThinSlanted.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-Slanted.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-BoldSlanted.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'PPObjectSans';
  src: url('/PPObjectSans-HeavySlanted.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

:root {
  --india-gold: #664e00;
  --india-maroon: #800020;
  --india-deep-red: #390101;
  --india-cream: #FFF8E7;
  --india-light-gold: #F5E6D3;

  --font-costa: 'Costa', Merriweather, serif;
}

/* Body */
html {
  font-size: 62.5%;
  font-family: 'PPObjectSans', sans-serif;
}

body {
  font-size: 1.8rem;
  line-height: 1.618;
  max-width: 38em;
  margin: auto;
  color: var(--india-maroon);
  background-color: var(--india-cream);
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content centering */
.india-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: var(--font-costa);
  /* font-family: Merriweather, serif; */
  font-weight: 600;
  color: var(--india-maroon);
}

h1 {
  font-size: 3em;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: 400;
  color: var(--india-deep-red);
  font-family: var(--font-costa);
}



p {
  margin-top: 0px;
  margin-bottom: 2.5rem;
}

/* Links */
a {
  
  color: var(--india-deep-red);
}
a:visited {
  color: var(--india-maroon);
}
a:hover {
  color: var(--india-gold);
  border-bottom: 2px solid var(--india-gold);
}

/* Hamburger Menu */
.hamburger-menu {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}

.hamburger-menu:hover {
  background-color: var(--india-light-gold);
}

.hamburger-menu svg.hamburger-icon {
  width: 100%;
  height: 100%;
}

.hamburger-menu svg.hamburger-icon path {
  fill: var(--india-maroon);
}

.hamburger-menu.hamburger-hidden {
  display: none;
}

/* Side Panel */
.side-panel {
  position: fixed;
  top: 0;
  right: -282px;
  width: 280px;
  height: 100%;
  background-color: var(--india-cream);
  box-shadow: -2px 0 5px rgba(128, 0, 32, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px;
  padding-top: 60px;
  overflow-y: auto;
  box-sizing: border-box;
  border-left: 3px solid var(--india-gold);
}

.side-panel.open {
  right: 0;
}

.side-panel .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}

.side-panel .close-btn:hover {
  background-color: var(--india-light-gold);
}

.side-panel .close-btn svg.close-icon {
  width: 75%;
  height: 75%;
}

.side-panel .close-btn svg.close-icon path {
  stroke: var(--india-maroon);
}

#side-panel-nav a {
  display: block;
  padding: 10px 0;
  color: var(--india-maroon);
  text-decoration: none;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--india-light-gold);
}

#side-panel-nav a:hover {
  color: var(--india-gold);
}

/* Event Details Section */
.info-section {
  margin-bottom: 4rem;
}

.day-container {
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--india-gold);
}

.day-container:last-child {
  border-bottom: none;
}

.day-header {
  font-size: 2.4rem;
  font-family: var(--font-costa);
  color: var(--india-deep-red);
  margin-bottom: 2rem;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}



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

.event-name {
  font-size: 2rem;
  color: var(--india-maroon);
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-weight: 600;
}

.event-timing {
  font-size: 1.6rem;
  color: var(--india-gold);
  margin-bottom: 0;
  font-weight: 500;
}

.event-description {
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--india-maroon);
  margin-bottom: 0;
  text-align: left;
}


.event-timing, .dress-code-description {
 font-size: 1.6rem;
  color: var(--india-deep-red);
  font-weight: 500;
  text-align: center; 

}

/* Dress Code Highlights */
.dress-code-highlights {
  text-align: left;
  line-height: 1.8;
}

.dress-code-highlights strong {
  color: var(--india-deep-red);
  font-weight: 600;
}

/* Color Palette */
.color-palette {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.color-swatch {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 2px solid var(--india-maroon);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}