/* Global Styles */
:root {
    --primary-color: #f472b6;
    --secondary-color: #fdf2f8;
    --accent-color: #ec4899;
    --text-dark: #831843;
    --text-light: #a21caf;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(236, 72, 153, 0.15);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.45) 35%,
        rgba(255, 255, 255, 0.2) 100%
    ), url('images/background.png');
    background-size: 120% auto;
    background-position: center top;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: rgba(253, 184, 194, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.7rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand:focus,
.navbar-brand:focus-visible,
.navbar-brand:active {
    outline: none;
    box-shadow: none;
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-right: 15px;
    margin-top: 0;
    display: block;
    outline: none;
}

.navbar-brand:hover .logo,
.navbar-brand:focus .logo,
.navbar-brand:focus-visible .logo,
.navbar-brand:active .logo {
    transform: none;
    filter: none;
    opacity: 1;
}


.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: lowercase;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fdf2f8;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: rgba(255, 255, 255, 0.75);
    padding: 60px 0 20px;
    display: flex;
    align-items: flex-start;
}

.hero-row {
    min-height: auto;
}

.hero-title {
    font-size: 3.5rem;
    color: #9d174d;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    color: #9d174d;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-logo {
    max-width: 50%;
    height: auto;
    object-fit: contain;
    animation: fadeInUp 1s ease 0.6s both;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 8px 24px rgba(157, 23, 77, 0.18));
}

.btn-primary {
    background-color: rgba(253, 184, 194, 0.95);
    border-color: rgba(253, 184, 194, 0.95);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary:hover {
    background-color: rgba(253, 184, 194, 0.98);
    border-color: rgba(253, 184, 194, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(254, 183, 193, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: #9d174d;
    margin-bottom: 0.25rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9d174d, #9d174d);
    margin: 0 auto 0.5rem;
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 5px 0 10px;
    background-color: rgba(255, 255, 255, 0.75);
}

.about-section .section-title {
    margin-top: 0;
}

.about-section .row.mt-5 {
    margin-top: 0.5rem;
}



.hebmamme-photo-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.hebmamme-photo-placeholder:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.hebmamme-photo-placeholder i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hebmamme-photo-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.hebmamme-photo {
    width: 100%;
    max-width: none;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: all 0.3s ease;
}

.hebmamme-photo-container {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.hebmamme-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(254, 183, 193, 0.3);
}

.qualification-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid #9d174d;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.philosophy-box {
    justify-content: space-between;
}

.qualification-box h4 {
    color: #9d174d;
    margin-bottom: 1.5rem;
}

.qualification-box ul {
    list-style: none;
    padding: 0;
}

.qualification-box li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.qualification-box i {
    color: rgba(254, 183, 193, 0.95);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.75);
}

.service-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #9d174d;
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(254, 183, 193, 0.95), rgba(254, 183, 193, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: #9d174d;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.service-note {
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    border-left: 4px solid #9d174d;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-note-icon {
    color: rgba(254, 183, 193, 0.95);
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 0.1rem;
}


.service-note p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
    text-align: left;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.75);
}

.contact-info h4 {
    color: #9d174d;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    border-radius: var(--border-radius);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-item a:hover {
    color: #9d174d;
    text-decoration: underline;
}

.contact-item i {
    color: rgba(254, 183, 193, 0.95);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

.contact-form .form-control {
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(183, 110, 121, 0.25);
}

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

.contact-form .form-check {
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    border-left: 4px solid #9d174d;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-form .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    aspect-ratio: 1 / 1;
    margin-top: 0.25rem;
    margin-left: 0;
    border: 2px solid rgba(254, 183, 193, 0.95);
    border-radius: 0 !important;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--white);
    display: inline-grid;
    place-content: center;
    background-image: none;
    flex: 0 0 auto;
}

.contact-form .form-check-input:checked {
    background-color: rgba(254, 183, 193, 0.95);
    border-color: rgba(254, 183, 193, 0.95);
}

.contact-form .form-check-input:checked::after {
    content: "";
    width: 0.5rem;
    height: 0.9rem;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

.contact-form .form-check-label {
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 0.9rem;
    display: block;
    padding-left: 0.2rem;
}

/* Footer */
.footer {
    background-color: rgba(254, 183, 193, 0.95);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 242, 248, 0.95);
    box-shadow: 0 -4px 12px rgba(157, 23, 77, 0.12);
    z-index: 2000;
    padding: 0.85rem 1.25rem;
    display: none;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-text strong {
    color: #9d174d;
}

.cookie-banner-text p {
    margin: 0.25rem 0 0;
    color: var(--text-dark);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-categories .form-check {
    margin-top: 0.35rem;
}

.cookie-categories .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 3px;
    border: 2px solid rgba(254, 183, 193, 0.95);
}

.cookie-categories .form-check-input:checked {
    background-color: rgba(254, 183, 193, 0.95);
    border-color: rgba(254, 183, 193, 0.95);
}

.cookie-categories .form-check-label {
    color: var(--text-dark);
    margin-left: 0.35rem;
}

.cookie-banner .btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero {
        padding-top: 90px;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-logo {
        max-width: 40%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-logo {
        max-width: 45%;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section .row {
        flex-direction: column;
    }
    
    .hebmamme-photo-placeholder {
        margin-bottom: 2rem;
        min-height: 250px;
    }

    .hebmamme-photo-container {
        min-height: 320px;
    }
    
    .qualification-box {
        min-height: 320px;
    }
    
    .qualification-box {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-logo {
        max-width: 50%;
        margin-top: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .about-section, .services-section, .contact-section {
        padding: 40px 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .hebmamme-photo-placeholder {
        min-height: 200px;
        padding: 2rem 1.5rem;
    }

    .hebmamme-photo-container {
        min-height: 280px;
    }
    
    .qualification-box {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        max-width: 60%;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-section, .services-section, .contact-section {
        padding: 30px 0;
    }
    
    .service-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .hebmamme-photo-placeholder {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }

    .hebmamme-photo-container {
        min-height: 240px;
    }
    
    .qualification-box {
        min-height: 240px;
    }
    
    .qualification-box {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(254, 183, 193, 0.95);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 183, 193, 0.98);
}
