/*
Theme Name: Wedding Landing
Version: 1.0
*/

/* Базові налаштування */
body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', Georgia, serif;
    color: #3d2154;
    line-height: 1.8;
    background-color: #faf8f3;
}

html {
    scroll-behavior: smooth;
}

/* Заголовки в стилі Playfair Display */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #3d2154;
    font-weight: 600;
    letter-spacing: 1px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

h3 {
    font-size: 32px;
    font-weight: 600;
}

p, a, span, button {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Шапка сайту */
.site-header {
    background: #faf8f3;
    padding: 15px 0;
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Лого зліва, меню справа */
    align-items: center;
    padding: 0 20px;
}

/* Налаштування логотипа */
.site-logo {
    max-height: 50px; /* Регулюй висоту за потреби */
    width: auto;
    display: block;
}

/* Налаштування меню */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #3d2154;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase; /* Заголовки меню великими літерами */
    letter-spacing: 2px;
    font-family: 'Playfair Display', Georgia, serif;
}

.nav-menu a:hover {
    color: #d4af37; /* Золотистий колір при наведенні */
}

/* Контент */
#main-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 80vh;
}

/* Глобальні правила для всіх елементів */
* {
    font-family: 'Playfair Display', Georgia, serif !important;
}

footer {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: #3d2154 !important;
    background-color: #faf8f3 !important;
    border-top: 2px solid #d4af37 !important;
    padding: 30px 0 !important;
    text-align: center !important;
}

footer p {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: #3d2154 !important;
}

/* Адаптивність */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}