:root {
    --primary-rose: #E07A7A; /* A soft, elegant rose-red */
    --secondary-cream: #FDF7F7; /* Very light, almost white cream */
    --accent-green: #8FBC8F; /* Subtle sage green for foliage accents */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #FDFDFD;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --light-pink-bg: #FFF5F5; /* A very light pink for alternate sections */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
}

/* General Styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

.text-primary-rose {
    color: var(--accent-green) !important
}

.bg-primary-rose {
    background-color: var(--primary-rose) !important;
}

.btn-primary-rose {
    background-color: var(--primary-rose);
    border-color: var(--primary-rose);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-primary-rose:hover {
    background-color: #c76b6b; /* Slightly darker rose */
    border-color: #c76b6b;
    color: var(--text-light);
    text-decoration: none; /* Remove underline on hover */
}

.bg-secondary-cream {
    background-color: var(--secondary-cream) !important;
}

.text-accent-green {
    color: var(--accent-green) !important;
}

.bg-accent-green {
    background-color: var(--accent-green) !important;
}

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

.text-secondary-dark {
    color: #6c757d; /* Standard Bootstrap secondary color for muted text */
}

/* Navbar */
.navbar {
    background-color: var(--bg-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar-brand .text-primary-rose {
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-rose);
}

/* Hero Section */
.masthead {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('img/uploads/hero-flowers-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding-top: 7rem; /* Adjust for fixed navbar */
    padding-bottom: 5rem;
}

.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark);
    z-index: 1;
}

.masthead > .container {
    z-index: 2;
}

.masthead h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-light);
}

.masthead p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon {
    min-width: 120px;
}

/* Animations for Hero Section */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards 0.5s;
}

.animate-fade-in-delay-more {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
#about h2 {
    font-size: 3rem;
}

#about p {
    font-size: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section (Accordion) */
.accordion-button {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--secondary-cream);
    border: 1px solid var(--primary-rose);
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--text-light);
    background-color: var(--primary-rose);
    border-color: var(--primary-rose);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(224, 122, 122, 0.25);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.accordion-body {
    background-color: var(--bg-light);
    border-top: 1px solid var(--primary-rose);
    color: var(--text-dark);
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
}

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

/* Features Section (Clickable Cards) */
.feature-card {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid var(--primary-rose);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card .card-title i {
    font-size: 1.5rem;
}

.feature-card .toggle-feature-btn {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card .toggle-feature-btn:hover {
    color: #c76b6b; /* Slightly darker rose */
}

/* Portfolio Section */
.portfolio-card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

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

.portfolio-card img {
    height: 250px;
    object-fit: contain;
    width: 100%;
    margin-top: 20px;
}

.portfolio-card .card-body {
    padding: 1.5rem;
}

.portfolio-card .badge {
    font-size: 0.85rem;
    padding: 0.5em 0.75em;
    border-radius: 0.3rem;
}

/* Team Section */
.team-card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: var(--secondary-cream);
}

.team-card img {
    border: 3px solid var(--primary-rose);
}

/* Order Form Section */
#order-form .card {
    background-color: var(--bg-light);
    border-radius: 1rem;
}

#order-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
}

#order-form .form-control {
    border-color: #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#order-form .form-control:focus {
    border-color: var(--primary-rose);
    box-shadow: 0 0 0 0.25rem rgba(224, 122, 122, 0.25);
}

#order-form .btn-primary-rose {
    border-radius: 0.5rem;
}

/* Reviews Section */
.review-card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: var(--bg-light);
}

.review-card img {
    border: 2px solid var(--accent-green);
}

/* Footer */
footer {
    background-color: #212529 !important; /* Darker than default dark for contrast */
    color: var(--text-light);
}

footer .footer-cta-btn {
    text-decoration: none;
    border-radius: 0.5rem;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-rose);
    text-decoration: none;
}

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

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#cookieConsentModal .modal-header {
    border-bottom: 1px solid var(--secondary-cream);
    background-color: var(--light-pink-bg);
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

#cookieConsentModal .modal-title {
    color: var(--primary-rose);
    font-weight: 600;
}

#cookieConsentModal .modal-body p {
    font-size: 0.95rem;
}

#cookieConsentModal .form-check-label {
    font-size: 0.9rem;
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--primary-rose);
    border-color: var(--primary-rose);
}

#cookieConsentModal .btn-primary {
    background-color: var(--primary-rose);
    border-color: var(--primary-rose);
    color: var(--text-light);
}

