body {
  font-family: Arial, sans-serif;
  background: url('assets/hero-bg.jpg') center center/cover no-repeat fixed;
  margin: 0; padding: 0;
}
.rsvp-container {
  max-width: 430px;
  margin: 32px auto;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px #0003;
  padding: 28px 32px;
}
.logo { width: 120px; margin: 0 auto 12px; display: block;}
input[type=text], input[type=email], select {
  width: 100%; padding: 8px; margin-bottom: 16px;
  border: 1px solid #bbb; border-radius: 6px;
}
button[type=submit], button {
  background: #635bff; color: #fff; border: none;
  border-radius: 6px; padding: 11px 0; width: 100%;
  font-size: 18px; font-weight: bold; cursor: pointer; margin-top: 10px;
}
label { display:block; margin-bottom:4px; margin-top:8px;}
.modal {display:none;position:fixed;z-index:10;left:0;top:0;width:100%;height:100%;overflow:auto;background:rgba(0,0,0,0.3);}
.modal-content{background:#fff;margin:10% auto;padding:20px;border-radius:12px;max-width:420px;}
.close{float:right;font-size:28px;cursor:pointer;}
@media (max-width: 600px) {
  .rsvp-container { max-width: 98vw; padding: 12px;}
  .logo { width: 80px;}
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: url('assets/hero-bg.jpg') center center/cover no-repeat fixed;
  margin: 0; padding: 0;
  min-height: 100vh;
}
.rsvp-container {
  max-width: 460px;
  margin: 40px auto;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 6px 28px #0002;
  padding: 34px 36px 26px 36px;
  position: relative;
  z-index: 1;
}
.logo {
  width: 120px; margin: 0 auto 12px; display: block;
}
input[type=text], input[type=email], select,
input[type=number] {
  width: 100%; padding: 9px; margin-bottom: 14px;
  border: 1px solid #bbb; border-radius: 7px;
  font-size: 15px;
}
button[type=submit], button {
  background: #635bff;
  color: #fff; border: none;
  border-radius: 8px; padding: 13px 0; width: 100%;
  font-size: 19px; font-weight: 600; cursor: pointer; margin-top: 14px;
  transition: background 0.2s;
}
button[type=submit]:hover {
  background: #5146d8;
}
label { display:block; margin-bottom:5px; margin-top:10px; font-weight:500; color:#333;}
.checkbox-group {margin-bottom:12px;}
.checkbox-list { display: flex; flex-direction: column; gap: 6px; margin-left:10px;}
.custom-checkbox {
  display: flex; align-items: center; gap: 8px; margin-bottom:0; font-size: 15px;
}
.custom-checkbox input[type=checkbox] {
  accent-color: #635bff; width: 17px; height: 17px; margin-right:7px;
}
.inline-fields {
  display: flex; gap: 10px; margin-bottom: 12px;
}
.cost-summary {color:#29235c; font-weight:bold;}
.privacy-row {margin:10px 0;}
.privacy-row a {color: #635bff; text-decoration: underline;}
/* Modal Styles */
.modal {display:none;position:fixed;z-index:10;left:0;top:0;width:100%;height:100%;overflow:auto;background:rgba(0,0,0,0.3);}
.modal-content {
  background:#fff;margin:8% auto;padding:0 0 12px 0;border-radius:13px;
  max-width:450px; position:relative; box-shadow:0 4px 24px #0003;
  display:flex; flex-direction:column; outline: none;
}
.close{
  float:right;font-size:28px;cursor:pointer;font-weight:bold;padding: 13px 18px 0 0; color:#635bff;
}
.modal-content h3 {margin:16px 0 10px 0; text-align:center;}
.modal-scroll {
  max-height: 270px;
  overflow-y: auto;
  padding: 0 24px 8px 24px;
  font-size: 15px;
  color: #29235c;
}

/* Responsive adjustments */
@media (max-width: 650px) {
  .rsvp-container { max-width:98vw; padding:10px;}
  .logo { width:90px;}
  .modal-content {max-width:96vw;}
}
/* Add/replace in style.css for modern modal with scroller */
.modal {
    display: none; position: fixed; z-index: 999; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto; background: rgba(0,0,0,0.4);
}
.modal-content {
    background: #fff; margin: 5% auto; padding: 1.5rem; border-radius: 16px;
    max-width: 430px; box-shadow: 0 8px 32px rgba(60,60,120,0.12);
    position: relative;
}
.close {
    color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer;
    position: absolute; right: 22px; top: 8px;
}
.close:hover { color: #111; }
.modal-scroll {
    max-height: 320px; overflow-y: auto; margin-top: 1rem; padding-right: 10px;
}
.policy-label {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
@media (max-width: 600px) {
    .modal-content { width: 97vw; padding: 1rem;}
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.75)), url('assets/hero-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255,255,255,0.96);
    max-width: 440px;
    margin: 3rem auto;
    border-radius: 22px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.17);
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.7s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to   { opacity: 1; transform: translateY(0);}
}

.logo {
    width: 120px;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

h1 {
    font-size: 1.7rem;
    text-align: center;
    color: #492c5c;
    margin-bottom: 2rem;
    margin-top: 0;
    font-weight: 600;
}

label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.33rem;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fafaff;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border-color 0.18s;
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: #803B94;
    outline: none;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.98rem;
    color: #492c5c;
    margin-bottom: 0.45rem;
}
.checkbox-group input[type="checkbox"] {
    accent-color: #803B94;
}

.policy-label {
    margin-top: 1.1rem;
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}

a {
    color: #4a19a3;
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    background: linear-gradient(90deg, #803B94 30%, #FFB347 100%);
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.13rem;
    box-shadow: 0 3px 14px rgba(128,59,148,0.07);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 0.6rem;
}
.btn-primary:hover {
    background: linear-gradient(90deg, #6d258a 30%, #fc8a11 100%);
    box-shadow: 0 7px 20px rgba(128,59,148,0.13);
}

.modal {
    /* (Same as before for modal, keep this part) */
}
