/* General Styles */
:root {
    --primary-red: #E53935;
    --secondary-orange: #FB8C00;
    --white: #FFFFFF;
    --light-grey: #F8F9FA;
    --dark-grey: #333333;
    --text-color: #333333;
    --heading-color: #333333;
    --link-color: var(--primary-red);
    --link-hover-color: var(--secondary-orange);
    --border-color: #E0E0E0;
    --primary-red-rgb: 229, 57, 53;
    --secondary-orange-rgb: 251, 140, 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 600;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: none; /* Ensure no underline on hover */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-red);
}

.py-md-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.bg-light-custom {
    background-color: var(--light-grey) !important;
}

.text-primary-custom {
    color: var(--primary-red) !important;
}

.text-secondary-custom {
    color: var(--secondary-orange) !important;
}

.text-muted-custom {
    color: #6c757d !important; /* A standard muted text color */
}

/* Buttons */
.btn {
    text-decoration: none !important; /* Remove underline from buttons */
}

.btn-primary-custom {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
}

.btn-primary-custom:hover, .btn-primary-custom:focus {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: var(--white);
    box-shadow: none;
}

.btn-secondary-custom {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
}

.btn-secondary-custom:hover, .btn-secondary-custom:focus {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: none;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-grey);
    color: var(--white);
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default, shown by JS if no consent */
}

.cookie-banner p a {
    color: var(--secondary-orange) !important;
}

.cookie-banner .btn-primary-custom, .cookie-banner .btn-secondary-custom {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('photos/graphics/Table-At-View-Wedding-Decoration.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-red-rgb), 0.7) 0%, rgba(var(--secondary-orange-rgb), 0.7) 100%); /* Red to Orange gradient overlay */
    z-index: 0;
}

.hero-section .container {
    z-index: 1;
    position: relative;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-section p.lead {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.sticky-cta {
    
  
    z-index: 1000;
    margin-top: 2rem;
    min-width: 250px;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.scroll-indicator {
    margin-top: 3rem;
    color: var(--white);
    opacity: 0.7;
}

/* About Section */
.about-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section .service-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: none; /* No animation */
    border: 1px solid var(--border-color);
}

.services-section .service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Instant change on hover */
}

.services-section .service-card i {
    font-size: 3rem;
    line-height: 1;
}

/* Features Section */
.features-section .feature-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.features-section .feature-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Instant change on hover */
}

.features-section .feature-card .feature-label {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid transparent; /* Placeholder for border */
}

.features-section .feature-card:hover .feature-label {
    border-bottom-color: var(--border-color); /* Instant change on hover */
}

.features-section .feature-card .feature-details {
    /* d-none / d-block toggled by JS */
}

/* How It Works Section */
.process-steps {
    position: relative;
}

.process-step {
    height: 350px !important;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    flex: 1;
    margin: 0 1rem; /* Spacing between steps */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-step .step-number {
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Add connecting lines for desktop */
@media (min-width: 768px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px; /* Aligns with step number center */
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--secondary-orange);
        z-index: 0;
        width: calc(100% - 2rem); /* Adjust width to fit container */
        margin: 0 1rem;
    }

    .process-step {
        z-index: 1; /* Ensure step numbers are above the line */
    }
}

/* Team Section */
.team-member-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.team-member-card .team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--primary-red);
}

.team-member-card .fun-fact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-red-rgb), 0.9); /* Red overlay */
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0; /* Hidden by default */
    visibility: hidden; /* Hidden by default */
    pointer-events: none;
    transition: none; /* No animation */
}

.team-member-card:hover .fun-fact-overlay {
    opacity: 1; /* Instant show on hover */
    visibility: visible; /* Instant show on hover */
    pointer-events: auto;
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.portfolio-item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 1rem;
    opacity: 1;
    transition: none; /* No animation */
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(var(--primary-red-rgb),0.9) 0%, rgba(var(--secondary-orange-rgb),0.5) 100%);
}

/* Portfolio Modal - No animation needed as per instructions */
.modal-content {
    border-radius: 0.75rem;
    border: none;
}

.modal-header {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section .testimonial-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.testimonials-section .testimonial-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Instant change on hover */
}

.testimonials-section .testimonial-card .testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--secondary-orange);
}

/* Testimonial Modal - No animation needed as per instructions */

/* FAQ Section */
.faq-item .card-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    padding-right: 3rem; /* Space for icon */
}

.faq-item .card-header:hover {
    background-color: var(--light-grey); /* Instant change on hover */
}

.faq-item .card-header::after {
    content: '\f218'; /* Plus icon */
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: var(--primary-red);
    transition: none; /* No animation */
}

.faq-item .card-header.collapsed::after {
    content: '\f218'; /* Plus icon */
}

.faq-item .card-header:not(.collapsed)::after {
    content: '\f222'; /* Minus icon */
}

.faq-item .faq-answer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    /* d-none / d-block toggled by JS */
}

.faq-item .collapse:not(.show) {
    display: none; /* Override Bootstrap's collapse transition for instant toggle */
}

.faq-item .collapsing {
    transition: none; /* Override Bootstrap's collapsing transition for instant toggle */
}

/* Contact Section (Form) */
.contact-form-section .form-label {
    font-weight: 600;
    color: var(--heading-color);
}

.contact-form-section .form-control, .contact-form-section .form-select {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
}

