body {
margin: 0;
padding: 0;
background-color: #5b5fd6;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
}

/* ---------- SITE HEADER ---------- */

.site-header {
padding: 1rem;
text-align: center;
}

/* ---------- TOP NAV (DESKTOP DEFAULT) ---------- */

.top-nav {
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: 1rem;
margin-bottom: 1.5rem;
position: relative;
background: linear-gradient(
    180deg,
    #d6d6d6 0%,
    #9e9e9e 40%,
    #6f6f6f 60%,
    #bfbfbf 100%
);
padding: 1rem 0;
border-top: 6px solid #444;
border-bottom: 6px solid #444;
box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.6),
    inset 0 -2px 4px rgba(0,0,0,0.6);
}

.top-nav a {
color: #000;
text-decoration: none;
font-weight: bold;
font-family: 'Black Ops One', Arial, sans-serif;
font-size: 1.1rem;
letter-spacing: 1px;
transition: 0.2s ease;
}

.top-nav a:hover {
color: rgb(240, 27, 151);
}

.logo {
max-width: 170px;
height: auto;
filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
}

/* ---------- BRAND HEADER ---------- */

.brand-header {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 1rem;
}

.brand-header-image {
height: 220px;
max-width: 95%;
}

/* ---------- HEADINGS ---------- */

h2 {
font-family: 'Black Ops One', Arial, sans-serif;
color: #000;
letter-spacing: 2px;
}

.section-title {
font-family: 'Black Ops One', Arial, sans-serif;
font-size: 2rem;
text-align: center;
margin: 2rem 0 1.5rem;
}

/* ✅ RESTORE CENTERED EVENT CONTAINER */
.event-info {
max-width: 1200px;
margin: 0 auto 3rem;
padding: 0 1rem;
text-align: center;
}

/* ✅ Force date + location centered */
.date-title {
text-align: center;
margin-left: auto;
margin-right: auto;
}

/* ---------- AUTH FORM ---------- */

#auth-section {
text-align: center;
margin-bottom: 2.5rem;
}

.auth-box {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.8rem;
margin-top: 1.2rem;
}

.auth-box input[type="text"],
.auth-box input[type="email"] {
width: 320px;
max-width: 90%;
padding: 0.75rem;
border-radius: 8px;
border: none;
font-size: 1rem;
}

.email-note {
font-size: 0.85rem;
opacity: 0.85;
margin-top: -4px;
margin-bottom: 4px;
}

#sendLink {
width: 320px;
max-width: 90%;
padding: 0.75rem;
border-radius: 8px;
border: none;
background-color: #ffef00;
color: #000;
font-weight: bold;
cursor: pointer;
transition: 0.2s ease;
}

#sendLink:hover {
background-color: #ffe000;
}

/* ---------- SLOT LAYOUT (DESKTOP) ---------- */

.slot-row {
display: flex;
gap: 34px;
align-items: flex-start;
margin-top: 1.3rem;
}

.slot-time {
flex: 0 0 210px;
font-weight: bold;
}

.slot-col:first-of-type {
flex: 0 0 260px;
}

.slot-col:last-of-type {
flex: 1;
}

.slot-col {
display: flex;
flex-direction: column;
}

.slot-col textarea {
width: 100%;
padding: 1rem 1.1rem;
border-radius: 10px;
border: 2px solid rgba(0,0,0,0.25);
background-color: #f2f2f2;
font-size: 1rem;
resize: vertical;
min-height: 75px;
box-sizing: border-box;
box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* ---------- MARKETING CHECKBOX ---------- */

.marketing-check {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
margin-top: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
}

.marketing-check input[type="checkbox"] {
width: 22px;
height: 22px;
margin: 0;
cursor: pointer;
}

/* ===================================================== */
/* ✅ MOBILE RESPONSIVE */
/* ===================================================== */

@media (max-width: 900px) {

.top-nav {
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;
}

.top-nav .logo {
max-width: 140px;
}

.top-nav a {
font-size: 1rem;
margin: 3px 0;
}

.slot-row {
display: block;
margin-top: 0.5rem;
}

.slot-row + .slot-row {
margin-top: 0.75rem;
}

.slot-time {
width: 100%;
font-size: 1rem;
padding: 10px 14px;
margin-bottom: 6px;
}

.slot-col {
width: 100%;
margin: 0 0 6px 0;
}

.slot-col textarea {
width: 100%;
min-height: 55px;
padding: 0.6rem 0.8rem;
margin: 0;
}

}

/* ---------- WATERMARK ---------- */

body::before {
content: "";
position: fixed;
inset: 0;
background-image: url("images/watermark.png");
background-repeat: no-repeat;
background-position: center 60%;
background-size: 130%;
opacity: 0.12;
pointer-events: none;
z-index: 0;
}

body.home::before {
display: none;
}

body > * {
position: relative;
z-index: 1;
}