/* ========================================
   MAIN STYLES
   Modern website styling with animations
   ======================================== */

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
    /* Colors */
    --color-primary: #ea5901;
    --color-secondary: #336633;
    --color-dark: #333333;
    --color-text: #3f454d;
    --color-text-light: #767c7e;
    --color-light-bg: #d5b5a2;
    --color-white: #ffffff;
    --color-bg-light: #f8f8f8;
    
    /* Typography */
    --font-family: 'Open Sans', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --container-max-width: 1400px;
    --header-height: 80px;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.mx_logged_in {
margin-top:20px !important;
}
.mx_logged_in .header {margin-top:40px;}
html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;

}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition-base);
}

ul {
    list-style: none;
}
.mobile-quick-actions {display: none;}
/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: var(--header-height);
    overflow: hidden;
	    padding-bottom: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 0 1rem;
}

.slide.active .slide-caption {
    animation: slideUpFade 1s ease-out;
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    z-index: 3;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-dark);
    border-radius: var(--radius-full);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active,
.dot:hover {
    background-color: var(--color-white);
    transform: scale(1.2);
}

/* ========================================
   Hero Slider Responsive Tweaks
   ======================================== */
@media (max-width: 1024px) {
    .hero-slider,.hero-banner  {
        height: 450px;
    }

    .slide-caption {
        max-width: 600px;
        padding: 0 0.5rem;
    }

    .slide-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider, .hero-banner {
        height: 350px;
    }


    .slide-caption {
        max-width: 90%;
    }

    .slide-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-dots {
        gap: 6px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px;
    }

    .slide-caption {
        max-width: 95%;
        padding: 0 0.5rem;
    }

    .slide-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}
/* ========================================
   Statische Hero Banner
   ======================================== */
.hero-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    height: 600px;
    margin-top: var(--header-height);
 padding-bottom:0;
}

.banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: -webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

/* Knop in de middelste afbeelding */
.banner-item.middle .banner-btn {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.banner-item.middle .banner-btn:hover {
    background-color: var(--color-dark);
    transform: translateX(-50%) scale(1.05);
}

/* ========================================
   Responsiveness
   ======================================== */
/* Desktop/tablet ≤1024px: laatste blokkeren */
@media (max-width: 1024px) {
    .hero-banner {
        grid-template-columns: repeat(2, 1fr);
        height: 500px;
    }

    .hero-banner .banner-item.hide-desktop {
        display: none;
    }
}

/* Mobile ≤600px: laatste 2 blokkeren */
@media (max-width: 768px) {
    .hero-banner {
        grid-template-columns: 1fr;
        height: 350px;
    }
		.banner-item {
    border-radius: -webkit-border-bottom-right-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}

    .banner-item.middle .banner-btn {
        bottom: 10%;
    }

    .hero-banner .banner-item.hide-mobile {
        display: none;
    }
}




/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Sections
   ======================================== */
section {
    padding: var(--spacing-xl) 0;
}

.features-section {
    background-color: var(--color-bg-light);
}

.content-section {
    background-color: var(--color-white);
}

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

/* content sections*/
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Algemene spacing */
/* Achtergrondkleur over volledige breedte */
.kleur.grey {
   background-color: var(--color-bg-light);
    width: 100%;
    padding: 3rem 0; /* ruimte boven en onder */
}

/* De container binnen de gekleurde div blijft centraal en beperkt in breedte */
.kleur.grey .container {
    max-width: 1200px; /* of je eigen containerbreedte */
    margin: 0 auto;
    padding: 0 1rem; /* beetje padding voor mobiel */
}

.content-breed,
.content-2kolom {
   
}

/* =====================
   BREDE CONTENT
===================== */
.content-breed {
    width: 100%;
}

/* =====================
   2/3 - 1/3 CONTENT
===================== */
.content-2kolom {
    display: flex;
    align-items: flex-start;

    /* compenseert de padding van de kolommen */
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Kolommen */
.content-2kolom .kolom-groot,
.content-2kolom .kolom-klein {
    padding: 0 1rem;
    box-sizing: border-box;
}

.content-2kolom .kolom-groot {
    flex: 0 0 66.666%;
}

.content-2kolom .kolom-klein {
    flex: 0 0 33.333%;
}

/* divers opmaak*/
/* ========================================
   CONTENT TYPOGRAPHY
   ======================================== */

/* Algemene content context */
.content-breed,
.content-2kolom {
    font-size: 1rem;
    line-height: 1.7;
}

/* =====================
   HEADINGS
===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0 0 var(--spacing-sm);
}

/* H1 */
h1 {
    font-size: clamp(2.0rem, 3.2vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

/* H2 */
h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin-top: var(--spacing-xs);
    border-radius: var(--radius-sm);
}

/* H3 */
h3 {
    font-size: 1.5rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--color-secondary);
}

/* H4 */
h4 {
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
    font-weight: 600;
}

/* H5 */
h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

/* H6 */
h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* =====================
   PARAGRAPHS
===================== */
p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

p:last-child {
    margin-bottom: 0;
}


.divider {
       width: 100%;
    height: 203px;
    overflow: hidden;
    line-height: 0;
    margin-top: -202px;
    position: relative;
    z-index: 999;
}

.divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.divider path {
    stroke: #fff; /* kleur van de lijn */
    stroke-width: 2; /* dikte van de lijn */
    fill: transparent; /* geen vulling, alleen lijn */
}


/* =====================
   INLINE CODE
===================== */
code {
    background-color: var(--color-bg-light);
    padding: 0.2em 0.4em;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    color: var(--color-dark);
    font-family: Consolas, Monaco, monospace;
}

/* =====================
   LISTS – ONLY CONTENT
===================== */
.content-breed ul,
.content-breed ol,
.content-2kolom ul,
.content-2kolom ol {
    margin: var(--spacing-md) 0;
    padding-left: 1.5rem;
}

/* Algemene li */
.content-breed ul li,
.content-breed ol li,
.content-2kolom ul li,
.content-2kolom ol li {
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    line-height: 1.7;
}

/* Unordered list */
.content-breed ul li,
.content-2kolom ul li {
    position: relative;
    padding-left: 1rem;
}

.content-breed ul li::before,
.content-2kolom ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1;
}

/* Ordered list */
.content-breed ol,
.content-2kolom ol {
    counter-reset: list-counter;
}

.content-breed ol li,
.content-2kolom ol li {
    list-style: none;
    counter-increment: list-counter;
    position: relative;
    padding-left: 2rem;
}

.content-breed ol li::before,
.content-2kolom ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--color-primary);
}



