/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  font-family: "Great Vibes", cursive;
  background-image: url(mainbg.png);
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
}

.container {
  max-width: 1200px;
  margin-bottom: 40px;
}

.row {
  padding: 0 50px;
  margin-top: 40px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-image: url(bg.jpg);
  width: 100vw;
  height: 100vh;
  position: relative;
  background-size: cover;
}

.header-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 5;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.header-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-family: "Great Vibes", cursive;
  padding: 80px 40px 0 40px;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 60px;
}

.header-text-text {
  font-size: 14px;
  color: #fff;
}

.circle-pulse {
  width: 100px;
  height: 100px;

  border-width: 1px;
  border-radius: 3000px 3000px 3000px 3000px;
  background-position: center center;
  border-color: #ffffff;
  border-style: solid;

  animation: pulse 2.3s infinite linear;
  backface-visibility: hidden;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  50% {
    opacity: 0;
    transform: scale(1.18, 1.18);
    animation-timing-function: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

.image-container {
  width: 100%;
  height: 100vh;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container2 {
  width: 100%;
  position: relative;
  min-height: 460px;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-right {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 20px;
  right: 0;
  transform: rotateY(180deg);
}

.image-left {
  width: 160px;
  height: 160px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotateX(180deg);
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 80%;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: 24px;
}

.text-bold {
  font-weight: 600;
  font-size: 28px;
}

.no-link {
  text-decoration: none;
  color: #fff;
}

.calendar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.calendar-text {
  font-size: 24px;
  font-weight: 700;
}

.calendar-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); */
  padding: 24px 18px 18px 18px;
  margin-top: 10px;
  font-family: "Cormorant", serif;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 36px);
  gap: 2px;
  font-size: 16px;
  font-weight: 600;
  color: #b48c6e;
  margin-bottom: 6px;
  text-align: center;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 36px);
  gap: 2px;
  font-size: 16px;
  color: #333;
  text-align: center;
}
.calendar-days span {
  font-size: 18px;
  font-weight: 400;
}

.calendar-empty {
  visibility: hidden;
}

.calendar-wedding {
  position: relative;
  background: #fff6f6;
  border-radius: 50%;
  color: #b48c6e;
  font-weight: 700;
  /* box-shadow: 0 0 0 2px #eecfcf; */
  z-index: 1;
}

.calendar-heart {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #e57373;
  pointer-events: none;
  display: none;
}

.place-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.place-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.dress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  min-height: 460px;
}

.dress-text {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.anket-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.anket-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.anket-text {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.anket-input {
  width: 100%;
  max-width: 340px;
  padding: 16px 18px;
  font-size: 20px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  outline: none;
  margin-bottom: 18px;
  text-align: center;
  font-family: inherit;
  box-sizing: border-box;
  transition: border 0.2s;
}
.anket-input:focus {
  border: 1.5px solid #a1887f;
}

.anket-button {
  width: 100%;
  max-width: 220px;
  padding: 12px 0;
  font-size: 18px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  font-family: "Cormorant", serif;
}
.anket-button:hover {
  background: #f5f5f5;
  color: #222;
  border: 1.5px solid #a1887f;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  min-height: 260px;
}
