/* Story section */
.box-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  align-items: center;
  margin: 170px auto 30px auto;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

.left-section {
  flex: 1 1 500px;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.decorative-leaf {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a5d23, #6b8e23);
  border-radius: 50% 10% 50% 10%;
  transform: rotate(-45deg);
  opacity: 0.8;
}

.left-section h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #f5f5f5;
  font-family: "Cinzel Decorative", cursive;
}

.description {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 30px;
  max-width: 100%;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-label {
  font-size: 12px;
  color: var(--secondary-color);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.phone {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 500;
}

.read-more-btn {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 10px 25px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: var(--secondary-color);
  color: #1a1a1a;
}

.right-section {
  flex: 1 1 500px;
  position: relative;
  height: 100vh;
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  width: 100%;
  height: 70%;
  object-fit: cover;
  /* border-radius: 0 0 0 20px; */
  border-radius: 20px;
}

.bottom-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
}

.circular-badge {
  position: absolute;
  top: -50px;
  left: 10px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  z-index: 10;
}

.badge-content {
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  position: relative;
}

.spinning-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}

.spinning-text span {
  position: absolute;
  font-size: 8px;
  font-weight: 600;
  color: white;
  transform-origin: 70px 70px;
  text-transform: uppercase;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .box-container {
    margin: 120px auto 20px auto;
  }

  .left-section h1 {
    font-size: 2.5rem;
  }

  .main-image {
    height: 60%;
    width: 80%;
  }

  .bottom-image {
    width: 50%;
  }

  .circular-badge {
    top: 30px;
    left: 20%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .box-container {
    flex-direction: column;
    margin: 80px auto 20px auto;
  }

  .left-section {
    padding: 40px 20px;
    text-align: center;
  }

  .main-image {
    height: 50vh;
    border-radius: 20px;
    width: 200px;
  }

  .bottom-image {
    position: relative;
    bottom: auto;
    display: block;
    width: 120px;
    max-width: 250px;
  }

  .circular-badge {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .left-section h1 {
    font-size: 2rem;
  }

  .description {
    font-size: 13px;
  }

  .phone {
    font-size: 14px;
  }

  .read-more-btn {
    padding: 8px 20px;
    font-size: 10px;
  }

  .circular-badge {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }

  .spinning-text {
    width: 110px;
    height: 110px;
  }

  .spinning-text span {
    transform-origin: 55px 55px;
    font-size: 7px;
  }
}

/* Occasion */

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: 120px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.section-header::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-label::before {
  left: -25px;
}

.section-label::after {
  right: -25px;
}

.main-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  color: #f5f5f5;
  font-family: "Cinzel Decorative", cursive;
  margin-top: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  min-height: 200px;
}

.service-item {
  text-align: center;
  max-width: 280px;
}

.service-item.top-left {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: end;
}

.service-item.bottom-left {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  align-self: start;
}

.service-item.right {
  justify-self: start;
  align-self: center;
}

.services-grid .service-item.right:nth-of-type(4) {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  margin-top: 0;
}

.services-grid .service-item.right:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
}

.center-image {
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: center;
  align-self: center;
  position: relative;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 16px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Cinzel Decorative", cursive;
}

.service-description {
  font-size: 13px;
  line-height: 1.6;
  color: #b8c5c1;
  font-family: "Arial", sans-serif;
}

.central-image {
  width: 300px;
  height: 400px;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4af37;
  position: relative;
  z-index: 1;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.services-grid .service-item.bottom-left,
.services-grid .service-item.right:nth-of-type(5) {
  align-self: center !important;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
    text-align: center;
  }

  .service-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: center !important;
    align-self: auto !important;
    max-width: 100%;
  }

  .center-image {
    grid-column: 1 !important;
    grid-row: auto !important;
    order: -1;
  }

  .central-image {
    width: 250px;
    height: 300px;
  }

  .main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .services-container {
    margin-top: 20px;
  }
  .main-title {
    font-size: 2rem;
  }

  .central-image {
    width: 200px;
    height: 250px;
  }

  .section-header::before {
    top: 100px;
  }
}

/* About slider */

:root {
  --width-circle: 150vw;
  --radius: calc(100vw / 6);
}

.about-slider {
  margin: 0 auto;
  margin-top: 70px;
}

.about-slider h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.about-slider h2::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #fde056, transparent);
  border-radius: 2px;
}

.slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(#fff3, transparent 50%);
  margin-top: 50px;
}
.slider .list {
  position: absolute;
  width: max-content;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: transform 0.8s;
}
.slider .list .item {
  width: calc(var(--radius) * 2);
  text-align: center;
  transform: rotate(45deg);
  transition: transform 1s;
}
.slider .list .item.active {
  transform: rotate(0deg);
}
.slider .list .item img {
  width: 90%;
  filter: drop-shadow(0 0 20px #000);
}
.slider .content button {
  border: 1px solid #eee5;
  background: transparent;
  color: #eee;
  font-family: Poppins;
  letter-spacing: 5px;
  border-radius: 20px;
  padding: 10px 20px;
}
#prev,
#next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #eee9;
  background-color: #eee5;
  color: #eee;
  font-size: x-large;
  font-family: monospace;
  cursor: pointer;
  z-index: 15;
}
#prev {
  left: 20px;
}
#next {
  right: 20px;
}

.circle {
  pointer-events: none;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  -webkit-mask: radial-gradient(var(--radius), transparent 100%, #000);
  mask: radial-gradient(var(--radius), #0000 98%, #000);
  backdrop-filter: blur(10px);
  background: radial-gradient(calc(var(--radius) + 1px), #eee5 100%, #eee2);
}
.circle span {
  display: block;
  position: absolute;
  height: calc(var(--radius) * 2 + 50px);
  top: 50%;
  left: 50%;
  --rotate: 50deg;
  transform: translate(-50%, -50%) rotate(var(--rotate));
  text-transform: uppercase;
  color: #fff;
  font-size: small;
  animation: circleRotate 20s linear infinite;
}
@keyframes circleRotate {
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--rotate) + 360deg));
  }
}
