* {
box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Georgia", serif;
    background: #f8f7f3;
    color: #3a3a3a;
}

/* ---------------- KEPEK ---------------- */
.corner {
    position: absolute;
    width: 600px;
    opacity: 0.6;
}

.corner.left {
    top: 0px;

    left: 0px;
}

.corner.right {
    bottom: 0px;
    right: 0px;
    transform: rotate(180deg);
}

/* -------- HAMBURGER -------- */
header {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.hamburger {
    width: 32px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #6b7b4a;
    margin: 7px 0;
    transition: 0.4s;
}

/* animált X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* -------- OLDALMENÜ -------- */
.side-menu {
    position: fixed;
    top: 20px;
    right: -280px;
    width: 260px;
    height: calc(100% - 40px);
    background: #ffffff;
    padding: 100px 30px;
    text-align: left;
    transition: right 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1000;

    border-radius: 40px 0 0 40px; /* ÍVES SZÉL */
    box-shadow: -10px 0 30px rgba(0,0,0,0.12);
}

.side-menu a {
    display: block;
    text-decoration: none;
    color: #3a3a3a;
    font-size: 17px;
    letter-spacing: 1.5px;
    margin: 30px 0;
    position: relative;
}


.side-menu a:hover {
    color: #6b7b4a;
}

.side-menu.open {
    right: 0;
}

/* -------- OVERLAY -------- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 999;
}

.overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* -------- TARTALOM -------- */
.hero, .content {
    text-align: center;
    padding: 140px 20px 80px;
}

h1 {
    font-weight: normal;
    letter-spacing: 2px;
}

.names {
    font-size: 32px;
    margin: 20px 0;
}

.invite, .details, p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 20px auto;
}

/* -------- OLAJÁG -------- */
.olive {
    width: 120px;
    height: 40px;
    margin: 0 auto 30px;
    background: url("https://upload.wikimedia.org/wikipedia/commons/5/5a/Olive_branch.png")
    center / contain no-repeat;
}

.olive.small {
    width: 80px;
}

/* -------- MOBIL FINOMÍTÁS -------- */
@media (max-width: 600px) {
    .names {
        font-size: 26px;
    }

    h1 {
        font-size: 22px;
    }

    .invite, .details, p {
        font-size: 16px;
    }
}
