:root {
    /* New Color Palette */
    --soft-red: #ffadad;      /* Soft Red */
    --peach: #ffd6a5;         /* Peach */
    --light-yellow: #fdffb6;  /* Light Yellow */
    --mint: #caffbf;          /* Mint */
    --sky-blue: #9bf6ff;      /* Sky Blue */
    --light-blue: #a0c4ff;    /* Light Blue */
    --lavender: #bdb2ff;      /* Lavender */
    --pink: #ffc6ff;          /* Pink */
    --off-white: #fffffc;     /* Off White */

    /* Assign colors to specific purposes */
    --primary-color: var(--pink);          /* Primary accent */
    --secondary-color: var(--lavender);    /* Secondary accent */
    --accent-color: var(--sky-blue);       /* Accent color */
    --gradient-start: var(--soft-red);     /* Gradient start */
    --gradient-end: var(--light-blue);     /* Gradient end */
    
    /* Section backgrounds - using softer progression */
    --events-bg: var(--off-white);         /* Lightest background */
    --testimonials-bg: var(--light-yellow);/* Very light yellow */
    --pricing-bg: var(--mint);             /* Soft mint */
    --about-bg: var(--sky-blue);           /* Sky blue */
    --contact-bg: var(--light-blue);       /* Light blue */
}

/* Base font settings */
body, p, span, li, input, textarea, button, .btn, .card-text, .lead, small, .form-control, .list-unstyled, .testimonial-card p, .service-overlay p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Heading font settings */
h1, h2, h3, h4, h5, h6, .section-title, .card-title, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
}

body {
    overflow-x: hidden;
}

.brand-container {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.business-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1513151233558-d860c5398176?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

/* Ensure all sections have proper background colors */
#events, #testimonials, #pricing, .about-section, .contact-section {
    background-color: var(--events-bg);
    min-height: 100%;
    width: 100%;
}

#testimonials {
    background-color: var(--testimonials-bg) !important;
}

#pricing {
    background-color: var(--pricing-bg) !important;
}

.about-section {
    background-color: var(--about-bg) !important;
}

.contact-section {
    background-color: var(--contact-bg) !important;
}

/* Ensure content stays above gradients */
.container {
    position: relative;
    z-index: 1;
}

/* Update card styles for better contrast */
.event-card, .testimonial-card, .pricing-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Remove all the ::before gradient transitions */
#events::before,
#testimonials::before,
#pricing::before,
.about-section::before {
    display: none;
}

/* Remove the old header styles */
.site-header, .header-content, .logo-container {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, var(--soft-red), var(--lavender));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    margin: 1rem 0;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-card img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.event-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.event-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--contact-bg);
}

.event-card .card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--contact-bg);
    opacity: 0.9;
}

/* Update grid spacing for larger cards */
#events .row {
    margin: 0 -1rem;
}

#events .col-md-4 {
    padding: 0 1rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--off-white), var(--light-yellow));
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    border: 1px solid rgba(189, 178, 255, 0.2);
}

.testimonial-card p {
    color: var(--lavender);
}

.testimonial-card h5 {
    color: var(--soft-red);
}

.pricing-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s;
    background: linear-gradient(135deg, var(--off-white), var(--mint));
    border: 1px solid rgba(189, 178, 255, 0.2);
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card .card-title {
    color: var(--soft-red);
}

.btn-custom {
    background: linear-gradient(45deg, var(--soft-red), var(--peach));
    border: none;
    color: var(--off-white);
    padding: 12px 30px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(189, 178, 255, 0.2);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--pink), var(--lavender));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(189, 178, 255, 0.3);
    color: var(--off-white);
}

.btn-custom:hover::before {
    opacity: 1;
}

.btn-custom:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Special effect for the hero section button */
.hero-section .btn-custom {
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    animation: pulse 2s infinite;
}

