* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif Armenian', serif;
    background-color: #fdfbf7;
    color: #2d4a43;
}



/* Hero Section-ի կառուցվածքը */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: url('../images/heroBackdrop.png') repeat center center / cover fixed;
}

/* Բովանդակության կոնտեյներ անիմացիայով */
.hero-content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: center;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-out forwards;
}

/* Տերևի պատկերակ */
.leaf-icon {
    color: #4a736a;
    margin-bottom: 24px;
}

/* Փոքր հրավեր տեքստ */
.welcome-text {
    font-size: calc(7px + 0.5vw);
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(107, 142, 131, 1);
    letter-spacing: 0.3em;
    color: #6b8e83;
    margin-bottom: 16px;
    font-weight: 300;
}

/* Զույգի անունները */
.couple-names {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 16px 0;
    color: #1e3530;
    text-shadow: 2px 2px 4px rgba(107, 142, 131, 0.5);
}

.couple-names span {
    color: #6b8e83;
}

/* Բաժանարար գիծ */
.divider {
    width: 60px;
    height: 1px;
    background-color: rgba(107, 142, 131, 0.4);
    margin: 24px 0;
}

/* Ամսաթիվ */
.wedding-date {
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 300;
    color: #2d4a43;
    margin-bottom: 40px;
}

/* Մեղմ տեքստ/մեջբերում */
.hero-quote {
    font-size: calc(12px + 0.5vw);
    opacity: 0.9;
    font-style: italic;
    color: #6b8e83;
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 48px;
}

/* Սլաք դեպի ներքև */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    color: rgba(107, 142, 131, 0.7);
    animation: bounce 2s infinite;
}

/* Մեդիա հարցումներ մեծ էկրանների համար */
@media (min-width: 768px) {
    .couple-names {
        font-size: 4.5rem;
    }

    .wedding-date {
        font-size: 1.8rem;
    }
}

/* Անիմացիաներ */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Details Section-ի սթայլեր */
.details-section {
    background-color: #f7f4ee;
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    color: #1e3530;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.title-divider {
    width: 40px;
    height: 1px;
    background-color: #6b8e83;
    margin: 0 auto 16px auto;
}

.section-subtitle {
    font-size: 14px;
    color: #6b8e83;
    font-style: italic;
    margin-bottom: 60px;
}

/* Ժամանակացույցի դասավորություն */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.timeline-item {
    background-color: #fdfbf7;
    border: 1px solid rgba(107, 142, 131, 0.15);
    border-radius: 4px;
    padding: 35px 25px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(45, 74, 67, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-icon {
    color: #4a736a;
    margin-bottom: 16px;
    background-color: rgba(107, 142, 131, 0.07);
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
}

.item-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #1e3530;
    margin-bottom: 8px;
}

.item-time {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a736a;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.item-location {
    font-size: 14px;
    color: #2d4a43;
    margin-bottom: 4px;
}

.item-city {
    font-size: 12px;
    color: #6b8e83;
    margin-bottom: 20px;
}

/* Քարտեզի կոճակը */
.map-button {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a736a;
    text-decoration: none;
    border-bottom: 1px solid #4a736a;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.map-button:hover {
    color: #1e3530;
    border-color: #1e3530;
}

/* Մեծ էկրանների համար՝ 4 քարտերը կողք-կողք դասավորելու համար Grid */
@media (min-width: 992px) {
    .timeline {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .timeline-item {
        max-width: none;
        padding: 30px 15px;
    }

    .section-title {
        font-size: 2.4rem;
    }
}


/* Countdown Section-ի սթայլեր */
.countdown-section {
    padding: 100px 20px;
    text-align: center;
    background: url(../images/decorImg.png) no-repeat center center / cover fixed;

}

.countdown-container {
    max-width: 600px;
    margin: 0 auto;
}

.countdown-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1e3530;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.countdown-divider {
    width: 30px;
    height: 1px;
    background-color: #6b8e83;
    margin: 0 auto 40px auto;
}

/* Ժամացույցի բլոկների դասավորությունը */
.timer-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-box {
    background-color: #f7f4ee;
    /* Թեթև կոնտրաստային ֆոն թվերի համար */
    border: 1px solid rgba(107, 142, 131, 0.1);
    border-radius: 4px;
    width: 75px;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(45, 74, 67, 0.01);
}

.timer-number {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2d4a43;
    margin-bottom: 4px;
}

.timer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b8e83;
}

/* Մեծ էկրանների համար չափսերը մի քիչ մեծացնում ենք */
@media (min-width: 480px) {
    .timer-grid {
        gap: 25px;
    }

    .timer-box {
        width: 90px;
        padding: 20px 0;
    }

    .timer-number {
        font-size: 2.2rem;
    }

    .countdown-title {
        font-size: 2.2rem;
    }
}


/* RSVP Section-ի սթայլեր */
.rsvp-section {
    background-color: #f7f4ee;
    padding: 100px 20px;
    text-align: center;
}

.rsvp-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fdfbf7;
    border: 1px solid rgba(107, 142, 131, 0.15);
    border-radius: 4px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(45, 74, 67, 0.03);
}

.rsvp-title {
    font-size: 2rem;
    font-weight: 400;
    color: #1e3530;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.rsvp-divider {
    width: 40px;
    height: 1px;
    background-color: #6b8e83;
    margin: 0 auto 16px auto;
}

.rsvp-subtitle {
    font-size: 13px;
    color: #6b8e83;
    font-style: italic;
    margin-bottom: 40px;
}

/* Ֆորմայի էլեմենտներ */
.rsvp-form {
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    color: #2d4a43;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(107, 142, 131, 0.3);
    background-color: #fdfbf7;
    border-radius: 4px;
    font-family: 'Noto Serif Armenian', serif;
    font-size: 14px;
    color: #1e3530;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #4a736a;
}

.form-textarea {
    height: 100px;
    resize: none;
}

/* Radio կոճակներ */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2d4a43;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: #4a736a;
    /* Կանաչ գույն նշման կետի համար */
    width: 16px;
    height: 16px;
}

/* Կոճակ */
.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #4a736a;
    color: #fdfbf7;
    border: none;
    border-radius: 4px;
    font-family: 'Noto Serif Armenian', serif;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2d4a43;
}

/* Հաջողության տեքստ */
.success-message {
    font-size: 16px;
    color: #4a736a;
    padding: 20px 0;
    font-weight: 400;
}


/* Footer-ի սթայլեր */
.wedding-footer {
    background-color: #fdfbf7;
    /* Վերադառնում ենք հիմնական բաց կաթնագույնին */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(107, 142, 131, 0.1);
}

.footer-container {
    max-width: 400px;
    margin: 0 auto;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #1e3530;
    letter-spacing: 2px;
    font-style: italic;
    margin-bottom: 16px;
}

.footer-icon {
    color: #6b8e83;
    margin-bottom: 16px;
    opacity: 0.6;
}

.footer-subtext {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6b8e83;
}