/* style.css */

/* -------------------------------------------------------------------------- */
/*                               Root Variables                               */
/* -------------------------------------------------------------------------- */
:root {
  /* Fonts */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;

  /* Pastel Color Palette */
  --pastel-primary-accent: #D8BFD8; /* Thistle - Main Accent for buttons, interactive elements */
  --pastel-primary-accent-darker: #c9a9c9; /* Darker shade for hover states */
  --pastel-secondary-accent: #B0E0E6; /* Powder Blue - For secondary elements, stat widgets */
  
  --pastel-bg-light: #F0E6FA;    /* Light Lavender - Main page background */
  --pastel-bg-medium: #E6E6FA;   /* Lavender - For cards, alternating sections */
  --pastel-bg-darker-contrast: #D1C4E9; /* Slightly darker pastel for subtle contrasts */

  /* Text Colors */
  --text-dark: #333333;          /* Main body text on light backgrounds */
  --text-light: #FFFFFF;         /* Text on dark backgrounds/overlays */
  --text-heading-dark: #222222;  /* Headings on light backgrounds */
  --text-muted: #585858;         /* Muted text, subtitles */
  --text-link: var(--pastel-primary-accent-darker);
  --text-link-hover: #a78aa7;

  /* Borders & Shadows - Biomorphic & Corporate */
  --border-radius-soft: 8px;     /* General rounded corners for inputs, smaller elements */
  --border-radius-biomorphic: 15px; /* Larger, softer curves for cards, main containers */
  --box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.07);
  --box-shadow-medium: 0 6px 16px rgba(0, 0, 0, 0.1);
  --box-shadow-heavy: 0 10px 20px rgba(0,0,0,0.12);
  --box-shadow-inset: inset 0 2px 4px rgba(0,0,0,0.05);

  /* Transitions - Morphing Style */
  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother morphing */

  /* Navbar & Content Offsets */
  --navbar-height: 3.25rem; /* Default Bulma navbar height */
  --content-offset-top: calc(var(--navbar-height) + 1.5rem); /* For fixed navbar */

  /* Spacing */
  --spacing-small: 0.5rem;
  --spacing-medium: 1rem;
  --spacing-large: 1.5rem;
  --spacing-xlarge: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                               Global Styles                                */
/* -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll from AOS or other elements */
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--pastel-bg-light);
  line-height: 1.7;
  font-size: 16px; /* Base font size */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
  font-family: var(--font-heading);
  color: var(--text-heading-dark);
  font-weight: 700; /* Manrope often looks good bolder */
}

.title {
  color: var(--text-heading-dark);
}
.subtitle {
  color: var(--text-muted);
  font-weight: 400; /* Rubik regular for subtitles */
}

a {
  color: var(--text-link);
  transition: color var(--transition-fast);
  text-decoration: none;
}
a:hover {
  color: var(--text-link-hover);
  text-decoration: underline;
}

/* Global Button Styles */
.button, button, input[type="submit"], input[type="button"] {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-soft);
  transition: background-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
  padding: 0.75em 1.5em;
  box-shadow: var(--box-shadow-light);
  border: 1px solid transparent;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--box-shadow-medium);
}
.button:active, button:active, input[type="submit"]:active, input[type="button"]:active {
  transform: translateY(0px) scale(1);
  box-shadow: var(--box-shadow-inset);
}

/* Bulma Button Customization */
.button.is-primary {
  background-color: var(--pastel-primary-accent);
  border-color: transparent;
  color: var(--text-dark); /* Ensure contrast on pastel button */
}
.button.is-primary:hover {
  background-color: var(--pastel-primary-accent-darker);
  color: var(--text-dark);
}
.button.is-primary.is-outlined {
  background-color: transparent;
  border-color: var(--pastel-primary-accent);
  color: var(--pastel-primary-accent);
}
.button.is-primary.is-outlined:hover {
  background-color: var(--pastel-primary-accent);
  color: var(--text-dark);
}

.button.is-large {
  font-size: 1.15rem;
  padding: 1em 2em;
}

