@font-face {
  font-family: "Lato Light Local";
  src: url("fonts/Lato-Light.woff") format("woff"),
       url("fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  border-top: 22px solid #819074;
  background: #8e9b82;
  color: #fff;
  font-family: "Lato Light Local", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.skeleton {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: #8e9b82;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0 12px;
}

.logo {
  flex: 0 1 330px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  background: #304943;
  cursor: pointer;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 0 6px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a {
  padding: 10px 13px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #304943;
}

.hero-slider,
.hero,
.image-band {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero,
.image-band {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home {
  background-image: url("images/2.jpeg");
}

.hero-gallery {
  background-image: url("images/1.jpeg");
}

.hero-about {
  background-image: url("images/4.jpeg");
}

.hero-reputation {
  min-height: 730px;
  background-image: url("images/6.jpg");
}

.hero-contact {
  position: relative;
  min-height: 470px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 450ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(48, 73, 67, 0.78);
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.slider-arrow:hover {
  background: rgba(129, 144, 116, 0.92);
}

.slider-prev {
  left: 26px;
}

.slider-next {
  right: 26px;
}

.hero-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.15;
  text-align: center;
  text-shadow: 2px 2px 2px #8e9b82;
}

.content-section {
  padding: 72px 0 80px;
}

.content-section a{text-decoration:underline;}
.content-section a:hover{text-decoration:none;;}

.text-block {
  max-width: 980px;
}

h1 {
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(26px, 4vw, 30px);
  font-weight: 400;
  letter-spacing: 1.3px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

p {
  margin: 0 0 18px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 54px;
}

.buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 34px;
  border: 1px solid #819074;
  border-radius: 3px;
  background: #304943;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  text-decoration:none;
}

.buttons a:hover {
  background: #819074;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 10px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #819074;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 160ms ease, opacity 160ms ease;
}

.gallery-grid a:hover img {
  opacity: 0.92;
  transform: scale(1.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 24px 0 56px;
}

.not-found {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
  text-align: center;
}

.error-code {
  margin: 0;
  color: #304943;
  font-size: clamp(80px, 16vw, 160px);
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.35);
}

.site-footer {
  border-top: 1px solid #367408;
  background: #304943;
  color: #fff;
  font-size: 13px;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: square inside;
}

.footer-grid li {
  border-bottom: 1px dotted #fff;
  line-height: 2.4;
}

.site-footer a:hover {
  color: #cdd7c4;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 76px 84px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  border: 0;
  background: rgba(48, 73, 67, 0.86);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 34px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(129, 144, 116, 0.95);
}

.copyright {
  width: min(1100px, calc(100% - 32px));
  margin: 42px auto 0;
  text-align: center;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
  }

  .main-nav {
    justify-content: center;
  }

  .hero,
  .image-band {
    min-height: 380px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    border-top-width: 14px;
  }

  .logo {
    flex-basis: auto;
    width: min(310px, 100%);
  }

  .main-nav {
    width: 100%;
    gap: 0;
  }

  .main-nav a {
    flex: 1 1 50%;
    text-align: center;
  }

  .hero,
  .image-band {
    min-height: 270px;
  }

  .content-section {
    padding: 52px 0 60px;
  }

  .gallery-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .buttons {
    margin-top: 38px;
  }

  .buttons a {
    width: min(100%, 330px);
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    width: min(260px, calc(100% - 64px));
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    flex: none;
    width: 100%;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    text-align: center;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: #304943;
  }
}

@media (max-width: 900px) {
  .hero-slider {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    min-height: 270px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }

  .lightbox {
    padding: 68px 54px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}





.page-header{
    text-align:center;
    margin-bottom:60px;
}



.florist-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.florist-card{
    background:#8e9b82;
    border:0px solid #e5e5e5;
    border-radius:12px;
    padding:30px;
    transition:.3s ease;
}

.florist-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.florist-card h2{

    font-size:28px;
    margin-bottom:15px;
    color:#fff;
}

.address{
    color:#555;
    margin-bottom:152px;
}

.website{
    margin-bottom:15px;
}

.website a{
    color:#0b5ed7;
    text-decoration:none;
    word-break:break-word;
}

.website a:hover{
    text-decoration:underline;
}

.description{
    color:#666;
}



@media(max-width:768px){

    .page-header h1{
        font-size:34px;
    }

    .florist-grid{
        grid-template-columns:1fr;
    }

    .florist-card{
        padding:25px;
    }
	
	
	   .directory-grid{
        grid-template-columns:1fr;
    }

}





















.directory-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:30px;
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.card h2{
	color:#8e9b82;
    font-size:28px;
    margin-bottom:15px; line-height:30px;
}

.address{
    margin-bottom:15px;
    color:#fff;
}

.website{
    margin-bottom:15px;
}

.website a{
    color:#304943;
    text-decoration:underline;
}

.website a:hover{
    text-decoration:none;
}

.description{
    color:#fff;
}

.guide-section{
    margin-top:60px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:40px; color:#8e9b82;
}

.guide-section h2{
	color:#8e9b82;
    margin-bottom:15px;
}

.guide-section a{
    color:#0b5ed7;
}


