/* Գլխավոր ոճ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Varela Round', sans-serif;
    background-color: #f5f5f5;
    color: #444;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #6b3e3e;
    text-align: center;
}

.invitation-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background-image: url('https://img.freepik.com/premium-photo/luxury-wedding-concept-wedding-rings-flowers_23-2148652001.jpg?semt=ais_hybrid');
    background-size: cover;
    background-position: center;
    height: 400px;
    color:#6b3e3e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content h2 {
    font-size: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Հրավեր */
.invitation-details {
    background-color: #f1e6e6;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;

}

.invitation-info h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Զույգի Նկար */
.couple-photo {
    text-align: center;
    margin-top: 40px;
}

.couple-photo img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #6b3e3e;
}

.couple-photo h4 {
    font-size: 1.8rem;
    color: #6b3e3e;
    margin-top: 20px;
}

/* Ժամեր */
.schedule {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.schedule-item {
    margin: 0 30px;
    text-align: center;
}

.schedule-item h4 {
    font-size: 1.6rem;
    color: #6b3e3e;
}

.schedule-item p {
    font-size: 1.2rem;
}

/* Քարտեզներ */
/* .location {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    flex-wrap: wrap;
}

.location h4 {
    font-size: 1.5rem;
    color: #6b3e3e;
}

#church-map, #restaurant-map {
    height: 300px;
    width: 100%;
    margin-top: 20px;
} */

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-time {
    text-align: center;
    font-size: 1.2rem;
    color: #6b3e3e;
    margin-top: 10px;
}

/* Թայմեր */
.countdown {
    margin-top: 40px;
    text-align: center;
}

#timer {
    font-size: 2rem;
    font-weight: bold;
    color: #6b3e3e;
}

/* Հարցաթերթիկ */
.questionnaire {
    background-color: #f1e6e6;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 1rem;
    border: 1px solid #ddd;
}

input[type="radio"] {
    margin: 10px;
}

input[type="submit"] {
    background-color: #6b3e3e;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #9b5b5b;
}

/* Մեդիա */
.media video {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
}

audio {
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .location {
        flex-direction: column;
    }

    .location-img {
        width: 80%;
        height: auto;
        margin-top: 20px;
    }
}