/* Inputs and Textareas */
.input, .textarea {
  font-family: var(--font-body);
  border-radius: var(--border-radius-soft);
  border: 1px solid var(--pastel-bg-darker-contrast);
  box-shadow: var(--box-shadow-inset);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.input:focus, .textarea:focus {
  border-color: var(--pastel-primary-accent);
  box-shadow: 0 0 0 0.125em rgba(216, 191, 216, 0.35); /* Using pastel-primary-accent with alpha */
}
.label {
    color: var(--text-heading-dark);
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/*                                  Sections                                  */
/* -------------------------------------------------------------------------- */
.section {
  padding: 4rem 1.5rem; /* Increased padding for better spacing */
}
.section-title, .section .title.is-2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: var(--text-heading-dark);
  font-size: 2.25rem; /* Larger section titles */
}
@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  .section-title, .section .title.is-2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

/* Parallax Section Styling */
.parallax-section {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--text-light); /* Default text color for parallax sections */
}
.parallax-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%); /* Darker overlay */
  z-index: 1;
}
.parallax-section .hero-body .container,
.parallax-section .section .container, /* For contact form parallax */
.parallax-section .content { /* Ensure content is above overlay */
  position: relative;
  z-index: 2;
}
.parallax-section .title,
.parallax-section .subtitle,
.parallax-section .label,
.parallax-section p {
  color: var(--text-light) !important; /* Force light text on parallax */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Enhance readability */
}
.parallax-section a:not(.button) {
  color: var(--pastel-secondary-accent) !important;
}
.parallax-section a:not(.button):hover {
  color: var(--text-light) !important;
}


/* -------------------------------------------------------------------------- */
/*                                Navbar/Header                               */
/* -------------------------------------------------------------------------- */
.navbar.is-fixed-top {
  background-color: rgba(240, 230, 250, 0.9); /* var(--pastel-bg-light) with slight transparency */
  backdrop-filter: blur(10px); /* Glassmorphism touch */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar-item, .navbar-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color var(--transition-fast);
}
.navbar-item:hover, .navbar-link:hover,
.navbar-item.is-active, .navbar-link.is-active {
  background-color: transparent !important;
  color: var(--pastel-primary-accent-darker) !important;
}
.navbar-burger span {
  background-color: var(--text-dark) !important;
  height: 2px; /* Thinner burger lines */
}
.navbar-menu {
  background-color: rgba(240, 230, 250, 0.9); /* Match navbar for mobile */
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow-light);
  border-bottom-left-radius: var(--border-radius-soft);
  border-bottom-right-radius: var(--border-radius-soft);
}
@media screen and (max-width: 1023px) {
  .navbar-menu.is-active {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--navbar-height);
    border-top: 1px solid var(--pastel-bg-darker-contrast);
  }
}


/* -------------------------------------------------------------------------- */
/*                                Hero Section                                */
/* -------------------------------------------------------------------------- */
#hero.hero {
  background-position: center center;
  background-size: cover;
  color: var(--text-light);
}
#hero .hero-body {
  padding-top: calc(var(--navbar-height) + 4rem); /* Adjust for fixed navbar and more top space */
  padding-bottom: 4rem;
}
#hero .title {
  font-size: 3rem; /* Larger hero title */
  font-weight: 800;
  margin-bottom: var(--spacing-medium);
  color: var(--text-light) !important;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
#hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-large);
  color: var(--text-light) !important;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
#hero .button.is-primary {
  padding: 1em 2.5em;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #hero .title {
    font-size: 2.2rem;
  }
  #hero .subtitle {
    font-size: 1.2rem;
  }
}


/* -------------------------------------------------------------------------- */
/*                               Info Card Styles                             */
/* -------------------------------------------------------------------------- */
.card.info-card, .card { /* Apply to all cards for consistency */
  background-color: var(--pastel-bg-medium);
  border-radius: var(--border-radius-biomorphic);
  box-shadow: var(--box-shadow-medium);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  overflow: hidden; /* Ensure content respects border-radius */
  display: flex;
  flex-direction: column;
  height: 100%; /* Make cards in a row equal height */
}
.card.info-card:hover, .card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--box-shadow-heavy);
}

