@import url('https://fonts.adobe.com/fonts/dolly');
@import url('https://fonts.adobe.com/fonts/hillmont');

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
    font-family: 'Dolly Pro', serif;
    font-weight: 400;
    color: #455B7E;
}

* {
    font-family: 'Dolly Pro', serif;
    color: #455B7E;
}


main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

/* Navigation styles */
.navbar {
    background-color: #b0c2d8 !important;
    box-shadow: 0 2px 4px rgba(69, 91, 126, 0.1);
}

.navbar-brand {
    color: #455B7E !important;
    font-weight: 600;
    font-size: 1.4rem;
}

.navbar-brand:hover {
    color: #c4b27b !important;
}

.nav-link {
    color: #455B7E !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link:focus {
    color: #c4b27b !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Footer styles */
.footer {
    background-color: #455B7E !important;
    color: white !important;
}

.footer .text-muted {
    color: #b0c2d8 !important;
}

/* Venue page styles */
.venue-page {
    padding: 2rem 0;
}

.hero-section {
    background-color: #b0c2d8;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #455B7E;
    color: #455B7E;
}

.venue-description .card {
    overflow: hidden;
    border-radius: 12px;
}

.main-venue-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 768px) {
    .main-venue-image {
        max-height: none;
    }
}

.venue-features {
    margin-top: 4rem;
}

.venue-features .card {
    transition: transform 0.2s;
    border-radius: 12px;
    height: 100%;
}

.venue-features .card:hover {
    transform: translateY(-5px);
}

.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(176, 194, 216, 0.3);
}

.btn-outline-primary {
    border-color: #c4b27b;
    color: #c4b27b;
    border-radius: 20px;
    padding: 8px 20px;
}

.btn-outline-primary:hover {
    background-color: #c4b27b;
    color: white;
}

.card-title {
    color: #455B7E;
    margin-bottom: 1.2rem;
}

.list-unstyled li {
    margin-bottom: 0.8rem;
}

.list-unstyled a {
    color: #c4b27b;
    text-decoration: none;
    transition: color 0.2s;
}

.list-unstyled a:hover {
    color: #455B7E;
    text-decoration: underline;
}

/* FAQ Accordion styles */
.faq-section {
    margin-top: 4rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.2rem;
    font-weight: 500;
    color: #455B7E;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
}

.accordion-button:not(.collapsed) {
    color: #455B7E;
    background-color: #b0c2d8;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(196, 178, 123, 0.3);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.2s ease;
}

.accordion-body {
    padding: 1.2rem;
    background-color: rgba(176, 194, 216, 0.2);
}

.accordion-body ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

.accordion-body strong {
    color: #455B7E;
}

/* RSVP Form styles */
.rsvp-page {
    padding: 2rem 0;
}

.rsvp-page .card {
    border-radius: 15px;
    border: none;
}

/* Attendance options styling */
.attendance-options {
    display: flex;
    gap: 2.5rem;
    margin: 0.75rem 0;
    padding: 0.5rem 0;
}

.attendance-options .form-check {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.attendance-options .form-check-input {
    margin: 0;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.attendance-options .form-check-label {
    margin: 0;
    cursor: pointer;
    font-weight: normal;
}

.attendance-options .form-check-input:checked {
    background-color: #c4b27b;
    border-color: #c4b27b;
}

.attendance-options .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(196, 178, 123, 0.25);
    border-color: #c4b27b;
}

/* Form field styles */
.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.8rem;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #c4b27b;
    box-shadow: 0 0 0 0.2rem rgba(196, 178, 123, 0.25);
}

.form-label {
    font-weight: 500;
    color: #455B7E;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Plus One section styling */
.plus-one-details {
    background-color: rgba(176, 194, 216, 0.2);
    border: 1px solid #b0c2d8;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0 1.5rem;
    transition: all 0.3s ease;
}

.plus-one-details .attendance-options {
    margin: 0.5rem 0;
}

.plus-one-details label.form-label {
    color: #455B7E;
    font-weight: 500;
}

.plus-one-details .form-control {
    background-color: #fff;
}

.form-check {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    padding-left: 1.75rem;
}

.form-check-input {
    margin-left: -1.75rem;
    margin-top: 0;
    cursor: pointer;
}

.form-check-label {
    margin-bottom: 0;
    margin-left: 0.5rem;
    cursor: pointer;
}

/* Success message styling */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/* Button styles */
.btn-primary {
    background-color: #c4b27b;
    border-color: #c4b27b;
    padding: 0.5rem 1.2rem;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #455B7E;
    border-color: #455B7E;
    transform: translateY(-2px);
}

.invalid-feedback {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

/* Navbar logo styling */
.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
}

.navbar-brand {
    padding: 0.5rem 0;
}

/* Cursive font styling */
.cursive-text {
    font-family: 'Hillmont', cursive;
    font-style: italic;
}

/* Navigation styles */
.navbar-logo {
    height: 32px;
    width: auto;
}

.navbar .container {
    position: relative;
}

.navbar-brand {
    position: absolute;
    left: 15px;
    z-index: 10;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .navbar-brand {
        position: absolute;
        right: 60px;
        left: auto;
        z-index: 10;
    }
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    margin: 0 auto;
}