#cookieConsentModal .btn-primary:hover {
    background-color: #c76b6b;
    border-color: #c76b6b;
}

#cookieConsentModal .btn-outline-secondary {
    color: var(--text-dark);
    border-color: #6c757d;
}

#cookieConsentModal .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: var(--text-light);
}

#cookieConsentModal .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--text-light);
}

#cookieConsentModal .btn-secondary:hover {
    background-color: #5c636a;
    border-color: #5c636a;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--bg-light);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    .navbar-nav .nav-link {
        text-align: center;
    }
    .masthead h1 {
        font-size: 2.5rem;
    }
    .masthead p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .masthead h1 {
        font-size: 2rem;
    }
    .masthead p {
        font-size: 0.9rem;
    }
    .feature-icon {
        min-width: unset;
        width: 100%;
    }
}

/* Utility for equal height cards */
.row.g-4.justify-content-center {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4.justify-content-center > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.row.g-4.justify-content-center > [class*="col-"] .card {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.row.g-4.justify-content-center > [class*="col-"] .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* Styles for content within .infoGuardBlock */
.infoGuardBlock {
    padding-top: 3rem; /* Top padding for the block */
    padding-bottom: 3rem; /* Bottom padding for the block */
    padding-left: 1.5rem; /* Left padding for the block */
    padding-right: 1.5rem; /* Right padding for the block */
    margin-left: auto; /* Center the block horizontally */
    margin-right: auto; /* Center the block horizontally */
    max-width: 1200px; /* Optional: Constrain max width for better readability */
}

.infoGuardBlock h1 {
    font-size: 2.25rem; /* Heading 1 font size */
    margin-top: 2rem; /* Top margin for H1 */
    margin-bottom: 1rem; /* Bottom margin for H1 */
    line-height: 1.2; /* Line height for H1 */
    color: var(--text-dark); /* Inherit or define color */
}

.infoGuardBlock h2 {
    font-size: 1.8rem; /* Heading 2 font size */
    margin-top: 1.8rem; /* Top margin for H2 */
    margin-bottom: 0.9rem; /* Bottom margin for H2 */
    line-height: 1.3; /* Line height for H2 */
    color: var(--text-dark);
}

.infoGuardBlock h3 {
    font-size: 1.5rem; /* Heading 3 font size */
    margin-top: 1.5rem; /* Top margin for H3 */
    margin-bottom: 0.8rem; /* Bottom margin for H3 */
    line-height: 1.4; /* Line height for H3 */
    color: var(--text-dark);
}

.infoGuardBlock h4 {
    font-size: 1.25rem; /* Heading 4 font size */
    margin-top: 1.25rem; /* Top margin for H4 */
    margin-bottom: 0.7rem; /* Bottom margin for H4 */
    line-height: 1.5; /* Line height for H4 */
    color: var(--text-dark);
}

.infoGuardBlock h5 {
    font-size: 1.1rem; /* Heading 5 font size */
    margin-top: 1rem; /* Top margin for H5 */
    margin-bottom: 0.6rem; /* Bottom margin for H5 */
    line-height: 1.6; /* Line height for H5 */
    color: var(--text-dark);
}

.infoGuardBlock p {
    font-size: 1rem; /* Paragraph font size */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Line height for paragraphs */
    color: var(--text-dark);
}

.infoGuardBlock ul {
    margin-top: 1rem; /* Top margin for unordered lists */
    margin-bottom: 1rem; /* Bottom margin for unordered lists */
    padding-left: 1.5rem; /* Left padding for bullet points */
    list-style: disc; /* Default bullet style */
}

.infoGuardBlock ol {
    margin-top: 1rem; /* Top margin for ordered lists */
    margin-bottom: 1rem; /* Bottom margin for ordered lists */
    padding-left: 1.5rem; /* Left padding for numbering */
    list-style: decimal; /* Default numbering style */
}

.infoGuardBlock li {
    font-size: 1rem; /* List item font size */
    margin-bottom: 0.5rem; /* Bottom margin for list items */
    line-height: 1.6; /* Line height for list items */
    color: var(--text-dark);
}

/* Specific adjustment for the last paragraph or list item to avoid double margin */
.infoGuardBlock p:last-child,
.infoGuardBlock ul:last-child,
.infoGuardBlock ol:last-child {
    margin-bottom: 0;
}


.hero-mn{
    min-height: 50vh !important;
    padding-top: 170px;
}

.logo-footers {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.logo-footers h2{
    font-size: clamp(18px,2.5vw,22px) !important;
    margin: 0;
    color: #fff;
}