/* style.css */

/*------------------------------------------------------------------
[Table of contents]

1. Root Variables & Base Styles
2. Tailwind Complements & Global Styles
3. Header & Navigation
4. Hero Section
5. Section Base Styles
6. Component Styles
    - Buttons (.btn)
    - Cards (.card)
    - Timeline (.timeline-item)
    - Forms (Contact)
    - Logos (Clientele/Partners)
    - Media Items
7. Specific Section Styling
    - Features
    - Workshops
    - Statistics (Parallax Background)
    - Insights (Timeline)
    - History (Timeline)
    - Resources
    - Clientele/Partners
    - Media
    - Contact
8. Footer
9. Specific Page Styles
    - success.html
    - privacy.html & terms.html
10. Utility Classes
11. Animations & Transitions (Microanimations)
-------------------------------------------------------------------*/

/* 1. Root Variables & Base Styles
-------------------------------------------------------------------*/
:root {
    /* Complementary Color Scheme */
    --color-primary: #3B82F6; /* Blue */
    --color-primary-dark: #2563EB;
    --color-secondary: #F97316; /* Orange */
    --color-secondary-dark: #EA580C;
    --color-neutral-light: #F3F4F6; /* Light Gray */
    --color-neutral: #6B7280;       /* Gray */
    --color-neutral-dark: #1F2937;    /* Dark Gray */
    --color-neutral-darkest: #111827; /* Very Dark Gray */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text-light: var(--color-neutral-light);
    --color-text-dark: var(--color-neutral-dark);
    --color-text-darkest: var(--color-neutral-darkest);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Work Sans', sans-serif;

    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-medium: all 0.3s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;

    /* Brutalism Elements */
    --border-width-strong: 2px;
    --border-width-extra-strong: 4px;
    --border-color-dark: var(--color-neutral-darkest);
    --border-color-primary: var(--color-primary);
    --border-color-secondary: var(--color-secondary);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-neutral-light);
    line-height: 1.7;
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apply fonts via Tailwind config, but can reinforce here */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-darkest);
    margin-bottom: 0.75em; /* Default bottom margin */
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h1 { font-size: 3rem; } /* ~48px */
h2 { font-size: 2.5rem; } /* ~40px */
h3 { font-size: 1.75rem; } /* ~28px */
h4 { font-size: 1.25rem; } /* ~20px */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--color-neutral); /* Slightly lighter than headings */
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove bottom space */
}

/* 2. Tailwind Complements & Global Styles
-------------------------------------------------------------------*/
.container {
    max-width: 1280px; /* Example max width */
}

/* Ensure high contrast text on dark backgrounds */
.dark-section {
    background-color: var(--color-neutral-darkest);
    color: var(--color-text-light);
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4, .dark-section h5, .dark-section h6 {
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.dark-section p {
    color: var(--color-text-light);
    opacity: 0.9;
}
.dark-section a {
    color: var(--color-primary); /* Keep links visible */
}
.dark-section a:hover {
    color: var(--color-secondary);
}

/* Background Image Defaults */
[style*="background-image"] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Text on Image Overlay - Reinforce from HTML style */
.text-on-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}
.text-on-image > * {
    position: relative;
    z-index: 2;
}

/* 3. Header & Navigation
-------------------------------------------------------------------*/
header {
    /* Tailwind handles sticky, bg, shadow, border */
    transition: var(--transition-medium);
}

header nav a {
    font-weight: 500; /* Work Sans medium */
}

header nav .btn {
    /* Adjust padding for nav buttons */
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem;
}

/* Mobile Menu Styling */
#mobile-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below header */
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    border-top: var(--border-width-strong) solid var(--border-color-dark);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 40; /* Below header (z-50) */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

#mobile-menu.active {
    display: block; /* Show when active */
    max-height: 500px; /* Animate open */
}

#mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-neutral-light);
    transition: var(--transition-fast);
}

#mobile-menu a:hover {
    background-color: var(--color-neutral-light);
    color: var(--color-primary);
    text-decoration: none;
}

