/*
Theme Name: Brett & Beth Wedding Theme 2026
Author: Bethany Fowler  
Author URI: https://bethanyfowler.me/
Description: Theme for Luffman Wedding
Version: 1.0.0
Text Domain: buildnbloom
*/

:root {
  --mauve: #724264;
}

.bacasime-antique-regular {
    font-family: "Bacasime Antique", roboto;
    font-weight: 400;
    font-style: normal;
}
.montez-regular {
    font-family: "Montez", cursive;
    font-weight: 400;
    font-style: normal;
}
.passions-conflict-regular {
    font-family: "Passions Conflict", cursive;
    font-weight: 400;
    font-style: normal;
}
.mr-bedfort-regular {
    font-family: "Mr Bedfort", cursive;
    font-weight: 400;
    font-style: normal;
}
.lavishly-yours-regular {
    font-family: "Lavishly Yours", cursive;
    font-weight: 400;
    font-style: normal;
}
.windsong-regular {
    font-family: "WindSong", roboto;
    font-weight: 400;
    font-style: normal;
}
.windsong-medium {
    font-family: "WindSong", cursive;
    font-weight: 500;
    font-style: normal;
}

.inria-serif-light {
    font-family: "Inria Serif", roboto;
    font-weight: 300;
    font-style: normal;
}

.inria-serif-regular {
    font-family: "Inria Serif", roboto;
    font-weight: 400;
    font-style: normal;
}

.inria-serif-bold {
    font-family: "Inria Serif", roboto;
    font-weight: 700;
    font-style: normal;
}

.inria-serif-light-italic {
    font-family: "Inria Serif", roboto;
    font-weight: 300;
    font-style: italic;
}

.inria-serif-regular-italic {
    font-family: "Inria Serif", roboto;
    font-weight: 400;
    font-style: italic;
}

.inria-serif-bold-italic {
    font-family: "Inria Serif", roboto;
    font-weight: 700;
    font-style: italic;
}
  
  
body {
    background-color: white;
    margin: 0px;
    color: var(--mauve);
    background-image: url("./assets/border.png");
    background-position: bottom;
    background-attachment: fixed;
    background-size: contain;
    background-repeat: no-repeat;
}
a {
    color: var(--mauve);
    font-weight: bold;
}
.wreath-header {
    text-align: center;
    position: relative;
}
.wreath {
    width: 25rem;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header-img {
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 1rem;
}
.header-txt {
    font-size: 5rem;
}
/* .header-hero {
    background-image: url("./assets/header.jpg");
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
} */

/* .header-text {
    font-size: 5rem;
    color: white;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
} */

.text-header {
    font-family: "Lavishly Yours", cursive;
    font-size: 2.5rem;
}

.text-content {
    padding: 1rem;
    text-align: center;
    max-width: 1000px;
    margin: auto;
    background-color: rgba(255,255,255,0.6);
}
.form-container {
    padding: 1rem;
    text-align: left;
    max-width: 600px;
    margin: auto;
    background-color: rgba(255,255,255,0.6);
}
.form-container .form-input {
    margin-bottom: 2rem;
}

.form-container input[type=text], .form-container input[type=number], .form-container textarea {
    width: -webkit-fill-available;
    font-size: 1rem;
    padding: .5rem;
    border-radius: .2rem;
    border: 1px solid var(--mauve);
    margin-top: .2rem;
    margin-bottom: .2rem;
}

.invited-text {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: "Passions Conflict", cursive;
    font-weight: 400;
    font-style: normal;
}

.invite-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.main-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.rsvp-btn {
    font-weight: bold;
    text-decoration: none;
}

.inline-image {
    height: 35vh;
    width: 100%;
    object-fit: cover;
}
@media only screen and (min-width: 500px) {
  .inline-image {
        width: 48%;
        display: inline-block;
        height: 45vh;
    }
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.modal-text {
    margin-bottom: 1rem;
}
.love-brett-beth {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: "Lavishly Yours", cursive;
}
.yes-response, .no-response {
    display: none;
}

.btn {
    padding: .5rem;
    border: 2px solid var(--mauve);
    background-color: white;
    color: var(--mauve);
    display: block;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--mauve);
    color: white;
}
.btn.disabled, .btn.disabled:hover {
    border-color: #ccc;
    color: #ccc;
    cursor: auto;
    background-color: white;
}

.text-center {
    text-align: center;
}

.loading-background {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    display: none;
}

.loading-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6C4D5F;
    position: fixed;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.background-fade {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    position: fixed;
    height: 100%;
    z-index: -1;
}

/* RESULTS */
.results {
    width: 100%;
    display: inline-block;
}
.yes-results, .no-results {
    width: 49%;
    display: inline-block;
    text-align: center;
}
.title {
    font-size: 5rem;
}
.result-num {
    font-size: 3rem;
    font-weight: bold;
}
.table-list {
    width: 80%;
    margin: auto;
    margin-top: 4rem;
}
table {
    width: 100%;
}
th {
    text-align: left;
}
tr.accept-0 td {
    color: #bb7381;
}
tr.accept-1 td {
    color: #627662;
}
.radio-btns {
    display: flex;
}

.rd-btn {
  width: 8rem;
  height: 3.5rem;
  position: relative;
  cursor: pointer;
}

.rd-btn label,
.rd-btn input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.rd-btn label {
    padding: 5px;
    border: 1px solid var(--mauve);
    cursor: pointer;
    z-index: 1;
    color: #808080;
}

.rd-btn label .sub-text {
    font-size: 14px;
}

.rd-btn input[type="radio"] {
  opacity: 0.01;
  z-index: 100;
  cursor: pointer;
}

.rd-btn input[type="radio"] .icon {
    display: none;
}

.rd-btn input[type="radio"]:checked+label,
.Checked+label {
  background-color: rgba(114, 66, 107, 0.1);
  border: 2px solid var(--mauve);
  color: var(--mauve);
}
.rd-btn input[type="radio"]:checked .icon {
    display: block;
}

.rd-btn input[type="radio"]:hover+label {
    background-color: var(--mauve);
    color: white;
}

.rd-btn .rd-resp-yes {
    border-radius: 20px 0px 0px 20px;
}
.rd-btn .rd-resp-no {
    border-radius: 0px 20px 20px 0px;
}

.form-response-box {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
    z-index: 2;
}
.form-response-content {
    background-color: var(--mauve);
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    border: 1px solid #b08da1;
    border-radius: .2rem;
    padding: 1rem;
    color: white;
    width: 70vw;
    position: fixed;
    text-align: center;   
}