/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('wood3.jpg');
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    background-color: #F8F8F8;
    color: #F2D2BD;
  	font-size: 1.5rem;
}

body h1,
body h2,
body h3 {
    font-size: 4.5rem;
    font-family: 'Brush Script MT', cursive;
    margin-bottom: 10px;
  	line-height: 1.8;
}


/* Navigation */
 nav {
      background: #333;
      padding: 1rem;
      position: relative;
    }

    .menu-toggle {
      display: flex;
      flex-direction: column;
      width: 30px;
      cursor: pointer;
    }

    .menu-toggle .bar {
      height: 3px;
      width: 100%;
      background-color: #F2D2BD;
      margin: 4px 0;
      transition: all 0.3s ease;
    }

    .nav-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
      display: none;
      flex-direction: column;
      gap: 1rem;
    }

    .nav-list li a {
      text-decoration: none;
      color: #F2D2BD;
      font-size: 1.1rem;
    }

    .nav-list.active {
      display: flex;
    }


    footer {
      text-align: center;
      padding: 1rem;
      background: #333;
      font-size: 0.9rem;
    }

    @media(min-width: 767px) {
      .menu-toggle {
        display: none;
      }

      .nav-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        margin-top: 0;
      }
    }

button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}


/* Gallery */
.photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.photos img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Countdown Timer */
#countdown {
    text-align: center;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    font-weight: bold;
}

#timer div {
    color: #F2D2BD;
}

#timer span {
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}