* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "GHEAMariam", sans-serif;
}

img {
    user-select: none;
}

input[type="radio"] {
    accent-color: #1f1f1f;
}

.section-margin {
    margin: 3.75rem auto 7.5rem auto;
}

.section-title {
    font-size: 1.875rem;
    color: #1f1f1f;
    font-weight: 700;
    text-align: center;
}

.mapLink {
    width: fit-content;
    background-color: #1f1f1f;
    color: #fff;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    border-radius: 3.75rem;
    text-decoration: none;
}

.font-armAllegroU {
    font-family: "ArmAllegroU", sans-serif;
}

.font-armenianDecorativeU {
    font-family: "ArmenianDecorativeU", sans-serif;
}

/* Section-1 start */
.section1 {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.section1__imageWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section1__imageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.section1__mainBlock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    color: #fff;
    font-style: italic;
}

.section1__mainBlock span {
    display: block;
}

.section1__mainBlock__text {
    font-size: 2.5rem;
    font-weight: 400;
}

.section1__mainBlock__title {
    font-size: 6rem;
    font-weight: 400;
}

.section1__bowBlock {
    width: 5.125rem;
    height: 8.75rem;
    margin: 0 auto;
}

.section1__bowBlock img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.white-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100dvh;
    background: #fff;
}
/* Section-1 end */

/* Section-Music start */
.sectionMusic__container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sectionMusic__container button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: transparent;
    border: none;
    cursor: pointer;
}

.sectionMusic__container p {
    font-size: 1.25rem;
    text-align: center;
}
/* Section-Music end */

/* Section-2 start */
.section2__title {
    margin-bottom: 2.5rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: #1f1f1f;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.25rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 1rem;
}

.countdown-colon {
    font-size: 2.25rem;
}
/* Section-2 end */

/* Section-3 start */
.section3 {
    display: flex;
    justify-content: center;
}

.section3__calendar {
    text-align: center;
}

.section3__calendar .month {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #1f1f1f;
    font-weight: 700;
    text-align: center;
}

.section3__calendar .days-header,
.section3__calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.625rem;
    color: #4b5151;
}

.section3__calendar .days-header div {
    color: #4b5151;
    text-transform: uppercase;
    margin-top: 0.625rem;
}

.section3__calendar .day {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section3__calendar .selected {
    position: relative;
    z-index: 10;
    color: #fff;
}

.section3__calendar .selected::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    z-index: -1;
    width: 3.5rem;
    height: 3.125rem;
    background-image: url("../images/heart.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
/* Section-3 end */

/* Section-4 start */
.section4 {
    width: 28.75rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section4__text {
    font-size: 1.125rem;
    color: #4b5151;
    text-align: center;
}

.section4__imageBlock {
    width: 14.375rem;
    height: 15.875rem;
    margin: 0 auto;
}

.section4__imageBlock img {
    width: 100%;
    height: 100%;
}
/* Section-4 end */

/* Section-5 start */
.section5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section5__restaurantName {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f1f1f;
    text-align: center;
}

.section5__restaurantAddress {
    font-size: 1.25rem;
    font-weight: 400;
    color: #1f1f1f;
    text-align: center;
}
/* Section-5 end */

/* Section-6 start */
.section6 {
    padding: 3.75rem 0;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.section6__title {
    font-size: 1.875rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.section6__scheduleBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.25rem;
}

.section6__scheduleItem {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
    text-align: center;
}

.section6__scheduleShine {
    width: 2.5rem;
    height: 2.5rem;
    animation: scale 1.5s infinite ease-in-out;
}

.section6__scheduleShine img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.schedule__image {
    width: 9rem;
    height: 9rem;
    margin: 0 auto;
}

.schedule__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.schedule__time {
    font-size: 1.875rem;
}
/* Section-6 end */

/* Section-7 start */
.section7 {
    width: 62.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section7 form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0 auto;
}

.section7__question {
    margin-bottom: 1.25rem;
}

.section7__label {
    color: #858585;
}

.section7__group input:not([type="radio"]) {
    width: 100%;
    height: 2.5rem;
    border-radius: 2.25rem;
    border: 1px solid #858585;
    padding: 0.875rem;
}

.section7__group button {
    display: block;
    background-color: #1f1f1f;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 2.25rem;
}
/* Section-7 end */

/* Section-8 start */
.section8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.section8__title,
.section8__text {
    font-size: 2.25rem;
    color: #1f1f1f;
    font-weight: 400;
    text-align: center;
}

.section8__text {
    font-weight: 700;
}

.section8__imageBlock {
    width: 2.875rem;
    height: 3.1875rem;
    animation: scale 1.5s infinite ease-in-out;
}

.section8__imageBlock img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Section-8 end */

@keyframes scale {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
}

/*footer*/

.footer {
  padding: 1em 0;
  text-align: center;
  width: 100%;
}

.footer .footer-title {
  font-family: "Arm Hmk's Bebas Neue";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
  text-transform: capitalize;
  margin-bottom: 1.6em;
  letter-spacing: 0.15em;
}

.footer .img-part {
  width: 2.5em;
}

.footer .grid-gap-part {
  grid-gap: 0 1em;
}

.footer .link-to-website {
  /* font-family: Bainsley; */
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3em;
  color: #f4f4f4;
  text-decoration: underline;
}

.logo-div img {
  max-width: 6rem;
}
.social-links {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
 height: fit-content;
  line-height: 1.5;
  margin-bottom: 0.9em;
}
.social-links .social-links__image {
  width: auto;
   height: 1.5em;
   transform: translateY(25%);
  object-fit: contain;
}

.social-links a {
  color: black;
  text-decoration: none;
}
.credits-part {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.7rem;
}
/*footer*/