#mobile-menu a:last-child {
    border-bottom: none;
}

#burger-menu svg {
    transition: transform 0.3s ease;
}
/* Optional: Animate burger icon */
/* #burger-menu.active svg { transform: rotate(90deg); } */

/* 4. Hero Section
-------------------------------------------------------------------*/
#hero {
    /* Tailwind handles min-h-screen, flex, items-center, justify-center, bg-cover, bg-center, bg-fixed */
    position: relative; /* For overlay */
    color: var(--color-white); /* Ensures text is white */
}

#hero h1 {
    color: var(--color-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

#hero p {
    color: var(--color-white);
    opacity: 0.95; /* Slightly less bright than heading */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

#hero .btn {
    /* Ensure buttons stand out on the dark background */
    border-color: var(--color-white);
    color: var(--color-white);
}
#hero .btn-secondary:hover {
     background-color: var(--color-white);
     color: var(--color-secondary); /* Use secondary text color on hover */
}
#hero .btn-primary {
    background-color: var(--color-primary); /* Primary button has solid background */
    border-color: var(--color-primary);
    color: var(--color-white);
}
#hero .btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Parallax is achieved via Tailwind's `bg-fixed` */

/* 5. Section Base Styles
-------------------------------------------------------------------*/
section {
    /* Tailwind handles padding: py-16 md:py-24 */
    overflow: hidden; /* Contain reveals */
}

section h2 {
    text-align: center;
    margin-bottom: 3rem; /* More space after section titles */
}

section > .container > p:first-of-type { /* Targeting intro paragraph */
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     text-align: center;
     margin-bottom: 3rem;
     font-size: 1.125rem; /* Slightly larger intro text */
     color: var(--color-neutral);
}

.dark-section > .container > p:first-of-type {
     color: var(--color-text-light);
     opacity: 0.9;
}


/* 6. Component Styles
-------------------------------------------------------------------*/

/* Buttons (.btn) - GLOBAL STYLES */
.btn, button[type="submit"], input[type="submit"] {
    display: inline-block;
    padding: 0.75rem 1.75rem; /* Generous padding */
    font-family: var(--font-heading); /* Bold heading font */
    font-size: 0.875rem; /* 14px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-width: var(--border-width-strong);
    border-style: solid;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-medium);
    text-decoration: none; /* Remove underline from links styled as buttons */
    box-shadow: 2px 2px 0px 0px var(--color-neutral-dark); /* Brutalist shadow */
}
.btn:hover, button[type="submit"]:hover, input[type="submit"]:hover {
    text-decoration: none; /* Keep underline off on hover */
    transform: translate(-1px, -1px); /* Slight move effect */
    box-shadow: 3px 3px 0px 0px var(--color-neutral-darkest);
}
.btn:active, button[type="submit"]:active, input[type="submit"]:active {
    transform: translate(1px, 1px); /* Press effect */
    box-shadow: 1px 1px 0px 0px var(--color-neutral-darkest);
}

.btn {
    border-color: var(--border-color-dark);
    color: var(--color-text-darkest);
    background-color: transparent;
}
.btn:hover {
    background-color: var(--color-neutral-darkest);
    color: var(--color-white);
}

.btn-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    box-shadow: 2px 2px 0px 0px var(--color-primary-dark);
}
.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 3px 3px 0px 0px var(--color-primary-dark);
}

.btn-secondary {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background-color: transparent;
     box-shadow: 2px 2px 0px 0px var(--color-secondary-dark);
}
.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
     box-shadow: 3px 3px 0px 0px var(--color-secondary-dark);
}

