/* General body styles */
body {
    font-family: 'Open Sans', sans-serif;
    background: url('background.png') no-repeat center center fixed, linear-gradient(to bottom right, #fefefe, #f8f5f0);
    background-size: cover;
    background-blend-mode: overlay;
    color: #3a3a3a;
    margin: 0;
    padding: 0;
}


/* Main container box */
.container {
    max-width: 550px;
    margin: 50px auto;
    padding: 30px 20px;
    background: #ffffffcc; /* Slightly transparent white for soft background */
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

/* Headings */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4em;
    margin-bottom: 0.4em;
    color: #2f2f2f;
}

.subtitle {
    color: #777;
    font-size: 1.15em;
    margin-bottom: 1.8em;
}

/* Form styling */
.form .input {
    width: 85%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    font-size: 1em;
    background: #fcfcfc;
}

/* Primary button */
.button {
    background: #e5c07b;
    color: #2c2c2c;
    padding: 12px 26px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.button:hover {
    background: #d4ae67;
}

/* Secondary buttons (register/login) */
.button.secondary {
    background: #f0f0f0;
    color: #333;
    padding: 12px 26px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: 8px;
}

.button.secondary:hover {
    background: #e0e0e0;
}

/* Message box for errors */
.message {
    margin-bottom: 1.4em;
    padding: 12px;
    background-color: #fff3f3;
    border: 1px solid #ffdddd;
    color: #d32f2f;
    border-radius: 10px;
}

/* Footer */
footer {
    margin-top: 2.5em;
    font-size: 0.85em;
    color: #aaa;
}

/* Private wedding / admin link box */
.private-wedding, .create-account, .explanation {
    margin-top: 40px;
    text-align: center;
}

.private-wedding p, .create-account p, .explanation p {
    margin-bottom: 10px;
    font-size: 1em;
}

/* Admin private stream button */
.private-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 26px;
    background-color: #e5c07b;
    color: #2c2c2c;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.private-button:hover {
    background-color: #d4ae67;
}

/* List styles for explanation */
.explanation ul {
    list-style: none;
    padding-left: 0;
}

.explanation ul li {
    margin: 8px 0;
    padding-left: 28px;
    position: relative;
    text-align: left;
    font-size: 0.95em;
}

.explanation ul li::before {
    content: "💍";
    position: absolute;
    left: 0;
    top: 0;
}

/* Stream item box */
.stream-item {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Stream action buttons */
.stream-actions a {
    margin-right: 8px;
}
