.background-body{
    inset: 0;
    position: fixed;
    z-index: 0;
    filter: brightness(50%);
}

.background-body video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.section {
    padding: 120px 24px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 55px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-title span {
    font-family: 'BeautyHandwriting';
    font-weight: 100;
    font-size: 80px;
}

.section-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    max-width: 100%;
    padding: 0 24px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 300px;
}


.hero-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 5px;
    /* font-family: ; */
    font-weight: 400;

}

.hero-names {
    font-size: 45px;
    margin-bottom: 10px;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-date {
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 400;
}

.hero-hashtag {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 100;
}

.hero-quote {
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 10px auto;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-surah {
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.journey-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.journey-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.journey-item.reverse {
    flex-direction: row-reverse;
}

.journey-images {
    position: relative;
    margin: 0 auto;
    width: 500px;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.journey-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 6s linear;
    transform: scale(1.08);
}

.journey-images img.active {
    opacity: 1;
    transform: scale(1);
}

.journey-text {
    width: 50%;
    padding: 40px;
}

.journey-text h3 {
    font-size: 35px;
    color: #FFFFFF;
    margin-bottom: 24px;
    font-weight: 700;
}

.journey-text p {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
}

.logo-couple {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.couple-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: #FFFFFF;
}

.couple-container {
    display: flex;
    padding-top: 30px;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.couple-card {
    width: calc(50% - 30px);
    min-width: 350px;
    text-align: center;
}

.couple-card:hover {
    transform: scale(1.05);
}

.couple-img-wrapper {
    position: relative;
    width: 350px;
    height: 500px;
    aspect-ratio: 6/19;
    margin: 0 auto 40px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    background: var(--color-bg);
}

.couple-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.couple-img-wrapper img.active {
    opacity: 1;
}

.couple-img-wrapper:hover img.active {
    transform: scale(1);
}

.couple-label {
    position: absolute;
    bottom: 100px;
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 700;
    color: #FFFFFF;
    transform-origin: left;
    transform: rotate(-90deg);
}

.couple-info h3 {
    font-size: 35px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.couple-info .couple-line {
    width: 50%;
    margin: 0 auto;
    height: 2px;
    background: #FFFFFF;
    margin-bottom: 12px;
}

.couple-info p {
    color: #FFFFFF;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-social {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: none;
    border: 1px solid #FFFFFF;
}

.btn-social:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.event-section {
    padding: 120px 24px;
    text-align: center;
}

.countdown-wrapper {
    display: grid;
    max-width: 500px;
    margin: 0 auto;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    transition: transform all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}

.countdown-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.countdown-item span {
    font-size: 38px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #FFFFFF;
    line-height: 1;
}

.countdown-item small {
    font-size: 0.95rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
    font-weight: 700;
}

.details-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 5;
}

.detail-card {
    width: calc(70% - 25px);
    min-width: 360px;
    padding: 56px 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    border-top: 8px solid var(--color-primary);
    background: rgba(2, 2, 2, 0.308);
    transition: transform all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.detail-card:hover {
    transform: translateY(-12px);
    background: rgba(2, 2, 2, 0.5);
}

.detail-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.detail-line {
    height: 100px;
    width: 3px;
    background: #FFFFFF;
}

.detail-icon {
    font-size: 45px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.detail-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.detail-time,
.detail-date {
    font-weight: 400;
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 10px;
}

.detail-info {
    margin-top: 50px;
}

.detail-info h2 {
    margin-bottom: 12px;
}

.detail-address {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
    padding: 0 24px;
}

.detail-note {
    font-size: 14px;
    font-family: 400;
    margin-bottom: 36px;
    color: #FFFFFF;
}

.dresscode-section {
    text-align: center;
}

.palette-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.palette-color {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 2px solid #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.palette-color:hover {
    transform: scale(1.2) translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.palette-color::after {
    content: attr(data-color);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-text-main);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    pointer-events: none;
}

.palette-color:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.gallery-section {
    max-width: 1100px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: clamp(60px, 12vw, 125px);
    gap: clamp(8px, 2vw, 20px);
    margin-bottom: 48px;
}

.masonry-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
}

.masonry-item:nth-child(1),
.masonry-item:nth-child(10),
.masonry-item:nth-child(15) {
    grid-column: span 8;
    grid-row: span 4;
}

.masonry-item:nth-child(2),
.masonry-item:nth-child(3),
.masonry-item:nth-child(6),
.masonry-item:nth-child(7),
.masonry-item:nth-child(8),
.masonry-item:nth-child(9),
.masonry-item:nth-child(11),
.masonry-item:nth-child(12) {
    grid-column: span 4;
    grid-row: span 5;
}

.masonry-item:nth-child(4),
.masonry-item:nth-child(14) {
    grid-column: span 3;
    grid-row: span 4;
}

.masonry-item:nth-child(5),
.masonry-item:nth-child(13) {
    grid-column: span 5;
    grid-row: span 4;
}

.masonry-item::after {
    content: '\f00e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #FFFFFF;
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.masonry-item:hover img {
    transform: scale(1.15);
}

.masonry-item:hover::before,
.masonry-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hidden-gallery-item {
    display: none;
    animation: fadeInScale 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.gallery-action {
    text-align: center;
    margin-top: 40px;
}

.gallery-action {
    text-align: center;
    margin-top: 40px;
}

.gift-section {
    text-align: center;
}

.gift-action #btn-show-gifts {
    animation: pulseGift 2s infinite;
}

.gift-action #btn-show-gifts:hover {
    animation: none;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(188, 163, 127, 0.6);
}

.gift-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 56px;
    animation: slideDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.gift-card {
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 48px;
    width: 360px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}

.gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px #ffffff6b;
    border-color: #FFFFFF;
}

.gift-card h4 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #FFFFFF;
    font-weight: 700;
}

.account-number,
.address-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-family: monospace;
}

.address-text {
    font-size: 1.1rem;
    letter-spacing: normal;
    line-height: 1.7;
    font-family: var(--font-body);
}

.account-name {
    color: #FFFFFF;
    margin-bottom: 32px;
    font-size: 1.05rem;
    font-weight: 500;
}

.btn-copy {
    background: none;
    padding: 15px 15px;
    border-radius: 10px;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: scale(1.1);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.rsvp-section {
    max-width: 900px;
    margin: auto;
}

#rsvp-form-container {
    position: relative;
    background: #0000003f;
    padding: 56px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 70px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.rsvp-locked form {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}

.rsvp-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(114, 114, 114, 0.377);
    backdrop-filter: blur(6px);
    text-align: center;
    padding: 48px;
    cursor: not-allowed;
}

.rsvp-locked .rsvp-overlay {
    display: flex;
    animation: fadeInScale 0.6s ease forwards;
}

.rsvp-overlay i {
    font-size: 45px;
    color: var(--color-primary);
    margin-bottom: 30px;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}

.rsvp-overlay p {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.7;
    max-width: 85%;
}

.wishes-count-text {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: -15px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 32px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1rem;
}

.input-readonly {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    background: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 600;
    cursor: not-allowed;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-label {
    flex: 1;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 12px;
    padding: 14px 30px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
}

.radio-label input[type="radio"]:checked+.radio-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.editor-toolbar {
    display: flex;
    gap: 8px;
    border: 2px solid var(--color-border);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 12px;
}

.tool-btn {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.tool-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.tool-btn:hover:not(.active) {
    background: var(--color-primary-light);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.toolbar-spacer {
    flex-grow: 1;
}

.rich-textarea {
    width: 100%;
    min-height: 160px;
    border: 2px solid var(--color-border);
    border-radius: 0 0 16px 16px;
    padding: 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    overflow-y: auto;
    background: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    line-height: 1.7;
}

.rich-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px #FFFFFF;
}

.rich-textarea:empty:before {
    content: attr(data-placeholder);
    color: #94A3B8;
    pointer-events: none;
    display: block;
}

.sticker-selector-wrapper {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    animation: fadeInScale 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sticker-selector-wrapper label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.sticker-selector {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sticker-option {
    width: 80px;
    height: 80px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 8px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-sm);
}

.sticker-option:hover {
    transform: scale(1.15) rotate(8deg);
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
}

.sticker-option.selected {
    border-color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.wishes-container {
    border-radius: 10px;
    background: #0000004f;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.wish-card {
    padding: 32px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    border-left: 6px solid var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}

.wish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px dashed var(--color-border);
    padding-bottom: 16px;
}

.wish-author-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wish-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wish-name small {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--color-bg);
    padding: 4px 10px;
    border-radius: 12px;
}

.wish-time {
    cursor: pointer;
    color: #FFFFFF;
    font-size: 0.9rem;
    display: block;
    transition: color 0.3s;
    font-weight: 600;
    user-select: none;
}

.wish-time:hover {
    color: var(--color-primary-light);
}

.wish-badge {
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wish-badge.hadir {
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-success);
}

.wish-badge.absen {
    background: rgba(239, 68, 68, 0.12);
    color: var(--color-danger);
}

.wish-content {
    font-size: 18px;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.wish-sticker {
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 18px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.wishes-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px dashed var(--color-border);
}

#wishes-page-info {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 16px;
}

.wishes-pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.quote-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.quote-container p {
    margin-bottom: 12px;
    font-size: 18px;
    font-style: italic;
}

.footer-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    margin: 120px auto 0 auto;
    overflow: hidden;
    padding: 120px 24px;
}

.footer-bg {
    position: absolute;
    filter: brightness(40%);
    inset: 0;
    z-index: 0;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-subtitle {
    max-width: 800px;
    padding-top: 20px;
    width: 100%;
    margin: 0 auto;
}
.footer-content {
    text-align: center;
    margin: 50px 0;
}

.footer-text h2 {
    font-size: 45px;
}

.footer-text p {
    font-size: 18px;
}

.copyright-container{
    text-align: center;
    font-size: 18px;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 16px;
    }

    .section-title {
        font-size: 35px;
    }

    .section-title span {
        font-size: 50px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .hero-subtitle, .hero-date, .hero-hashtag {
        font-size: 14px;
    }

    .hero-names {
        font-size: 35px;
    }

    .hero-quote,
    .hero-surah {
        font-size: 14px;
    }

    .journey-item,
    .journey-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .journey-images {
        width: 100%;
        height: 350px;
    }

    .journey-text {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .journey-text h3 {
        font-size: 25px;
    }

    .journey-text p {
        font-size: 14px;
    }

    .couple-subtitle {
        font-size: 14px;
    }
    .couple-container {
        gap: 80px;
    }

    .couple-card {
        width: 100%;
        min-width: auto;
    }

    .couple-img-wrapper {
        aspect-ratio: 4/5;
        border-width: 8px;
        width: 300px;
        height: 450px;
    }

    .couple-label {
        font-size: 40px;
    }

    .couple-info h3 {
        font-size: 25px;
    }

    .couple-info p {
        font-size: 14px;
    }

    .btn-social {
        font-size: 14px;
        padding: 8px 18px;
    }
    .countdown-wrapper{
        max-width: 250px;
        grid-template-columns: repeat(2, 1fr);
    }
    .countdown-item {
        width: 100px;
        height: 100px;

    }

    .countdown-item span {
        font-size: 35px;
    }

    .countdown-item small {
        font-size: 14px;
    }

    .details-container {
        margin-top: 0;
        gap: 30px;
    }

    .detail-card {
        width: 100%;
        top: 0;
        margin-bottom: 0;
        padding: 30px 20px;

    }

    .detail-icon {
        font-size: 35px;
    }

    .detail-card h3 {
        font-size: 20px;
    }

    .detail-time, .detail-date {
        font-size: 16px;
    }

    .detail-info h3 {
        font-size: 18px;
    }

    .detail-info p {
        font-size: 14px;
    }

    .palette-container {
        gap: 15px;
    }

    .section-description {
        font-size: 14px;
    }
    .palette-color {
        width: 60px;
        height: 60px;
    }

    /* .masonry-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .masonry-item img {
        height: 300px;
    } */

    .gift-subtitle {
        font-size: 14px;
    }
    .gift-card {
        width: 100%;
        padding: 20px 15px;
    }

    .gift-card h4 {
        font-size: 25px;
    }
    .gift-card .account-number {
        font-size: 18px;
    }

    .gift-card .account-name, .gift-card .address-text {
        font-size: 14px;
    }

    .btn-copy {
        font-size: 14px;
        padding: 8px 15px;
    }

    #rsvp-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .radio-group {
        flex-direction: column;
        gap: 16px;
    }

    .wishes-container {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .wish-header {
        align-items: flex-start;
        gap: 12px;
    }

    .wish-badge {
        font-size: 14px;
        padding: 5px 12px;
    }
    .wish-name, .wish-content, .wish-tame   {
        font-size: 14px;
    }

    .wish-sticker {
        width: 100px;
        height: 100px;
    }

    .footer-subtitle {
        font-size: 14px;
    }
}