/* =============================================
   GLOBAL
   ============================================= */
:root {
    /* Palet Khitanan: Hijau Toska Islami + Emas */
    --cream: #f0f9f4;
    --gold: #2e8b57;
    --gold-light: #a8d8b9;
    --accent: #c9a84c;
    --accent-light: #e8d5a3;
    --dark: #1a3a2a;
    --text: #3a5a45;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.10);
    --radius: 16px;
    --sacramento: Sacramento, cursive;
    --arabic: 'Noto Naskh Arabic', serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--text);
    background-color: var(--cream);
    overflow-y: hidden;
}
body.active { overflow-y: auto; }

p { line-height: 1.8; }

/* =============================================
   AUDIO BUTTON
   ============================================= */
.audio button {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background-color: var(--white);
    color: var(--gold);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    cursor: pointer;
    transform: translateX(200%);
    transition: 1.5s transform ease;
    z-index: 50;
    box-shadow: var(--shadow);
}
.audio button.show { transform: translateX(0); }
.audio button.active { animation: rotate 3s linear infinite; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes upAndDown {
    0%,100% { transform: translateY(-0.6rem); }
    50%     { transform: translateY(0.6rem); }
}

/* =============================================
   NAVBAR
   ============================================= */
header nav {
    display: none;
    width: 100%;
    padding: 0.4rem 1rem;
    background-color: var(--white);
    align-items: center;
    justify-content: space-around;
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 99;
    transition: bottom 1.5s ease, transform 0.5s ease;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    border-top: 1px solid var(--gold-light);
}
header nav.active { bottom: 0; }
header nav.scroll { transform: translateY(100%); }

header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.1rem;
    width: 4rem;
    height: 3rem;
    color: var(--dark);
    border-radius: 8px;
    transition: var(--transition);
}
header nav a i    { font-size: 1.2rem; }
header nav a span { font-size: 0.6rem; }
header nav a:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* =============================================
   WELCOME
   ============================================= */
.welcome {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(160deg, #0d2b1a 0%, #1a4a2e 60%, #0d3320 100%);
    position: fixed;
    inset: 0;
    z-index: 99;
    color: var(--white);
    transition: opacity 1.5s ease, transform 1.5s ease;
    opacity: 0;
    transform: translateY(-100%);
}
.welcome.active { transform: translateY(0); opacity: 1; }
.welcome.hide   { transform: translateY(-100%); opacity: 0; }

.welcome h2 {
    font-size: 2.2rem;
    font-family: var(--arabic);
    font-weight: 600;
    color: var(--accent-light);
}
.welcome figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.2rem 0;
}
.welcome figure img {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 0 24px rgba(46,139,87,0.5);
}
.welcome figure figcaption {
    font-size: 2rem;
    font-family: var(--arabic);
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--accent-light);
}
.welcome p { font-size: 0.9rem; opacity: 0.85; }
.welcome p span {
    font-size: 1.5rem;
    display: block;
    margin: 0.4rem 0;
    color: var(--accent-light);
    font-family: var(--sacramento);
}
.welcome button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    color: var(--dark);
    background-color: var(--accent-light);
    padding: 0.6rem 1.6rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}
.welcome button:hover {
    background-color: var(--accent);
    color: var(--white);
}
.welcome button i { font-size: 1.1rem; }

/* =============================================
   HOME
   ============================================= */
.home {
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 1.4rem 6rem;
    transition: all 2s ease;
    transform: translateY(-100%);
}
.home.active { transform: translateY(0); }

.home h2 {
    font-size: 2rem;
    font-family: var(--arabic);
    font-weight: 600;
    color: var(--gold);
}
.home figure { margin: 1.4rem auto 0; }
.home figure img {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow);
}
.home figure figcaption {
    margin: 0.4rem 0;
    font-family: var(--arabic);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
}
.home h3 { font-weight: 400; font-size: 0.9rem; color: var(--text); }

.home .home-time {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.home .home-time div {
    width: 3.4rem;
    height: 3.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: var(--shadow);
}
.home .home-time div p { font-size: 0.75rem; line-height: 1.2; color: var(--dark); }
.home .home-time div p span { font-size: 0.55rem; color: var(--text); }

.home a {
    padding: 0.5rem 1.4rem;
    color: var(--white);
    font-size: 0.9rem;
    background-color: var(--gold);
    margin: 1rem auto 0;
    border-radius: 25px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.home a:hover { background-color: var(--dark); }
.home a i { font-size: 1.1rem; }

.home .scroll_down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--text);
    opacity: 0.6;
}