/* Specific button styles for dark sections or specific contexts */
.dark-section .btn {
    border-color: var(--color-white);
    color: var(--color-white);
    box-shadow: 2px 2px 0px 0px rgba(255, 255, 255, 0.5);
}
.dark-section .btn:hover {
    background-color: var(--color-white);
    color: var(--color-neutral-darkest);
    box-shadow: 3px 3px 0px 0px rgba(255, 255, 255, 0.7);
}
.dark-section .btn-primary {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 2px 2px 0px 0px var(--color-primary-dark);
}
.dark-section .btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: 3px 3px 0px 0px var(--color-primary-dark);
}
.dark-section .btn-secondary {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--color-white);
     box-shadow: 2px 2px 0px 0px var(--color-secondary-dark);
}
.dark-section .btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
     box-shadow: 3px 3px 0px 0px var(--color-secondary-dark);
}


/* Cards (.card) */
.card {
    /* Tailwind handles bg, overflow, shadow, border */
    border-width: var(--border-width-strong);
    border-color: var(--border-color-dark);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex; /* Ensure flex for centering */
    flex-direction: column; /* Stack image and content */
    height: 100%; /* Make cards in a grid equal height */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Tailwind lg shadow */
}

.card-image {
    /* Tailwind handles w-full, h-48, overflow-hidden */
    flex-shrink: 0; /* Prevent image container from shrinking */
    position: relative; /* For potential overlays if needed */
}

.card-image img {
    /* Tailwind handles w-full, h-full, object-cover */
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    /* Tailwind handles p-6 */
    padding: 1.5rem;
    flex-grow: 1; /* Allow content to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push elements like buttons down */
}
.card-content h3 {
    font-size: 1.25rem; /* 20px */
    margin-bottom: 0.75rem;
}
.card-content p {
    font-size: 0.95rem; /* 15px */
    margin-bottom: 1rem;
    flex-grow: 1; /* Allow paragraph to take space */
}
.card-content .btn, .card-content a[class*="btn"] { /* Target buttons/links styled as buttons */
    margin-top: 1rem; /* Space above button */
    align-self: flex-start; /* Align button to the left */
    padding: 0.4rem 0.8rem !important; /* Smaller padding for card buttons */
    font-size: 0.8rem !important;
}
.card-content .text-sm {
    font-size: 0.875rem; /* 14px */
}

/* Card centering for specific sections if needed */
.card-centered .card-content {
    text-align: center;
    align-items: center; /* Center content horizontally */
}
.card-centered .card-content .btn,
.card-centered .card-content a[class*="btn"] {
    align-self: center; /* Center button */
}

/* Timeline (.timeline-item) */
.timeline-item {
    /* Tailwind handles relative, pl, py, border-l */
    border-left-width: var(--border-width-extra-strong);
    border-color: var(--border-color-dark); /* Brutalist timeline */
    padding-left: 2rem; /* Adjust based on marker size */
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    border-left-color: transparent; /* Hide line for last item */
     padding-bottom: 0;
}
.timeline-item::before {
    /* Tailwind handles absolute, w-4, h-4, bg-primary, rounded-full, z-10, content */
    content: '';
    position: absolute;
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
    background-color: var(--color-primary);
    border: 3px solid var(--color-neutral-light); /* Match background */
    border-radius: 50%;
    left: -10px; /* Adjust position ( (width + border*2)/2 )*/
    top: 1.5rem; /* Align with text */
    z-index: 1;
}
.timeline-item h3 {
    margin-top: 0.1rem; /* Align better with marker */
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}
.timeline-item p {
    font-size: 1rem;
    color: var(--color-neutral);
}
.timeline-item span { /* Styling the date/marker text */
     position: absolute;
     left: -65px;
     top: 1.35rem;
     font-size: 0.85rem;
     font-weight: 600;
     color: var(--color-neutral);
     width: 50px; /* Ensure space */
     text-align: right;
}
@media (max-width: 640px) { /* sm breakpoint */
    .timeline-item {
        padding-left: 1.5rem; /* Smaller padding on mobile */
         padding-bottom: 2rem;
    }
     .timeline-item span {
         left: -55px; /* Adjust span position */
     }
     .timeline-item::before {
         left: -8px; /* Adjust marker position */
         top: 1.3rem;
     }
}