.contact-form-section .form-control:focus, .contact-form-section .form-select:focus {
    border-color: var(--secondary-orange);
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-orange-rgb), 0.25);
}

.contact-form-section .needs-validation .invalid-feedback {
    display: none;
    color: var(--primary-red);
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.contact-form-section .needs-validation .form-control:invalid ~ .invalid-feedback,
.contact-form-section .needs-validation .form-select:invalid ~ .invalid-feedback {
    display: block;
}

/* Footer Section */
.main-footer {
    background-color: var(--dark-grey);
    color: var(--white);
}

.main-footer .footer-tile {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: none; /* No animation */
}

.main-footer .footer-tile:hover {
    background-color: rgba(var(--primary-red-rgb), 0.2); /* Instant change on hover */
}

.main-footer .footer-tile h5 {
    color: var(--secondary-orange);
    font-weight: 700;
}

.main-footer .footer-tile .footer-link {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
}

.main-footer .footer-tile .footer-link:hover {
    color: var(--secondary-orange); /* Instant change on hover */
}

.main-footer .footer-logo {
    max-width: 100px;
    filter: brightness(0) invert(1);
}

.main-footer .border-top-dark-custom {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .process-step {
        margin: 0;
        margin-bottom: 1rem;
    }
    .process-steps::before {
        display: none; /* Hide connecting line on mobile */
    }

}
/* Styles for the content wrapper */
.policyScopeWrap {
    padding-top: 3rem; /* Top padding for the wrapper */
    padding-bottom: 3rem; /* Bottom padding for the wrapper */
    padding-left: 1.5rem; /* Left padding for the wrapper */
    padding-right: 1.5rem; /* Right padding for the wrapper */
    max-width: 960px; /* Max width for content readability */
    margin-left: auto; /* Center the wrapper horizontally */
    margin-right: auto; /* Center the wrapper horizontally */
}

/* Responsive adjustments for policyScopeWrap */
@media (min-width: 768px) {
    .policyScopeWrap {
        padding-top: 5rem; /* Larger top padding on desktop */
        padding-bottom: 5rem; /* Larger bottom padding on desktop */
        padding-left: 3rem; /* Larger left padding on desktop */
        padding-right: 3rem; /* Larger right padding on desktop */
    }
}

/* Heading styles within policyScopeWrap */
.policyScopeWrap h1 {
    font-size: 2.25rem; /* Font size for H1 */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for readability */
    margin-top: 2.5rem; /* Top margin for H1 */
    margin-bottom: 1.5rem; /* Bottom margin for H1 */
    color: var(--heading-color); /* Inherit heading color */
}

.policyScopeWrap h2 {
    font-size: 1.75rem; /* Font size for H2 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3; /* Line height for readability */
    margin-top: 2rem; /* Top margin for H2 */
    margin-bottom: 1.25rem; /* Bottom margin for H2 */
    color: var(--heading-color); /* Inherit heading color */
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Font size for H3 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.4; /* Line height for readability */
    margin-top: 1.75rem; /* Top margin for H3 */
    margin-bottom: 1rem; /* Bottom margin for H3 */
    color: var(--heading-color); /* Inherit heading color */
}

.policyScopeWrap h4 {
    font-size: 1.25rem; /* Font size for H4 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.5; /* Line height for readability */
    margin-top: 1.5rem; /* Top margin for H4 */
    margin-bottom: 0.75rem; /* Bottom margin for H4 */
    color: var(--heading-color); /* Inherit heading color */
}

.policyScopeWrap h5 {
    font-size: 1.125rem; /* Font size for H5 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.6; /* Line height for readability */
    margin-top: 1.25rem; /* Top margin for H5 */
    margin-bottom: 0.5rem; /* Bottom margin for H5 */
    color: var(--heading-color); /* Inherit heading color */
}

/* Paragraph styles within policyScopeWrap */
.policyScopeWrap p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.7; /* Line height for improved readability */
    margin-bottom: 1rem; /* Bottom margin for paragraph spacing */
    color: var(--text-color); /* Inherit text color */
}

/* Unordered list styles within policyScopeWrap */
.policyScopeWrap ul {
    list-style-type: disc; /* Default disc for unordered lists */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-top: 1rem; /* Top margin for the list */
    margin-bottom: 1rem; /* Bottom margin for the list */
    color: var(--text-color); /* Inherit text color */
}

/* Ordered list styles within policyScopeWrap */
.policyScopeWrap ol {
    list-style-type: decimal; /* Default decimal for ordered lists */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-top: 1rem; /* Top margin for the list */
    margin-bottom: 1rem; /* Bottom margin for the list */
    color: var(--text-color); /* Inherit text color */
}

/* List item styles within policyScopeWrap */
.policyScopeWrap li {
    font-size: 1rem; /* Font size for list items */
    line-height: 1.7; /* Line height for improved readability */
    margin-bottom: 0.5rem; /* Bottom margin for spacing between list items */
    color: var(--text-color); /* Inherit text color */
}

/* Last paragraph/list item in a sequence should not have bottom margin */
.policyScopeWrap p:last-child,
.policyScopeWrap ul:last-child,
.policyScopeWrap ol:last-child,
.policyScopeWrap li:last-child {
    margin-bottom: 0;
}
@media (max-width:992px) {
    #how-it-works .flex-column {
        gap: 10px;
        flex-direction: column !important;
    }
}
#portfolio .row {
    justify-content: center !important;
}