body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-pink: #E91E63; /* A vibrant, yet elegant pink */
    --light-pink: #F8BBD0;  /* Lighter shade for backgrounds */
    --dark-pink: #C2185B;   /* Darker shade for accents/hover */
    --text-dark: #333333;
    --text-light: #f8f8f8;
    --white: #ffffff;
    --light-grey: #f5f5f5;
}

/* General Styles */
.title {
    font-weight: 700;
    color: var(--text-dark);
}

.subtitle {
    color: var(--text-dark);
}

.button {
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.button.is-primary {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--white);
}

.button.is-primary:hover {
    background-color: var(--dark-pink);
    border-color: var(--dark-pink);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button.is-primary.is-outlined {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.button.is-primary.is-outlined:hover {
    background-color: var(--white);
    color: var(--primary-pink);
}

.button.is-primary.is-light {
    background-color: var(--light-pink);
    color: var(--primary-pink);
    border-color: transparent;
}

.button.is-primary.is-light:hover {
    background-color: var(--primary-pink);
    color: var(--white);
}

.section {
    padding: 4rem 1.5rem;
}

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

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.navbar-logo {
    max-height: 2.5rem;
    width: auto;
}

.navbar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;

    span {
        text-align: center;
        display: inline-block;
        width: 50%;
        font-size: 12px;
    }
    .button.is-primary.smooth-scroll {
        font-size: 14px;
    }
}

.navbar-item:hover {
    color: var(--primary-pink);
    background-color: transparent;
}

.navbar-burger {
    color: var(--primary-pink);
}

/* Hero Section */
.hero-background {
    background-image: url('photos/pics/laundry-hero-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-body > .container {
    position: relative;
    z-index: 2;
}

.custom-badge {
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 3rem 4rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-block;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-logo {
    max-height: 80px;
    margin-bottom: 1.5rem;
}

.hero .title, .hero .subtitle {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section .columns {
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background-color: var(--light-grey);
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.service-card .title {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}

/* Features Section */
.features-section .feature-item {
    margin-bottom: 4rem;
}

.features-section .feature-item:last-child {
    margin-bottom: 0;
}

.features-section .columns {
    align-items: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-pink);
}

.feature-item .title {
    color: var(--primary-pink);
}

.feature-item .tag {
    background-color: var(--light-pink);
    color: var(--primary-pink);
    font-weight: 600;
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    background-color: var(--light-grey);
}

.team-member-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--light-pink);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member-card .title {
    color: var(--primary-pink);
}

.team-member-card .subtitle {
    color: #666;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-pink), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    margin-inline: auto;
}

.team-member-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay blockquote {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    width: 80%;
    filter: drop-shadow(0 0 1px #000);
}

/* Industries Section */
.industry-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industry-icon {
    font-size: 3.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.industry-card .title {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.industry-card p {
    color: #555;
}

.industry-card .stats {
    margin-top: 1.5rem;
    border-top: 1px solid var(--light-grey);
    padding-top: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 1.5rem;
}

.stats-section .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stats-section p.is-size-1 {
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-section p.is-size-5 {
    color: var(--text-dark);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-filter.is-active {
    background-color: var(--primary-pink);
    color: var(--white);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    padding: 0.5rem;
    display: flex; /* For equal height effect if needed, though images handle their own aspect */
}

.gallery-image {
    width: 100%;
    height: 250px; /* Fixed height for masonry-like feel */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* Booking Form Section */
.booking-section {
    background-color: var(--light-pink);
}

.booking-form {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.booking-form .label {
    font-weight: 600;
    color: var(--primary-pink);
}

.booking-form .input, .booking-form .select select {
    border-color: var(--light-pink);
    border-radius: 8px;
}

.booking-form .input:focus, .booking-form .select select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.125em rgba(var(--primary-pink), 0.25);
}

.booking-form .help.is-danger {
    color: var(--dark-pink);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-pink);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: var(--white);
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-pink);
}

.faq-question:hover {
    background-color: var(--light-grey);
}

.faq-question .icon {
    transition: transform 0.3s ease;
}

.faq-question.is-active .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.2rem 1.5rem;
    background-color: var(--light-grey);
    border-top: 1px solid var(--light-pink);
    display: none; /* Hidden by default */
    color: #555;
}

/* Footer Section */
.footer {
    background-color: var(--dark-pink);
    color: var(--white);
    padding: 4rem 1.5rem;
}

.footer-z-layout .columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    max-height: 50px;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer .company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.footer .copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer .title.is-6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

.footer-nav li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

.footer p a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer p a:hover {
    color: var(--light-pink);
    text-decoration: underline;
}

.whatsapp-button {
    background-color: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.whatsapp-button:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    color: var(--white);
}

.policy-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

.policy-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Cookie Consent Modal */
.modal.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-content {
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
}

.custom-modal-content .box {
    padding: 2.5rem;
}

.custom-modal-content .title {
    color: var(--primary-pink);
}

.custom-modal-content .field {
    text-align: left;
    margin-bottom: 0.75rem;
}

.custom-modal-content .field label {
    color: var(--text-dark);
    font-weight: 500;
}

.custom-modal-content .is-checkradio[type="checkbox"] + label::before,
.custom-modal-content .is-checkradio[type="checkbox"] + label::after {
    border-color: var(--primary-pink);
}

.custom-modal-content .is-checkradio[type="checkbox"]:checked + label::after {
    background-color: var(--primary-pink);
}

.custom-modal-content .is-checkradio[type="checkbox"]:disabled + label {
    opacity: 0.7;
    cursor: not-allowed;
}

.custom-modal-content .buttons .button {
    margin: 0 0.5rem;
}

.custom-modal-content .button.is-info {
    background-color: #3273dc; /* Bulma default info */
    border-color: #3273dc;
}

.custom-modal-content .button.is-info:hover {
    background-color: #276cda;
    border-color: #276cda;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .navbar-menu {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    .navbar-item {
        padding-left: 1.5rem;
    }
    .hero-logo {
        max-height: 60px;
    }
    .custom-badge {
        padding: 2rem;
    }
    .hero .title {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    .feature-item .columns {
        flex-direction: column !important;
    }
    .feature-item .column.is-half {
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .footer-z-layout .column {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    .footer-z-layout .column:last-child {
        margin-bottom: 0;
    }
    .policy-links a {
        display: block;
        margin: 0.5rem 0;
    }
    .booking-form {
        padding: 2rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .custom-badge {
        padding: 2.5rem 3rem;
    }
    .hero .title {
        font-size: 3rem;
    }
    .hero .subtitle {
        font-size: 1.5rem;
    }
}
/* Styles for the main content frame */
.dataClauseFrame {
    margin-top: 20px;    /* Top margin for the frame */
    margin-left: 15px;   /* Left margin for the frame */
    margin-right: 15px;  /* Right margin for the frame */
    /* You might want to add max-width and margin: auto for centering on larger screens */
    /* max-width: 800px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles - not large font sizes */
.dataClauseFrame h1 {
    font-size: 24px;       /* Moderate font size for H1 */
    font-weight: bold;     /* Bold text */
    margin-top: 1.5em;     /* Spacing above the heading */
    margin-bottom: 0.75em; /* Spacing below the heading */
    line-height: 1.2;      /* Line height for readability */
}

.dataClauseFrame h2 {
    font-size: 20px;       /* Moderate font size for H2 */
    font-weight: bold;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    line-height: 1.3;
}

.dataClauseFrame h3 {
    font-size: 18px;       /* Moderate font size for H3 */
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.dataClauseFrame h4 {
    font-size: 16px;       /* Moderate font size for H4, similar to body text */
    font-weight: bold;
    margin-top: 0.8em;
    margin-bottom: 0.4em;
    line-height: 1.5;
}

.dataClauseFrame h5 {
    font-size: 14px;       /* Moderate font size for H5, slightly smaller than body text */
    font-weight: bold;
    margin-top: 0.7em;
    margin-bottom: 0.3em;
    line-height: 1.5;
}

/* Paragraph styles */
.dataClauseFrame p {
    font-size: 16px;       /* Base font size for paragraphs */
    line-height: 1.6;      /* Improved line height for readability */
    margin-bottom: 1em;    /* Space between paragraphs */
}

/* Unordered list styles */
.dataClauseFrame ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1em;       /* Spacing above the list */
    margin-bottom: 1em;    /* Spacing below the list */
    padding-left: 25px;    /* Indentation for list items */
}

/* List item styles */
.dataClauseFrame li {
    margin-bottom: 0.5em;  /* Space between individual list items */
    line-height: 1.5;      /* Consistent line height for list items */
}


.navbar-item img {
    max-height: 70px;
    width: 120px;
    object-fit: cover;
}

.hero-logo {
    max-height: 100px;
    width: 200px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}
.footer-logo {
    width: 100px;
    max-height: 50px;
    object-fit: cover;
    filter: none;
}

.team-avatar {
    width: 260px;
    height: 260px;
}

.thanks-page {
    .title {
        color: #000 !important;
        font-weight: bold;
    }
    .text-center {
        text-align: center;
    }
    .thank-you-box {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 50vh;
    }
}


.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar-menu {
    flex-shrink: unset;
}

.logo-wrapper {
    flex-shrink: 1;
}

.navbar-brand .brand-name{
  font-weight: 700;
  color: #111;              /* тёмный текст на светлом фоне шапки */
  line-height: 1;
  white-space: nowrap;      /* не переносить */
  margin-left: .25rem;      /* сдвиг ближе к логотипу */
  font-size: 0.95rem;       /* можно увеличить при желании */
}

/* при узкой ширине можно уменьшить размер на планшетах */
@media (max-width: 1023px){
  .navbar-brand .brand-name{ font-size: .9rem; }
}
