:root {
    --wedding-yellow: #ECB830;
    --wedding-blue: #4D5122;
    --circle-size: clamp(80px, 20vw, 150px);
}

.body {
    background: repeating-linear-gradient(
            to right,
            white 0 9%,
            rgba(236, 184, 48, 0.2) 9% 23%
    ) !important;
}

.bg-color-blue {
    background: var(--wedding-blue) !important;
}

.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    line-height: 1;
}

.text-unbounded {
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
}

.color-wedding-yellow {
    color: var(--wedding-yellow);
}

.dvh-8 {
    height: 8dvh;
}

.wedding-text {
    font-size: clamp(2rem, 10vw, 5rem);
    white-space: nowrap;
}

.color-wedding-blue {
    color: var(--wedding-blue);
}

.day-text {
    font-size: clamp(2rem, 20vw, 5rem);
    white-space: nowrap;
}

.special-day {
    font-size: clamp(1rem, 7vw, 2rem);
}

.bottom-m-10 {
    bottom: -10% !important;
}

.mh-50 {
    max-height: 50vh;
}

.mh-40 {
    max-height: 40vh;
}

.mh-30 {
    max-height: 30vh;
}

.mh-20 {
    max-height: 20vh;
}

.mh-15 {
    max-height: 15vh;
}

.green-arch {
    background-color: var(--wedding-blue);
    width: 100%;
    border-radius: 40% 40% 0 0 / 150px 150px 0 0;
    flex-grow: 1;
    position: relative;
    margin-top: calc(var(--circle-size) / 2 + 2rem);
}

.image-circle-size {
    width: var(--circle-size);
    height: var(--circle-size);
}

.image-circle-top {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}

@keyframes rotate-circle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.custom-rotate-animation {
    animation: rotate-circle 15s linear infinite;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 1rem;
    font-size: clamp(1rem, 4vw, 1.25rem);
    align-items: center;
}

.active-date {
    display: flex;
    justify-content: center;
    align-items: center;
}

.active-date span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
    border: 2px solid var(--wedding-yellow);
    border-radius: 50%;
    color: white;
}

.wedding-btn {
    border: 1px solid var(--wedding-yellow);
    color: var(--wedding-yellow);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.wedding-btn:hover {
    background-color: var(--wedding-yellow);
    color: var(--wedding-blue);
}

.bottle {
    transform: translate(-50%, -50%) scale(-1, 1) !important;
}


.lemon {
    transform: translate(50%, -50%) !important;
}

.cap {
    transform: translate(-10%, -10%) !important;
}

.lemon-out {
    transform: translate(50%, 50%) !important;
}

.bottle-in {
    transform: scale(-1, 1) !important;
}

.calendar-text {
    font-size: clamp(4rem, 15vw, 6rem) !important;
}

.restaurant-text {
    font-size: clamp(3rem, 10vw, 6rem) !important;
}

.text-address {
    font-size: clamp(1rem, 5vw, 2rem);
}

.text-btn {
    font-size: clamp(1rem, 3vw, 2rem);
}

.text-dress {
    font-size: clamp(1rem, 7vw, 3rem);
    line-height: 1.5;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    max-width: 500px;
    align-items: center;
    margin-bottom: 1.5rem;
}

.schedule-time {
    text-align: right;
    padding-right: 1.5rem;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-weight: bold;
}

.schedule-text {
    text-align: left;
    padding-left: 1.5rem;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    line-height: 1.2;
}

.schedule-line {
    width: 2px;
    height: 60px;
    background-color: white;
}

.step-left { transform: translateX(-20px); }
.step-center { transform: translateX(0); }
.step-right { transform: translateX(20px); }

.color-square {
    width: clamp(40px, 15vw, 80px);
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.google-form-iframe {
    width: 100%;
    max-width: 300px;
    height: 1500px;
    border-radius: 15px;
    border: none;
    background-color: transparent;
    overflow-y: hidden;
}

.w-85 {
    width: 85% !important;
}

.custom-wedding-input {
    background-color: transparent !important;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 0 !important;
    color: white !important;
    padding-left: 0;
}

.custom-wedding-input:focus {
    box-shadow: none !important;
    border-bottom: 2px solid var(--wedding-yellow) !important;
}

.custom-wedding-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-wedding-input option {
    background-color: var(--wedding-blue);
    color: white;
}

.custom-radio {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.custom-radio:checked {
    background-color: var(--wedding-yellow) !important;
    border-color: var(--wedding-yellow) !important;
}