/* STRICKT: card image centering and object-fit */
.card .card-image {
  width: 100%;
  overflow: hidden; /* Important for object-fit and border-radius */
  /* Fixed height for card images, adjust as needed for different card types */
  /* This can be overridden by Bulma's .image.is-4by3 etc. if figure is used */
}
.card .card-image .image { /* If Bulma's figure.image is used */
  display: block;
}
.card .card-image img {
  width: 100%;
  height: 200px; /* Consistent image height for cards like in About section */
  object-fit: cover;
  display: block; /* Remove any extra space below image */
  border-top-left-radius: var(--border-radius-biomorphic); /* If image is first element */
  border-top-right-radius: var(--border-radius-biomorphic);
  /* If the card image is not the first child, remove top radius */
}
/* Team member cards often use 1by1 aspect ratio, handled by Bulma's .is-1by1 */
#team .card .card-image img { /* For team cards with specific aspect ratio */
  height: auto; /* Let Bulma's aspect ratio control this */
  border-radius: var(--border-radius-biomorphic) var(--border-radius-biomorphic) 0 0;
}

.card .card-content {
  padding: var(--spacing-large);
  flex-grow: 1; /* Allow card content to expand */
  display: flex;
  flex-direction: column;
}
.card .card-content .title, .card .card-content .subtitle {
  margin-bottom: var(--spacing-medium);
}
.card .card-content .title.is-4, .card .card-content .title.is-5 {
  color: var(--text-heading-dark);
}
.card .card-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  flex-grow: 1; /* Push buttons/links to bottom if any */
}
/* Ensure content in cards is centered if structure is simple */
/* .card-content.has-text-centered is preferred via Bulma */
#team .card .card-content {
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/*                           Specific Section Styles                          */
/* -------------------------------------------------------------------------- */

/* About Section - Uses .info-card */
#about .card .card-content h3 {
  margin-bottom: var(--spacing-small);
}

/* Events Calendar Section */
#events {
  background-color: var(--pastel-bg-medium);
}
#events .card {
  background-color: var(--pastel-bg-light); /* Contrast with section bg */
}
.animated-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-medium) auto;
  background: linear-gradient(135deg, var(--pastel-primary-accent), var(--pastel-secondary-accent));
  border-radius: 50%; /* Biomorphic circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.8rem;
  box-shadow: var(--box-shadow-light);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.animated-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--box-shadow-medium);
}
#events .card-content h4 {
    margin-bottom: var(--spacing-small);
}

/* Team Section */
#team .card {
  text-align: center;
}
#team .card .card-image {
  padding: var(--spacing-medium); /* Inner padding for image */
  background: linear-gradient(to bottom right, var(--pastel-bg-light), var(--pastel-bg-medium));
  border-top-left-radius: var(--border-radius-biomorphic);
  border-top-right-radius: var(--border-radius-biomorphic);
}
#team .card .card-image img {
  border-radius: 50%; /* Circular team member photos */
  border: 4px solid var(--text-light);
  box-shadow: var(--box-shadow-light);
  width: 150px; /* Fixed size for team images */
  height: 150px;
  margin: 0 auto;
  object-fit: cover;
}
#team .card .card-content .title.is-5 {
  margin-top: var(--spacing-small);
  margin-bottom: 0.25rem;
}
#team .card .card-content .subtitle.is-6 {
  color: var(--pastel-primary-accent-darker);
  margin-bottom: var(--spacing-small);
}
#team .card .card-content .is-size-7 {
    font-size: 0.85rem !important;
    color: var(--text-muted);
}


/* Sustainability Section */
#sustainability.parallax-section {
    /* Background image and overlay already handled by general parallax styles */
}
.stat-widget {
  background-color: rgba(255, 255, 255, 0.15); /* Glassmorphism on parallax */
  backdrop-filter: blur(8px);
  padding: var(--spacing-large);
  border-radius: var(--border-radius-biomorphic);
  text-align: center;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-widget .animated-icon {
    background: transparent; /* Override default for this context */
    color: var(--pastel-secondary-accent);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-small);
    box-shadow: none;
}
.stat-widget .stat-number {
  font-size: 2.8em;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 0.1em;
}
.stat-widget .stat-label {
  font-size: 1em;
  font-weight: 500;
  color: var(--pastel-bg-light); /* Lighter label for contrast */
  margin-bottom: 0.5em;
}
.stat-widget p.is-size-7 {
    color: var(--pastel-bg-medium) !important;
    font-size: 0.85rem !important;
}