/* =============================================
   BRIDE (Mempelai)
   ============================================= */
.bride {
    width: 100%;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background-color: var(--cream);
}
.bride h2 {
    font-size: 1.5rem;
    font-family: var(--arabic);
    font-weight: 600;
    color: var(--dark);
}
.bride h3 {
    font-size: 2rem;
    font-family: var(--sacramento);
    font-weight: 400;
    margin: 0.8rem 0;
    color: var(--gold);
}
.bride p { font-size: 0.9rem; max-width: 480px; margin: 0 auto; }

.bride_couple { margin-top: 2.5rem; }
.bride_couple ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
}
.bride_couple li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bride_couple li figure {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bride_couple li figure img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow);
}
.bride_couple li figure figcaption {
    font-size: 1.8rem;
    margin: 0.8rem 0 0.4rem;
    font-family: var(--arabic);
    font-weight: 600;
    color: var(--dark);
}
.bride_couple li p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.6;
}

/* Card anak tunggal — center dengan ornamen */
.bride_couple li.anak-single {
    background: var(--white);
    border: 2px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow);
    max-width: 320px;
    width: 100%;
    gap: 0.5rem;
}
.bride_couple li.anak-single figure img {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 20px rgba(46,139,87,0.3);
}
.bride_couple li.anak-single figure figcaption {
    font-size: 1.6rem;
    font-family: var(--arabic);
    color: var(--dark);
    font-weight: 600;
    margin: 0.8rem 0 0.4rem;
}
.bride_couple li.anak-single p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.8;
    text-align: center;
}

.bride_couple span {
    font-size: 3rem;
    font-family: var(--sacramento);
    font-weight: 400;
    color: var(--gold);
    display: block;
    margin: 0.5rem 0;
}

/* Floating hearts — disederhanakan */
.bride > i {
    font-size: 2rem;
    color: var(--gold-light);
    position: absolute;
    animation: upAndDown 3s infinite;
}

/* =============================================
   HADIST
   ============================================= */
.hadist {
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #d4edda 0%, var(--cream) 100%);
}
.hadist h2 {
    font-size: 1.6rem;
    font-family: var(--arabic);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}
.hadist p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text);
}
.hadist p span {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}
.hadist i {
    font-size: 2rem;
    color: var(--accent);
    display: block;
    margin: 1.5rem auto 0;
}

/* =============================================
   TIME (Waktu & Tempat)
   ============================================= */
.time {
    width: 100%;
    padding: 5rem 2rem 5rem;
    text-align: center;
    background-color: var(--cream);
    position: relative;
    z-index: 1;
}
.time h2 {
    font-family: var(--arabic);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
}
.time > p { font-size: 0.9rem; margin: 0.5rem auto 2rem; max-width: 480px; }

.time div:nth-of-type(1) {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}
.time div:nth-of-type(1) > div {
    background: var(--white);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    min-width: 200px;
    box-shadow: var(--shadow);
}
.time div:nth-of-type(1) div h3 {
    font-family: var(--arabic);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.time div:nth-of-type(1) div p { font-size: 0.9rem; line-height: 1.7; }

.time a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.6rem;
    color: var(--white);
    background-color: var(--gold);
    margin: 2rem auto 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}
.time a:hover { background-color: var(--dark); }
.time a i { font-size: 1.1rem; }

.time > a + p {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0 auto;
    max-width: 400px;
}
.time > i {
    font-size: 2rem;
    color: var(--gold-light);
    display: block;
    margin-top: 1.5rem;
}

/* =============================================
   WISHAS (Kirim Hadiah + Ucapan)
   ============================================= */
.wishas {
    width: 100%;
    padding: 5rem 2rem 5rem;
    background-color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 2px solid var(--gold-light);
}

/* --- Judul umum --- */
.wishas h2 {
    font-size: 2rem;
    font-family: var(--arabic);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.wishas > div > p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* --- Div 1: Bank --- */
.wishas div:nth-of-type(1) > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}
.wishas div:nth-of-type(1) > div figure {
    background: var(--cream);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    width: 220px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.wishas div:nth-of-type(1) > div figure:hover { transform: translateY(-4px); }
.wishas div:nth-of-type(1) > div figure img {
    width: 80px;
    height: 2.5rem;
    object-fit: contain;
    margin-bottom: 0.8rem;
}
.wishas div:nth-of-type(1) > div figure figcaption {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--text);
}
.wishas div:nth-of-type(1) > div figure button {
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gold);
    background-color: var(--white);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--dark);
}
.wishas div:nth-of-type(1) > div figure button:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* --- Separator antar sub-section --- */
.wishas div:nth-of-type(2) {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gold-light);
}
.wishas div:nth-of-type(3) {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-light);
}

