/* HEADER */
.site-header {
    background: #ffffff; /* clean wedding-white */
    padding: 20px 40px;
    border-bottom: 1px solid #f2e8f7; /* soft pinkish-gold divider */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* keep items left-aligned */
    gap: 40px; /* spacing between logo and nav */
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-magenta); /* still works with white */
    letter-spacing: 1px;
}

.logo img {
    height: 150px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #d100a8;
    border-radius: 3px;
    transition: 0.3s ease;
}