/* Research Section */
#research img {
  border-radius: var(--border-radius-biomorphic);
  box-shadow: var(--box-shadow-medium);
  margin-top: var(--spacing-large);
  max-width: 100%;
  height: auto;
}
#research .has-text-justified p {
  margin-bottom: var(--spacing-medium);
}

/* External Resources Section */
#external-resources {
  background-color: var(--pastel-bg-medium);
}
#external-resources .card {
  background-color: var(--pastel-bg-light);
}
#external-resources .card h4 a {
  color: var(--text-heading-dark);
  font-weight: 600;
}
#external-resources .card h4 a:hover {
  color: var(--pastel-primary-accent-darker);
}

/* Pricing Section (Bonuses) */
#pricing .card {
  border: 2px solid transparent;
  transition: border-color var(--transition-smooth);
}
#pricing .card:hover {
    border-color: var(--pastel-primary-accent);
}
#pricing .card .is-size-1 { /* For "140 FS" */
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--pastel-primary-accent-darker) !important;
  line-height: 1;
  margin: var(--spacing-small) 0;
}
#pricing .card .button.is-static {
    background-color: var(--pastel-bg-darker-contrast);
    color: var(--text-muted);
    cursor: default;
    box-shadow: var(--box-shadow-inset);
}
#pricing .card .button.is-static:hover {
    transform: none;
    box-shadow: var(--box-shadow-inset);
}

/* Testimonials Section */
#testimonials {
  background-color: var(--pastel-bg-medium);
}
#testimonials .card {
  background-color: var(--pastel-bg-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#testimonials .card-content .subtitle.is-6 {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: var(--spacing-medium);
  flex-grow: 1;
}
#testimonials .card-content p:last-child strong { /* Author */
  color: var(--pastel-primary-accent-darker);
  font-weight: 600;
}

/* FAQ Section */
.accordion-item {
  background-color: var(--pastel-bg-medium);
  margin-bottom: var(--spacing-medium);
  border-radius: var(--border-radius-biomorphic);
  overflow: hidden; /* For smooth open/close with border-radius */
  box-shadow: var(--box-shadow-light);
  transition: box-shadow var(--transition-smooth);
}
.accordion-item:hover {
    box-shadow: var(--box-shadow-medium);
}
.accordion-header {
  background-color: var(--pastel-primary-accent);
  color: var(--text-dark);
  padding: var(--spacing-medium) var(--spacing-large);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: background-color var(--transition-fast);
  position: relative; /* For pseudo-element arrow */
}
.accordion-header:hover {
  background-color: var(--pastel-primary-accent-darker);
}
.accordion-header::after { /* Arrow indicator */
    content: '+';
    position: absolute;
    right: var(--spacing-large);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform var(--transition-smooth);
}
.accordion-item.active .accordion-header::after { /* Or when content is visible */
    transform: translateY(-50%) rotate(45deg);
}
.accordion-content {
  padding: var(--spacing-large);
  border-top: 1px solid var(--pastel-primary-accent-darker);
  background-color: var(--pastel-bg-light);
  color: var(--text-dark);
  /* display: none; is handled by JS */
}
.accordion-content p {
  margin-bottom: var(--spacing-small);
}

/* Contact Section */
#contact.parallax-section {
  /* Styles already defined */
}
#contact .label {
    color: var(--text-light) !important; /* Ensure labels are light on parallax */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
#contact .input, #contact .textarea {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent inputs */
    border-color: var(--pastel-bg-darker-contrast);
    color: var(--text-dark);
}
#contact .input::placeholder, #contact .textarea::placeholder {
    color: var(--text-muted);
}
#contact .input:focus, #contact .textarea:focus {
    background-color: var(--text-light);
}
#contact .button.is-primary {
    min-width: 200px; /* Wider contact button */
}


/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */
.footer {
  background-color: var(--pastel-bg-medium);
  color: var(--text-dark);
  padding: 3rem 1.5rem 2rem; /* More padding top/bottom */
  border-top: 2px solid var(--pastel-bg-darker-contrast);
}
.footer .title.is-5 {
  color: var(--text-heading-dark);
  margin-bottom: var(--spacing-medium);
}
.footer p, .footer ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.footer a {
  color: var(--text-link);
  font-weight: 500;
}
.footer a:hover {
  color: var(--text-link-hover);
  text-decoration: underline;
}
.footer .column.is-one-third:nth-child(3) p a { /* Social links */
    display: inline-block;
    margin-bottom: var(--spacing-small) / 2;
    padding: 0.25em 0; /* Add some vertical space for text links */
}
.footer .content.has-text-centered p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: var(--spacing-large);
}