/* Forms (Contact) */
#contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: var(--border-width-strong) solid var(--border-color-dark); /* Brutalist border */
    background-color: var(--color-neutral-light);
    color: var(--color-text-darkest);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-medium);
    outline: none; /* Remove default outline */
}
#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); /* Focus ring */
}
#contact-form textarea {
    resize: vertical; /* Allow vertical resize */
    min-height: 120px;
}
#contact-form button[type="submit"] {
    /* Inherits .btn styles, can add specifics */
    width: 100%;
}
@media (min-width: 768px) {
    #contact-form button[type="submit"] {
        width: auto; /* Auto width on larger screens */
    }
}

/* Styling for the form container */
#contact .max-w-2xl { /* Targeting the form container */
     border-width: var(--border-width-extra-strong);
     border-color: var(--color-secondary);
     box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.2);
}


/* Logos (Clientele/Partners) */
#clientele img,
#partners img {
    max-height: 60px; /* Control logo height */
    width: auto; /* Maintain aspect ratio */
    filter: grayscale(50%); /* Subtle grayscale */
    opacity: 0.8;
    transition: var(--transition-medium);
}
#clientele img:hover,
#partners img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Media Items */
#media .card {
    background-color: var(--color-neutral-light); /* Ensure readability on wood texture */
}
#media .card-content a { /* Style 'Read More' links */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    display: inline-block;
    margin-top: 0.5rem;
}
#media .card-content a:hover {
    text-decoration: underline;
}


/* 7. Specific Section Styling
-------------------------------------------------------------------*/

/* Features */
#features .grid > div { /* Target feature blocks */
    border-width: var(--border-width-strong);
    border-color: var(--border-color-dark);
    box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.1);
    transition: var(--transition-medium);
}
#features .grid > div:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.15);
}
#features .grid > div svg {
    transition: transform var(--transition-medium);
}
#features .grid > div:hover svg {
    transform: scale(1.1);
}

/* Workshops */
#workshops .card {
    border-color: var(--border-color-secondary); /* Example: Use secondary for workshops */
    background-color: var(--color-neutral-dark); /* Darker cards */
}
#workshops .card h3 { color: var(--color-white); }
#workshops .card p { color: var(--color-text-light); opacity: 0.85; }
#workshops .card .btn { /* Button styling specific to workshop cards */
    align-self: flex-start;
}
#workshops .card .text-sm { /* Workshop duration */
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Statistics (Parallax Background) */
#statistics {
    /* Tailwind handles bg-fixed for parallax */
    position: relative; /* For pseudo-element overlay if needed */
    color: var(--color-white);
}
#statistics::before { /* Optional: Add another overlay if needed */
    /* content: ''; */
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)); */
    /* z-index: 0; */
}
#statistics > .container {
    position: relative; /* Ensure content is above pseudo-elements */
    z-index: 1;
}
#statistics span { /* The number */
    display: block;
    font-size: 4.5rem; /* Large numbers */
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
#statistics h3 {
    color: var(--color-white);
    text-shadow: none; /* Remove default shadow if needed */
    margin-bottom: 0.75rem;
}
#statistics p {
    color: var(--color-white);
    opacity: 0.9;
    max-width: 300px; /* Limit text width */
    margin-left: auto;
    margin-right: auto;
}

/* Insights (Timeline) */
#insights .timeline-item::before { background-color: var(--color-primary); }
#insights .timeline-item:nth-child(odd) h3 { color: var(--color-primary); }
#insights .timeline-item:nth-child(even) h3 { color: var(--color-secondary); }
#insights .timeline-item:nth-child(even)::before { background-color: var(--color-secondary); }


/* History (Timeline) */
#history .timeline-item { border-color: var(--border-color-dark); }
#history .timeline-item::before {
    background-color: var(--color-neutral-dark);
     border-color: var(--color-white); /* Contrast against bg */
}
#history .timeline-item h3 { color: var(--color-text-darkest); }