.hero-section .btn-custom::before {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 173, 173, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 173, 173, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 173, 173, 0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.card-title {
    color: var(--contact-bg);
}

.contact-section .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section .form-control:focus {
    background: white;
    border-color: var(--soft-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 173, 173, 0.25);
}

/* Ensure sections take full width */
section {
    width: 100%;
    position: relative;
}

/* Service Cards */
.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 252, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: bottom 0.5s ease;
    border-top: 1px solid rgba(189, 178, 255, 0.2);
}

.service-card:hover .service-overlay {
    bottom: 0;
}

.service-overlay h3 {
    color: var(--soft-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
}

.service-overlay p {
    color: var(--lavender);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Update section background */
#services {
    background-color: var(--events-bg);
}

/* Remove old event card styles */
.event-card, .pricing-card {
    display: none;
}

/* Special text elements */
.hero-section h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Navigation and links */
a, .nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* Form elements */
.form-control::placeholder {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
}

/* Footer */
footer h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
}

footer p, footer li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

/* Testimonials */
.testimonial-card small {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
}

/* About section */
.about-section .lead {
    font-family: 'Roboto Serif', serif;
    font-weight: 500;
    font-style: italic;
}

.about-section .fas {
    display: none;
}

/* Contact Form Button Styles */
.contact-section .btn-light {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 35px;
    border-radius: 30px;
    background: linear-gradient(45deg, var(--soft-red), var(--peach));
    border: none;
    color: var(--off-white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-section .btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--pink), var(--lavender));
    transition: all 0.4s ease;
    z-index: 1;
}

.contact-section .btn-light span {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all 0.4s ease;
}

.contact-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: var(--off-white);
}

.contact-section .btn-light:hover::before {
    left: 0;
}

.contact-section .btn-light:hover span {
    transform: scale(1.05);
}

.contact-section .btn-light:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Loading animation for form submission */
.contact-section .btn-light.loading {
    pointer-events: none;
    opacity: 0.8;
}

.contact-section .btn-light.loading span {
    animation: buttonPulse 1.5s infinite;
}

.contact-section .btn-light.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
    z-index: 3;
}

@keyframes buttonPulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes buttonSpin {
    to { transform: rotate(360deg); }
}

/* Success animation */
.contact-section .btn-light.success {
    background: linear-gradient(45deg, var(--mint), var(--sky-blue));
    pointer-events: none;
}

.contact-section .btn-light.success span {
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Material Symbols Check Icon */
.material-symbols-outlined.check-icon {
    font-size: 24px;
    font-weight: 600;
    color: var(--soft-red);
    transition: transform 0.3s ease;
}

.d-flex:hover .material-symbols-outlined.check-icon {
    transform: scale(1.2);
    color: var(--pink);
}

/* Booking Form Styles */
.booking-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
}

.booking-form .form-control:focus {
    background: white;
    border-color: var(--soft-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 173, 173, 0.25);
}

.booking-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffadad' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.package-options {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
}

.package-options .form-check {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-options .form-check:hover {
    background: rgba(255, 255, 255, 0.1);
}

.package-options .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.package-options .form-check-label {
    padding-left: 10px;
    font-size: 1.1rem;
}

.package-options .form-check-label small {
    display: block;
    margin-top: 5px;
    opacity: 0.8;
}

/* Payment Page Styles */
.payment-form .card-element {
    padding: 15px;
    border-radius: 8px;
    background: white;
    min-height: 50px;
}

.order-summary {
    background: var(--off-white);
    border-radius: 10px;
    padding: 20px;
}

.order-summary .table {
    margin-bottom: 0;
}

.order-summary .table td {
    padding: 12px;
    border-color: rgba(0, 0, 0, 0.05);
}

.order-summary .table-active {
    background: var(--light-yellow);
}

/* Success Page Styles */
.success-icon {
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.booking-details, .next-steps, .contact-info {
    transition: transform 0.3s ease;
}

.booking-details:hover, .next-steps:hover, .contact-info:hover {
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-form .form-control {
        font-size: 16px; /* Prevent zoom on mobile */
    }

    .package-options {
        padding: 15px;
    }

    .package-options .form-check {
        padding: 10px;
    }

    .order-summary {
        padding: 15px;
    }
}