/* -------------------------------------------------------------------------- */
/*                            Specific Page Styles                            */
/* -------------------------------------------------------------------------- */

/* success.html styling */
body.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--pastel-bg-light);
  text-align: center;
  padding: var(--spacing-large);
}
.success-page .success-container {
  background-color: var(--pastel-bg-medium);
  padding: var(--spacing-xlarge) var(--spacing-xlarge);
  border-radius: var(--border-radius-biomorphic);
  box-shadow: var(--box-shadow-heavy);
  max-width: 600px;
}
.success-page .success-container .icon { /* For a potential success icon */
  font-size: 4rem;
  color: var(--pastel-primary-accent-darker);
  margin-bottom: var(--spacing-medium);
}
.success-page .title {
  color: var(--text-heading-dark);
  margin-bottom: var(--spacing-medium);
}
.success-page p {
  color: var(--text-dark);
  margin-bottom: var(--spacing-large);
}

/* privacy.html & terms.html styling */
body.legal-page .main-content { /* Assuming a wrapper div with this class */
  padding-top: var(--content-offset-top); /* Offset for fixed navbar */
  padding-bottom: var(--spacing-xlarge);
}
body.legal-page .main-content .container {
    max-width: 800px; /* Limit width for readability */
}
body.legal-page .main-content h1,
body.legal-page .main-content h2,
body.legal-page .main-content h3 {
    margin-top: var(--spacing-large);
    margin-bottom: var(--spacing-medium);
}
body.legal-page .main-content p,
body.legal-page .main-content ul,
body.legal-page .main-content ol {
    margin-bottom: var(--spacing-medium);
    line-height: 1.8;
}
body.legal-page .main-content ul,
body.legal-page .main-content ol {
    padding-left: var(--spacing-large);
}


/* -------------------------------------------------------------------------- */
/*                          Cookie Consent Popup                              */
/* -------------------------------------------------------------------------- */
#cookieConsentPopup {
  display: none; /* JS will handle visibility */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.97); /* Darker, more opaque */
  color: var(--text-light);
  padding: var(--spacing-medium) var(--spacing-large);
  box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
}
#cookieConsentPopup .cookie-content-wrapper { /* For better layout control */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-medium);
    max-width: 1200px; /* Limit width on large screens */
    margin: 0 auto;
}
#cookieConsentPopup p {
  margin: 0;
  flex-grow: 1;
}
#cookieConsentPopup p a {
  color: var(--pastel-secondary-accent) !important;
  text-decoration: underline;
}
#cookieConsentPopup p a:hover {
  color: var(--text-light) !important;
}
#cookieConsentPopup button#acceptCookieButton {
  background-color: var(--pastel-primary-accent);
  color: var(--text-dark);
  border: none;
  padding: 0.6em 1.2em;
  border-radius: var(--border-radius-soft);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  white-space: nowrap; /* Prevent button text wrapping */
  transition: background-color var(--transition-fast);
}
#cookieConsentPopup button#acceptCookieButton:hover {
  background-color: var(--pastel-primary-accent-darker);
}
@media screen and (max-width: 768px) {
    #cookieConsentPopup .cookie-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    #cookieConsentPopup p {
        margin-bottom: var(--spacing-medium);
    }
}

/* Read More Link Style */
.read-more-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--pastel-primary-accent-darker);
    text-decoration: none;
    padding: 0.25em 0;
    position: relative;
    transition: color var(--transition-fast);
}
.read-more-link::after {
    content: '→'; /* Arrow */
    display: inline-block;
    margin-left: 0.3em;
    transition: transform var(--transition-fast);
}
.read-more-link:hover {
    color: var(--text-link-hover);
}
.read-more-link:hover::after {
    transform: translateX(3px);
}

/* Utility class for full height sections if ever needed for very specific cases */
.is-full-height-vh {
    min-height: 100vh;
}
.is-vertically-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
html,body{
  overflow-x: hidden;
}