/* --- Form ucapan --- */
.wishas div:nth-of-type(2) > form {
    margin-top: 1.2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}
.wishas div:nth-of-type(2) > form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}
.wishas div:nth-of-type(2) > form input,
.wishas div:nth-of-type(2) > form select,
.wishas div:nth-of-type(2) > form textarea {
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--gold-light);
    background-color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
}
.wishas div:nth-of-type(2) > form input:focus,
.wishas div:nth-of-type(2) > form select:focus,
.wishas div:nth-of-type(2) > form textarea:focus {
    border-color: var(--gold);
    outline: none;
}
.wishas div:nth-of-type(2) > form textarea { min-height: 6rem; resize: vertical; }
.wishas div:nth-of-type(2) > form button {
    width: 100%;
    color: var(--white);
    background-color: var(--gold);
    padding: 0.7rem 0;
    border-radius: 10px;
    margin-top: 1.2rem;
    border: none;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}
.wishas div:nth-of-type(2) > form button:hover { background-color: var(--dark); }

/* --- Daftar komentar --- */
.wishas div:nth-of-type(3) > p { color: var(--text); font-size: 0.9rem; }

.wishas div:nth-of-type(3) ul {
    margin-top: 1.2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    text-align: left;
}
.wishas div:nth-of-type(3) ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    border: 1px solid var(--gold-light);
}
.wishas div:nth-of-type(3) ul li div:nth-of-type(1) {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
}
.wishas div:nth-of-type(3) ul li div:nth-of-type(2) { flex: 1; }
.wishas div:nth-of-type(3) ul li div:nth-of-type(2) h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}
.wishas div:nth-of-type(3) ul li div:nth-of-type(2) p:nth-of-type(1) {
    font-size: 0.7rem;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.4;
}
.wishas div:nth-of-type(3) ul li div:nth-of-type(2) p:nth-of-type(2) {
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: var(--dark);
}

