@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');

body {
    margin: 0;
    font-family:'Italiana', serif;
    background-color: #fdfcfb;
    color: #000000;
    text-align: center;
    font-size: 26px;
    font-weight: 300;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #748976ea;
    flex-direction: column;
    padding: 20px;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width:100%;
    height:80px;
    padding: 0 20px;
}

.site-logo {
    position: absolute;
    right: 20px;
    width:40px;
    height:40px;
}

.site-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    color: #000000;
    text-align: center;
}

.nav {
    display: flex;
   justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
    padding:0;
}

.nav a {
    text-decoration: underline;
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #DBC97F;
}

.flower-section {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.flower-section h2 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.flower-section img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.flower-section .price {
    font-weight:900;
    color: #000000;
    margin-bottom: 1rem;
    font-size:x-large;
}
.flower-section p {
    font-weight:bolder;
    font-size: 1rem;
    line-height: 1.5;
    color:#000000
}
.home-link {
  text-decoration: none;
  color: inherit;
}

.home-link:hover .site-title {
  text-decoration: none;
  cursor: pointer;
}
.site-title-link {
    text-decoration: none;
    color: inherit;
}

.nav {
  transition: max-height 0.3s ease;
}

.menu-icon {
  position:absolute;
  left: 20px;
  width: 40px;
  cursor: pointer;
  display:block;
}

@media (min-width: 1024px) {
  .menu-icon {
    display: none;
  }
  .header-top {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 15px;               
    width: 100%;
    height: auto;
    padding: 10px 0;
    position: relative;
  }
  .site-title {
    position: static;       
    transform: none;
    font-size: 2rem;        
    margin: 0;
    font-weight: 1200;
    text-align: center;
  }

  .site-logo {
    width: 40px;
    height: 40px;
    position:static;
  }

  .nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    padding: 1rem 0;
    border-top: none;
  }

  .nav a {
    text-decoration: underline;
    color: #000000;
    font-weight: 700;
    font-size: 1.3rem;
    transition: color 0.3s ease;
  }

  .nav a:hover {
    color: #DBC97F;
  }
  .site-title {
    font-weight: bold;
  }
}
