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


/* Sonoran Font Import */
@font-face {
  font-family: 'Sonoran';
  src: url('/Sonoran.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/* 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 {
 


  
  --color-accent: #1a0f0f;
  --color-text: #250606;
  --color-body-text: #1f1818;
  --color-heading: #bf172a;
  --color-title: #a83939;
  --color-background: #fffef9;
  --color-hover-bg: #F5E6D3;



--font-sonoran: 'Sonoran', Georgia, serif;
  --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;
  margin: 0;
  color: var(--color-body-text);
  background-color: var(--color-background);
  min-height: 100vh;
}

/* Page wrapper for constrained content */
.page-wrapper {
  max-width: 38em;
  margin: auto;
  padding: 1.6rem;
  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 */

.logo {
  margin-bottom: 30px;
  text-align: center;
font-family: Costa;
font-size: 56px;
font-style: normal;
font-weight: 400;
display:inline;
margin-left: auto;
margin-right: auto;
color:#250606
}

#meghna {
line-height: .5;
letter-spacing: -1px;
display: block;
}

#shortened {
line-height: normal;
letter-spacing: -4px;
font-weight:400;
}

#kshitij {
  display: block;
}


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


h2 {
  font-family: var(--font-sonoran);
  font-weight:10;
  font-size: 2.7rem;
    color: var(--color-text);

}

h1 {
  font-size: 5.4rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: 400;
  color: var(--color-title);
}



p {
  margin-top: 0;
}

/* Links */
a {

  color: var(--color-heading);
}
a:visited {
  color: var(--color-text);
}
a:hover {
  color: var(--color-accent);
  border-bottom: 0.2rem solid var(--color-accent);
}

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

.hamburger-menu:hover {
  background-color: var(--color-hover-bg);
}

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

.hamburger-menu svg.hamburger-icon path {
  fill: var(--color-text);
}

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

/* Side Panel */
.side-panel {
  position: fixed;
  top: 0;
  right: -28.2rem;
  width: 28rem;
  height: 100%;
  background-color: var(--color-background);
  box-shadow: -0.2rem 0 0.5rem rgba(128, 0, 32, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 2rem;
  padding-top: 6rem;
  overflow-y: auto;
  box-sizing: border-box;
  border-left: 0.3rem solid var(--color-accent);
}

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

.side-panel .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 4.8rem;
  height: 4.8rem;
  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(--color-hover-bg);
}

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

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

#side-panel-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.6rem;
  border-bottom: 0.1rem solid var(--color-hover-bg);
}

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

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

.day-container {
  margin-bottom: 7rem;
}

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

.day-header {
  font-size: 2.4rem;
  font-family: var(--font-costa);
  color: var(--color-heading);
  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: 3rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-weight: 600;
}

.event-timing {
  font-size: 1.6rem;
  margin-bottom: 0;
  font-weight: 500;
}

.event-description {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  /* text-align: left; */
  
}


.event-timing, .dress-code-description {
 font-size: 1.6rem;
  color: var(--color-accent);
  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(--color-heading);
  font-weight: 600;
}

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

.color-swatch {
  width: 5rem;
  height: 5rem;
  border-radius: 0.8rem;
  border: 0.2rem solid var(--color-text);
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

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

/* Marigolds Banner */
.marigolds-banner {
  width: 100%;
  height: 18rem;
  background-image: url('/marigolds3.png');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100%;
  border-top: 3px solid #bf172a
}

/* Mobile: smaller banner */
@media (max-width: 768px) {
  .marigolds-banner {
    height: 10rem;
  }
  .logo{
    font-size: 24px;
  }
  .event-name {
  font-size: 2rem;
}

h2 {
  font-size: 2.4rem
}
.event-description {
  font-size: 1.6rem
}
.event-timing, .dress-code-description {
  font-size:1.3rem;
}

}


/* Palm Tree Decoration */
.palmtree-decoration {
  position: fixed;
  width: 20rem;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Desktop: position in right rail */
@media (min-width: 769px) {
  .palmtree-decoration {
    right: 2rem;
    bottom: 2rem;
  }
}

/* Mobile: position behind text at bottom */
@media (max-width: 768px) {
  .palmtree-decoration {
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 15rem;
    opacity: 0.5;
  }

  h1 {
    font-size: 4.5rem;
  }

  .page-wrapper {
    max-width: 60%;
  }

}