@media(max-width:500px) {
.image-wrapper {
  width: 100vw;    /* 50% of viewport width */
  height: 5vh;   /* 50% of viewport height */
}   
}

.hamburger{
    visibility: hidden;
    padding: 0;
}

@media(max-width: 768px){
.hamburger{
    visibility:visible;
}
}

@media(min-width:500px) {
.image-wrapper {
  width: 100vw;    /* 50% of viewport width */
  height: 10vh;   /* 50% of viewport height */
}   
}

@media(min-width:700px) {
.image-wrapper {
  width: 100vw;    /* 50% of viewport width */
  height: 12vh;   /* 50% of viewport height */
}   
}

@media(min-width:1000px){
.image-wrapper {
  width: 100vw;    /* 50% of viewport width */
  height: 20vh;   /* 50% of viewport height */
}
}


@media(min-width:2000px){
.image-wrapper {
  width: 100vw;    /* 50% of viewport width */
  height: 22vh;   /* 50% of viewport height */
}
}



.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    /*background-color: #fce6f5;*/
    background-color: #ffe3e3;
    /*background-image: url('/static/images/couple_silhoutte.png');
    background-size: 100px 100px;
    background-repeat: repeat;
    background-blend-mode:soft-light;*/
    color: #333;
}

p.name{
    justify-content: center;
    text-align: center;
    font-size: clamp(1.5rem, calc(3vw + 1rem), 4rem);
    /*font-family: Brush Script MT, Brush Script Std, cursive;*/
    font-family: Trattatello, fantasy;
    font-weight: 500;
    border-bottom: 2px solid grey;
    padding-bottom: 2vw;
}

p.deats{
    justify-content: center;
    text-align: center;
    font-size: clamp(.5rem, calc(.75vw + 1rem), 2.75rem);
}



/* Toolbar styles */
.toolbar {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
}

.toolbar .logo {
    font-size: 1.2em;
    font-weight: bold;
}

.toolbar nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.toolbar nav a:hover {
    text-decoration: underline;
}

/* Content sections */
.content {
    padding: 40px 20px;
    max-width: 750px;
    margin: auto;
}

.section {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section h2 {
    margin-top: 0;
}

.couple_pic_one {
    aspect-ratio: 1/1;
    height: auto;
    width: 80vw;
    max-width: 700px;
    object-fit: contain;
}

.site-footer {
    background-color: #222;
    color: #f1f1f1;
    padding: 15px 20px;
    margin-top: 40px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    text-align: center;
}

  .site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .site-footer p {
    margin: 0;
    font-size: 0.9rem;
  }

  .site-footer .footer-nav a {
    color: #f1f1f1;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9rem;
  }

  .site-footer .footer-nav a:hover {
    text-decoration: underline;
  }

.center-all {
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
  text-align: center;       /* center inline text */
  flex-direction: column;   /* stack children nicely */
  height: 100vh;            /* or any fixed height */
}

.responsive-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: .6vh;
  max-width: 100%;
}

.small-italic {
  font-size: 0.8em;
  font-style: italic;
  font-weight: bold;
  flex: 0 0 auto; /* Don't grow/shrink */
}

input[type="text"] {
  flex: 1; /* Takes remaining space */
  min-width: 90px; /* Prevents too narrow */
}

.h2-with-button {
  display: flex;
  justify-content: space-between;
  align-items: baseline; /* Aligns h2 and button baseline */
  width: 100%;
  margin: 1rem 0;
}

.h2-section {
  margin: 0; /* Remove default h2 margins */
  flex-shrink: 0; /* Prevents h2 from shrinking */
}

.button-h2-section {
  margin-left: auto; /* Pushes button to right edge */
  min-height: 4vh;
  min-width: 4vh;
  font-size: large;
}