/* Resources */
#resources .card {
    border-color: var(--border-color-primary); /* Example border */
}
#resources .card:nth-child(even) {
    border-color: var(--border-color-secondary); /* Alternate border */
}
#resources .card h3 {
    font-size: 1.1rem; /* Slightly smaller heading */
    line-height: 1.4;
}
#resources .card p {
    font-size: 0.85rem; /* Smaller description text */
    line-height: 1.5;
     opacity: 0.8;
}
#resources .card .btn {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.75rem !important;
}

/* Contact */
#contact {
    /* Background texture and overlay handled inline */
}

/* 8. Footer
-------------------------------------------------------------------*/
footer {
    /* Tailwind handles bg, text color, border-t */
    border-top-width: var(--border-width-extra-strong);
    border-color: var(--color-primary);
}
footer h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li a {
    color: var(--color-text-light);
    opacity: 0.8;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block; /* Allows transforms */
}
footer ul li a:hover {
    opacity: 1;
    color: var(--color-primary); /* Highlight color on hover */
    text-decoration: none;
    transform: translateX(3px);
}
footer .border-t { /* Copyright section border */
    border-color: rgba(255, 255, 255, 0.2); /* Lighter border */
}
footer .opacity-70 { /* Copyright text */
    opacity: 0.7;
}

/* Footer Social Links (Text-Based) */
footer div:last-child ul li a { /* Target social links specifically */
   /* Add specific styles if needed, inherits general link styles */
   font-weight: 500; /* Make them slightly bolder */
}


/* 9. Specific Page Styles
-------------------------------------------------------------------*/

/* success.html */
.success-page body { /* Target body only if success-page class is added */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.success-page main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.success-page .success-content {
    max-width: 600px;
    background-color: var(--color-white);
    padding: 3rem;
    border: var(--border-width-extra-strong) solid var(--color-primary);
    box-shadow: 5px 5px 0px 0px var(--color-primary-dark);
}
.success-page h1 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.success-page p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.success-page .btn {
    /* Button styling is global */
}

/* privacy.html & terms.html */
/* Add class="content-page" to body or main on these pages */
.content-page main {
    padding-top: 120px; /* Adjust as needed based on header height */
    padding-bottom: 60px;
}

.content-page .content-container { /* Wrap content in this container */
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 2rem 3rem;
    border: var(--border-width-strong) solid var(--border-color-dark);
}

.content-page h1 {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-neutral-light);
    padding-bottom: 1rem;
}
.content-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}
.content-page h3 {
     margin-top: 1.5rem;
     margin-bottom: 0.8rem;
     color: var(--color-secondary);
}
.content-page ul, .content-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.content-page li {
    margin-bottom: 0.5rem;
}


/* 10. Utility Classes
-------------------------------------------------------------------*/
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Add more custom utilities if needed */


/* 11. Animations & Transitions (Microanimations)
-------------------------------------------------------------------*/
/* ScrollReveal base state (handled by library + JS) */
.reveal {
    visibility: hidden;
}

/* General Hover Transitions */
a, button, .btn, input[type="submit"], .card, #clientele img, #partners img {
    transition: var(--transition-medium); /* Default transition */
}

/* Add subtle scale/rotate on hover for icons if desired */
#features .p-4 svg {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
#features .grid > div:hover .p-4 svg {
    transform: scale(1.1) rotate(-5deg);
}

/* Cookie Consent Popup */
#cookie-popup {
    /* Styles are mostly inline via Tailwind/style attribute for simplicity */
    /* Ensure button style consistency */
}
#cookie-popup button {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.5rem 1.2rem;
    border-radius: 0; /* Brutalist */
    border-width: var(--border-width-strong);
    transition: var(--transition-fast);
}
#cookie-popup button:hover {
    /* Tailwind handles bg hover */
}
#cookie-popup a {
    color: var(--color-primary);
    font-weight: 500;
}
#cookie-popup a:hover {
    color: var(--color-secondary);
}