/* Pagination */
.wishas div:nth-of-type(3) .button-grup {
    margin: 1.2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    border: 1px solid var(--gold-light);
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
}
.wishas div:nth-of-type(3) .button-grup > span {
    background-color: var(--gold-light);
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.wishas div:nth-of-type(3) .button-grup button {
    padding: 0.4rem 0.8rem;
    border: none;
    background: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    transition: var(--transition);
}
.wishas div:nth-of-type(3) .button-grup button:hover { background-color: var(--gold-light); }

/* =============================================
   FOOTER
   ============================================= */
footer {
    width: 100%;
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(160deg, #0d2b1a 0%, #1a4a2e 100%);
    color: var(--accent-light);
}
footer p {
    font-size: 0.9rem;
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto;
}
footer h2 {
    font-size: 2rem;
    font-family: var(--sacramento);
    font-weight: 400;
    margin-top: 1rem;
    color: var(--accent-light);
}
footer h4 {
    font-size: 1.4rem;
    font-family: var(--arabic);
    font-weight: 400;
    margin-top: 0.5rem;
    color: var(--accent);
}
footer > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(46,139,87,0.3);
    margin-top: 1.5rem;
    padding-top: 0.8rem;
}
footer > div p { font-size: 0.65rem; color: var(--accent-light); opacity: 0.6; }

/* =============================================
   RESPONSIVE — Mobile kecil (≤ 480px)
   ============================================= */
@media screen and (max-width: 480px) {
    header nav { display: flex; }

    .welcome h2     { font-size: 1.8rem; }
    .welcome figure img { width: 7rem; height: 7rem; }
    .welcome figure figcaption { font-size: 2rem; }
    .welcome p span { font-size: 1.4rem; }

    .home { padding: 2rem 1.2rem 7rem; }
    .home h2 { font-size: 1.6rem; }
    .home figure img { width: 7.5rem; height: 7.5rem; }
    .home figure figcaption { font-size: 2.2rem; }
    .home .home-time { gap: 0.5rem; }
    .home .home-time div { width: 3rem; height: 3rem; }

    .bride { padding: 4rem 1.2rem 3rem; }
    .bride h2 { font-size: 1.1rem; }
    .bride h3 { font-size: 1.6rem; }
    .bride_couple li figure img { width: 8rem; height: 8rem; }
    .bride_couple li figure figcaption { font-size: 1.6rem; }
    .bride_couple span { font-size: 2.4rem; }

    .hadist { padding: 3rem 1.2rem; }
    .hadist h2 { font-size: 1.6rem; }
    .hadist p  { font-size: 0.85rem; }

    .time { padding: 4rem 1.2rem 4rem; }
    .time h2 { font-size: 1.8rem; }
    .time div:nth-of-type(1) {
        flex-direction: column;
        align-items: center;
    }
    .time div:nth-of-type(1) > div {
        width: 100%;
        max-width: 100%;
        padding: 1.2rem;
    }
    .time div:nth-of-type(1) div h3 { font-size: 1.6rem; }

    .wishas { padding: 4rem 1.2rem 4rem; }
    .wishas h2 { font-size: 1.8rem; }
    .wishas div:nth-of-type(1) > div {
        flex-direction: column;
        align-items: center;
    }
    .wishas div:nth-of-type(1) > div figure {
        width: 100%;
        max-width: 100%;
    }

    .audio button { bottom: 5rem; right: 0.6rem; }

    footer { padding: 2.5rem 1.2rem 2rem; }
    footer p  { font-size: 0.82rem; }
    footer h2 { font-size: 1.6rem; }
    footer h4 { font-size: 1.1rem; }
}

/* =============================================
   RESPONSIVE — Mobile / Tablet (≤ 768px)
   ============================================= */
@media screen and (min-width: 481px) and (max-width: 768px) {
    header nav { display: flex; }

    .home { padding: 2rem 2rem 7rem; }

    .bride, .time, .wishas, .hadist {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .bride h2 { font-size: 1.3rem; }
    .bride h3 { font-size: 1.8rem; }
    .hadist h2, .time h2, .wishas h2 { font-size: 2rem; }

    .time div:nth-of-type(1) {
        flex-direction: column;
        align-items: center;
    }
    .time div:nth-of-type(1) > div {
        width: 100%;
        max-width: 400px;
    }

    .wishas div:nth-of-type(1) > div {
        flex-direction: column;
        align-items: center;
    }
    .wishas div:nth-of-type(1) > div figure {
        width: 100%;
        max-width: 380px;
    }

    .audio button { bottom: 5rem; right: 0.8rem; }

    footer { padding: 3rem 2rem 2.5rem; }
    footer h2 { font-size: 1.8rem; }
}

/* =============================================
   RESPONSIVE — Desktop (≥ 769px)
   Layout navbar disembunyikan (bawah layar)
   ============================================= */
@media screen and (min-width: 769px) {
    header nav { display: none !important; }

    .home { padding: 2rem 4rem 4rem; }

    .bride, .time, .hadist { padding: 5rem 6rem; }

    .wishas { padding: 5rem 6rem; }

    .bride_couple ul {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }

    .time div:nth-of-type(1) {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    .time div:nth-of-type(1) > div {
        flex: 1;
        max-width: 320px;
    }

    .wishas div:nth-of-type(2) > form {
        max-width: 600px;
    }
    .wishas div:nth-of-type(3) ul {
        max-width: 600px;
    }
}

/* =============================================
   RESPONSIVE — Desktop Lebar (≥ 1200px)
   ============================================= */
@media screen and (min-width: 1200px) {
    .bride, .time, .hadist { padding: 6rem 10rem; }
    .wishas { padding: 6rem 10rem; }
    .home   { padding: 2rem 8rem 4rem; }

    .welcome figure img { width: 11rem; height: 11rem; }
    .welcome h2         { font-size: 2.8rem; }
    .welcome figure figcaption { font-size: 3rem; }

    .home figure img   { width: 11rem; height: 11rem; }
    .home figure figcaption { font-size: 3.2rem; }

    .bride_couple li figure img { width: 13rem; height: 13rem; }

    .time div:nth-of-type(1) > div { padding: 2rem 3rem; }
    .time div:nth-of-type(1) div h3 { font-size: 2.4rem; }

    .wishas div:nth-of-type(2) > form { max-width: 700px; }
    .wishas div:nth-of-type(3) ul     { max-width: 700px; }

    footer { padding: 5rem 10rem 4rem; }
}

