:root {
    --primary-color: #fff;
    --accent-color: #b5a1c9;
    --text-color: #222;
    --nav-bg: #fff;
    --nav-link: #222;
    --nav-link-hover: #b5a1c9;
    --border-radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.07);
}

body {
    font-family:  'Cormorant Garamond', serif;
    background: var(--primary-color);
    color: var(--text-color);
    margin: 0;
    min-height: 100vh;
}

header {
    background: var(--nav-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--accent-color);
}

.nav-collapsible {
    display: flex;
    gap: 1.5rem;
}

.nav-collapsible a {
    text-decoration: none;
    color: var(--nav-link);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: background 0.2s, color 0.2s;
}

.nav-collapsible a:hover,
.nav-collapsible a.active {
    background: var(--accent-color);
    color: #fff;
}

@media (max-width: 800px) {
    .nav-toggle {
        display: block;
    }
    .nav-collapsible {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        box-shadow: var(--shadow);
        padding: 1rem 0;
    }
    .nav-collapsible.open {
        display: flex;
    }
}

.hero {
 display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 55vh; /* Adjust as needed */
  overflow: hidden;
}

.hero img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  aspect-ratio: 16 / 9; /* Or your preferred ratio */
  overflow: hidden;
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    text-align: center;
}

.main-content ul {
    list-style-position: inside;   /* or 'outside' for traditional look */
    padding-left: 1em;             /* adjust for bullet gap */
    margin-left: 3;
    text-align: left;
}
.main-content ul li {
    margin-bottom: 0.4em;  /* Adds a little space between each bullet item */
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.photo-gallery img {
    border: 2px solid #222;
    border-radius: var(--border-radius);
    max-width: 300px;
    width: 100%;
    height: auto;
    box-shadow: var(--shadow);
    background: #fff;
    transition: transform 0.2s;
}

.photo-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

footer {
    background: var(--nav-bg);
    color: var(--accent-color);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}
#countdown {
    text-align: center;
    font-size: 1.25em;
    font-weight: bold;
  }
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1rem;
    justify-items: center;
    margin: 2rem auto;
    max-width: 1100px;
    padding: 0 1rem;
}

.photo-gallery img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background: #fff;
    display: block;
}

.lightbox-close {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    text-shadow: 0 2px 8px #000;
}
.top-photo {
    object-position: top !important;
}
.centered-photo {
    object-position: center !important;
}
.bottom-photo { 
    object-position: bottom !important;
}

@media (max-width: 800px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .lightbox-content {
        max-width: 98vw;
        max-height: 60vh;
    }
    .lightbox-close {
        top: 1rem;
        right: 1.2rem;
        font-size: 2rem;
    }
}
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    z-index: 10001;
}
.lightbox-arrow-left {
    left: 10px; /* Adjust this value to move closer/farther from the image */
}
.lightbox-arrow-right {
     /* Adjust this value to move closer/farther from the image */
    right: 10px;
}

/* Make sure arrows are visible and positioned on mobile */
/* filepath: your-gallery.css */
@media (max-width: 768px) {
  .gallery-arrow {
    display: block; /* Ensure arrows are visible */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Above images */
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5); /* Optional: background for visibility */
    color: #fff;
    border-radius: 50%;
  }
  .gallery-arrow.left {
    left: 10px;
  }
  .gallery-arrow.right {
    right: 10px;
  }
  .gallery-image {
    width: 100vw; /* Full width, but arrows are on top */
    position: relative;
  }
  .gallery-container {
    position: relative;
    overflow: hidden;
  }
}