/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
    .content-2kolom {
        flex-direction: column;
    }

    .content-2kolom .kolom-groot,
    .content-2kolom .kolom-klein {
        flex: 0 0 100%;
    }
}


/* ========================================
   Features Grid
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    padding-bottom: 80px; /* Extra ruimte voor button */
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    min-height: 420px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card.slide-in {
    animation: slideInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* ruimte tussen de cards */
}

/* Tablet: 2 + 1 layout */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid .feature-card:nth-child(3) {
        grid-column: 1 / -1; /* derde kaart neemt volledige breedte */
    }
}

/* Mobiel: 1 per rij */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .features-grid .feature-card:nth-child(3) {
        grid-column: auto; /* reset */
    }
}


.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    font-size: 3rem;
    color: var(--color-white);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
    background-color: var(--color-secondary);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.feature-content h2 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;        /* Nodig voor ::after */
    display: inline-block;     /* Zorgt dat de lijn precies onder de tekst staat */
    text-align: center;        /* Centraal uitlijnen van inline-block element */
}

.feature-content h2::after {
    content: "";
    display: block;
    width: 50%;                /* Breedte van de lijn, aanpasbaar */
    height: 4px;               /* Dikte van de lijn */
    background-color: var(--color-primary);
    margin: 0.5rem auto 0;     /* Centraal onder de tekst */
    border-radius: var(--radius-sm);
}


.feature-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.feature-content .btn {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2 * var(--spacing-lg));
    max-width: 200px;
}

/* ========================================
   Content Grid
   ======================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.content-left.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.content-right.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Testimonial */
.testimonial {
    padding: var(--spacing-lg);
    background-color: var(--color-secondary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--color-white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.testimonial h4 {
    display: block;
    color: var(--color-light-bg);
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
}

/* Info Cards */
.info-cards {
    display: grid;
    gap: var(--spacing-md);
}

.info-card {
    padding: var(--spacing-lg);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-transform: uppercase;
}

.info-card p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}
.icon-heart-before::before {
  font-family: "Font Awesome 6 Free";
  content: "\f004";
  font-weight: 900;
  margin-right: 6px;
  color: #e63946; /* optioneel */
}

/* FAQ List */
.faq-list {
    margin: var(--spacing-md) 0;
}

.faq-list li {
    padding: var(--spacing-sm) 0 var(--spacing-sm) 30px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.faq-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.faq-list li a {
    color: var(--color-text);
    display: inline;
}

.faq-list li a:hover {
    color: var(--color-primary);
}

.content-right img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.contact-grid article {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-grid article.slide-in {
    animation: slideInUp 0.6s ease-out backwards;
}

.contact-grid article:nth-child(1) { animation-delay: 0.1s; }
.contact-grid article:nth-child(2) { animation-delay: 0.2s; }
.contact-grid article:nth-child(3) { animation-delay: 0.3s; }

.contact-grid h4 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: var(--spacing-sm);
}

/* Opening Hours */
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-list .day {
    font-weight: 600;
    color: var(--color-dark);
}

.hours-list .time {
    color: var(--color-text-light);
}

.opening-hours p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(233, 97, 50, 0.1);
}

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

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    border-bottom: 1px solid #e0e0e0;
    transition: all var(--transition-base);
}

.contact-item:hover {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-sm);
}

.contact-item img {
    width: 40px;
    height: 40px;
}

.contact-details strong {
    display: block;
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.contact-details address {
    font-style: normal;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--color-text-light);
    display: inline-block;
}

.contact-details a:hover {
    color: var(--color-primary);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--color-secondary);
    padding: var(--spacing-lg) 0;
}

.copyright {
    background-color: var(--color-secondary);
    padding: var(--spacing-sm) 0;
    text-align: center;
}

.copyright p {
    color: var(--color-white);
    font-size: 14px;
    margin: 0;
}

.credits {
    text-align: center;
    padding: var(--spacing-sm) 0;
    font-size: 12px;
    color: var(--color-dark);
}

.credits a {
    color: var(--color-white);
}

/* ========================================
   Animations
   ======================================== */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }
    
   
    
 .slide-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
}

.slider-btn {
    width: clamp(32px, 6vw, 40px);
    height: clamp(32px, 6vw, 40px);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
}

    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
  
}