* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
  background: #f5f5f5;
}

.container {
  display: flex;
  height: 100vh;
}

/* LEFT SIDE */
.left {
  flex: 1;
  background: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 400px;
}

.content h1 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #333;
  line-height: 1.2;
}

button {
  margin-top: 30px;
  padding: 12px 25px;
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

button:hover {
  background: #333;
  color: #fff;
}

/* RIGHT SIDE */
.right {
  flex: 1;
}

.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .right {
    height: 50vh;
  }

  .left {
    height: 50vh;
    text-align: center;
  }

  .content h1 {
    font-size: 30px;
  }
}

.flower {
  width: 40px;
  height: 40px;
  position: absolute;
  background: url(https://media-public.canva.com/xsfIo/MAFmiExsfIo/1/t.png);
  background-size: cover;
}

.flower2 {
  width: 50px;
  height: 50px;
  position: absolute;
  background: url(https://media-public.canva.com/no8us/MAFmiKno8us/1/s.png);
  background-size: cover;
}

#flower-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* allows clicking buttons */
  overflow: hidden;
  z-index: 999;
}

.left .content {
    max-width: 420px;
    padding: 20px;
}


/* Button polish */
button {
    margin-top: 30px;
    padding: 10px 22px;
    border: 1px solid #333;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
}

/* Base paragraph reset */
.content p {
    margin: 0;
    color: #666;
}

/* Subtitle */
.subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 14px;
}

/* Names (main focus) */
h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin: 10px 0;
    color: #333;
}

/* Tagline */
.tagline {
    font-size: 18px;
    margin: 6px 0;
    opacity: 0.85;
}

/* Details section */
.details {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.12);
}

/* Venue (important) */
.venue {
    margin-bottom: 8px;  /* increase spacing below venue */
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* Address + Date */
.address,
.datetime {
    font-size: 17px;
}

.address {

    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px; /* adds breathing space before date */
}

/* Add spacing only before date */
.datetime {
        padding-top: 15px;

    margin-top: 10px;
    display: block;
}


/* MODAL BACKDROP */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* MODAL BOX */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  height: 85vh;
  background: peachpuff;
  border-radius: 12px;
  overflow: hidden;
  color: peachpuff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: black;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
}

/* make iframe fill modal */
.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}