﻿
.hero-root {
    max-width: 980px;
    margin: 2.5rem auto;
    padding: 0 1rem 0 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-header {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
}

div {
    text-align: center;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2rem;
}
h1,h2,h3 {
    font-family: 'Tangerine', 'Georgia', serif;    
    line-height: 1;
    font-weight: 700;
    font-style: normal;
    margin: auto;
    margin-bottom: 1rem;   
}

.hr-left-bold {
    border: 2px solid;
    color: white;
    border-radius: 1px;
    opacity: 1.0;
}

html, body {    
    background-repeat: repeat;
    background-position: top left;
    background-color: var(--bg);
}

/* Heart floating effect */
.heart {
    position: fixed;
    pointer-events: none;
    font-size: 22px;
    line-height: 1;
    color: white;
    text-shadow: 0 1px 0 rgba(0,0,0,0.05);
    transform: translate(-50%,-50%);
    animation: heartFloat 2200ms ease-out forwards;
    z-index: 9999
}


.picture {
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    cursor: pointer;
    position: relative;
    z-index: 3;
    margin: 0px;
}


.image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
}

.image-container img {
    position: absolute;
    width: 200px;
    height: auto;
    top: 0;
}

.image-container-left img {
    right: 10px;
    transform-origin: 100% 0;
    transform: rotate(-90deg) translateY(-100%);
}

.image-container-right img {
    left: 10px;
    transform-origin: 0 0;
    transform: rotate(90deg) translateY(-100%);
}


/* Login */
.login-root {
    max-width: 640px;
    margin: 3.5rem auto;
    padding: 1rem;
    position: relative;
    background-color: var(--bg)
}
/*.login-root::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(2px);
    z-index: 0
}*/
.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2
}
.wedding-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    margin-top: 2rem;
    color: white
}

.login-box {
    background: #f4eddc;
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    margin-top: 1rem;
    text-align: center;
    position: relative;
    z-index: 2
}
.login-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    flex-direction: column
}

.login-input {
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    border: 1px solid #e6e0db;
    width: 60%;
    font-size: 1rem;
}

.login-button {
    background: var(--accent);
    color: #000000;
    border: none;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
}

.login-button:active {
    transform: translateY(1px);
    font-size: 2.7rem;
}

.login-error {
    color: #b00020;
    margin-top: 0.5rem
}

/*.site-title {
    font-family: 'Tangerine', 'Georgia', serif;
    font-size: 2.25rem;
    line-height: 1;
}*/

/*.center {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}
*/
/*.tangerine-regular {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
}
*/
/*.tangerine-bold {
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-style: normal;
}*/

/* Header responsive layout */
.header-bottom-img {
    display: none;
}

@media (max-width: 768px) {
    .header-side-img {
        display: none;
    }

    .header-bottom-img {
        display: block;
        margin-top: 0.5rem;
    }
}
