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

/* CSS Custom Properties - Color Palette */
:root {
  --color-primary: #4A9B9C;
  --color-primary-hover: #3D8283;
  --color-accent: #C4A35A;
  --color-dark: #1A1A1A;
  --color-text: #1A1A1A;
  --color-light-bg: #F8F6F3;
  --color-alt-bg: #E8E4DF;
  --color-footer: #2A2A2A;
  --color-white: #ffffff;
  --color-button-hover: #37474f;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}
.skip-link:focus {
    top: 0;
}

.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 100vh;
}

body {
    font-family: 'Inter', sans-serif;
    margin:0;
    display: flex;
    flex-direction: column;
    flex-grow: 4;
    flex-shrink: 4;
}


.scrollable-element {
  scrollbar-width: none;
}


/*Fonts*/

.title {
    font-family: 'DM Serif Display', serif;
    font-size: 4.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 400;
    color: #fff;
  }
.title span{
  /*font-weight: 600;*/
    /*background-color: white;*/
} 
.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: #fff;
    text-shadow:
      0 0 20px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(0, 0, 0, 0.3),
      0 2px 4px rgba(0, 0, 0, 0.4);
  }
.text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    font-style: normal;
    color: #1A1A1A;
    line-height: 1.7;
    letter-spacing: 0.01em;
  }
.text-bold {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    font-style: normal;
    color: #1A1A1A;
    line-height: 1.7;
    letter-spacing: 0.01em;
  }
.text-center {
    text-align: center;
  }
.text-ak {
  text-align: right;
}
.text-bk {
  text-align: left;
}
.text-footer {
  color: #E0E0E0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.text-footer:hover {
  color: var(--color-white);
}

a.text-footer {
  position: relative;
}

a.text-footer:hover {
  color: var(--color-accent);
}
.text-cookie {
  color: #9d9d9d;
  font-weight: normal;
  letter-spacing: 0.2px;
  /*text-decoration: none;*/
}
.text-nostyle {
  text-decoration: none;
    color: #1A1A1A;
  font-size: 0.825rem;
}
.text-small{
  font-size: 0.925rem;
  line-height: 1.125rem;
}
.text-twitter {
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  color: #1A1A1A;
  font-size: 1rem;
}
.hugetext {
    font-size: 6rem;
  }
.heading1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1A1A1A;
    font-weight: 400;
    text-align: left;
    letter-spacing: -0.01em;
  }
.handwriting {
  font-family: "Caveat";
  font-size: 1.8rem;
}

/* Editorial quote block */
.quote-block {
  border-left: 3px solid var(--color-primary);
  padding: 1em 0 1em 2em;
  margin: 0;
  max-width: 700px;
}

/* Compact story section for quotes */
.story.compact {
  padding-top: 0;
  padding-bottom: 0;
}

.quote-block .handwriting {
  font-size: 2.2rem;
  line-height: 1.4;
  color: var(--color-dark);
  margin: 0;
}

.quote-block .quote-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
  margin-top: 1em;
  letter-spacing: 0.02em;
}

/* Dictionary definition card */
.definition-card {
  background-color: var(--color-footer);
  border-radius: 16px;
  padding: 2em 2.5em;
  max-width: 500px;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.definition-card .word {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.25em 0;
}

.definition-card .pronunciation {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75em 0;
}

.definition-card .pronunciation .pos {
  font-style: italic;
  margin: 0 0.5em;
}

.definition-card .pronunciation .alt-spelling {
  color: rgba(255, 255, 255, 0.7);
}

.definition-card .meaning {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 0.5em 0;
}

.definition-card .example {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: var(--color-footer);
  color: var(--color-white);
  text-align: center;
  padding: 0.5em 0.3em;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;

  width: 10em;
  bottom: 100%;
  left: 50%; 
  margin-left: -5em;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-footer) transparent transparent transparent;
}

.item{
    padding: 2em;
    display: flex;
    flex-direction: column;
    flex: 1 1 10rem;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-decoration: none;
}

/* Content cards with subtle shadow */
.item-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5em;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.item-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}


.introitem, .howitem, .whyitem, .plotitem, .pricingitem {
    /*border: 1px solid black;*/
}

.introitem {
    padding: 2em;
}

.donation1 {
  border: 6px solid #AD8A56;
  /*border: 3px solid red;*/
  border-radius: 15px;
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 1em;
  justify-content: flex-start;
}
.donation2 {
  border: 6px solid #B4B4B4;
  /*border: 3px solid red;*/
  border-radius: 15px;
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 1em;
  justify-content: flex-start;
}
.donation3 {
  border: 6px solid #C9B037;
  /*border: 3px solid red;*/
  border-radius: 15px;
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 1em;
  justify-content: flex-start;
}
.donation4 {
  border: 6px solid #007DB2;
  /*border: 3px solid red;*/
  border-radius: 15px;
  /*margin-right: 1em;*/
  margin-bottom: 1em;
  padding: 1em;
  justify-content: flex-start;
}
.crowdfunder-bonus {
  /*border: 6px solid #f44336;*/
  /*border: 3px solid red;*/
  border-radius: 15px;
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 1em;
  justify-content: flex-start;
}
ul.p {
  list-style: none;
  margin: 0;
  /*margin-bottom: 50px;*/
  padding: 0;
  text-align: left;
}
ul.p li:before
{
    content: '\2713';
    margin: 0 0em;    /* any design */
}
ul.p li{
    margin-top: 10px;
    /*border:1px solid grey;*/
}

ul.p li:first-child {
    margin-top:0;
}

video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

/* Hide video play button overlay when autoplay is blocked */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

video-river {
  min-width: 100%;
  min-height: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 20;
}

.header-intro-wrapper{
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
}

.header-intro-wrapper.gradient {
    min-height: 100vh;
}

/* Only show fallback when video can't autoplay */
.header-intro-wrapper.gradient.video-fallback {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        transparent 60%,
        rgba(248, 246, 243, 0.3) 75%,
        rgba(248, 246, 243, 0.7) 90%,
        var(--color-light-bg) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-dark);
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 5;
}

.scroll-indicator span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Hero bottom fade */
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(248, 246, 243, 0.1) 30%,
        rgba(248, 246, 243, 0.4) 60%,
        rgba(248, 246, 243, 0.8) 85%,
        var(--color-light-bg) 100%);
    pointer-events: none;
}

img {max-width:100%;}

.photo-card {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header {
    padding: 1em;
    z-index: 10;
    position: relative;
}

.banner{
    fill: white;
}


/*Set main element paddings*/
@media (min-width:  68em) {
    .how, .whygrid, .plot, .icetrust, .pricing, .benefits, .story {
        padding-left: 19.1%;
        padding-right: 19.1%;
        padding-top: 5em;
        padding-bottom: 5em;
    }
    .intro {
        padding-left: 19.1%;
        padding-right: 19.1%;
    }
    .cookie-consent-banner {
        width: 35%;
        margin-left: 60%;
        margin-bottom: 3em;
        border-radius: 12px;
    }
}
@media (max-width:  68em) {
    .how, .whygrid, .plot, .icetrust, .pricing, .benefits, .story {
        padding-left: 1.5em;
        padding-right: 1.5em;
        padding-top: 3em;
        padding-bottom: 3em;
    }
    .intro {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    .cookie-consent-banner {
        width: 100%;
    }
}

.intro {
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12rem;
    position: relative;
    z-index: 10;
}

.plot {
    background-color: var(--color-light-bg);
    position: static;
    flex: 0 0 6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.icetrust {
    background-color: var(--color-white);
    position: static;
    flex: 0 0 6;
    min-height: auto;
    background-size:cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
}

.benefits {
    background-color: var(--color-light-bg);
    position: static;
    flex: 0 0 6;
    min-height: auto;
    background-size:cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
}

.whygrid {
    background-color: var(--color-alt-bg);
    position: static;
    flex: 0 0 6;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.whyrow {
    position: static;
    flex: 0 0 6;
    min-height: 30em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Why grid icon styling */
.whygrid .item .text {
    margin-top: 1em;
}

/* Benefits section styling */
.benefits .text strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Animated underline for text links */
.text a:not(.button):not(.text-nostyle) {
    position: relative;
    color: var(--color-primary);
    text-decoration: none;
}

.text a:not(.button):not(.text-nostyle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.text a:not(.button):not(.text-nostyle):hover::after {
    width: 100%;
}

/* Smooth transitions for interactive elements */
a, button, input, .item {
    transition: all 0.2s ease;
}

.wide-box {
    background-color: var(--color-white);
    position: static;
    flex: 0 0 6;
    height: 50vh;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wide-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story {
    background-color: var(--color-white);
    position: static;
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
}

/* ================================================
   UPDATES SECTION - Nordic Editorial Style
   Inspired by Kinfolk/Cereal magazine aesthetics
   ================================================ */

.updates-section {
    background-color: var(--color-light-bg);
    padding: 6em 19.1%;
    min-height: 100vh;
    position: relative;
}

/* Subtle texture overlay for depth */
.updates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.updates-section .heading1 {
    font-size: 3.5rem;
    margin-bottom: 0.3em;
    position: relative;
    display: inline-block;
}

/* Elegant underline accent */
.updates-section .heading1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

@media (max-width: 68em) {
    .updates-section {
        padding: 4em 1.5em;
    }
    .updates-section .heading1 {
        font-size: 2.5rem;
    }
}

.updates-intro {
    color: #6B7280;
    font-size: 1.15rem;
    margin-bottom: 4em;
    max-width: 540px;
    line-height: 1.8;
    font-weight: 300;
}

/* ---- Featured Update - Hero Card ---- */
.update-featured {
    background: var(--color-white);
    border-radius: 2px;
    padding: 0;
    margin-bottom: 5em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04),
                0 8px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    overflow: hidden;
    border: none;
}

.update-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 140px;
    background: linear-gradient(180deg, var(--color-primary) 0%, #3D8384 100%);
}

@media (max-width: 48em) {
    .update-featured {
        grid-template-columns: 1fr;
    }
    .update-featured::before {
        width: 100%;
        height: 100px;
        bottom: auto;
    }
}

.update-featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    color: var(--color-primary);
    padding: 0.5em 0;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-primary);
}

.update-featured-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    position: relative;
    z-index: 1;
}

.update-day {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    color: white;
    line-height: 1;
    font-weight: 400;
}

.update-month {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5em;
}

@media (max-width: 48em) {
    .update-featured-date {
        padding: 1.5em;
        flex-direction: row;
        gap: 1em;
        justify-content: flex-start;
    }
    .update-day {
        font-size: 2.5rem;
    }
    .update-month {
        margin-top: 0;
    }
}

.update-featured-content {
    padding: 3em;
    padding-top: 3.5em;
}

@media (max-width: 48em) {
    .update-featured-content {
        padding: 2em;
    }
}

.update-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    color: var(--color-dark);
    margin: 0 0 1.25em 0;
    line-height: 1.35;
    font-weight: 400;
}

.update-pullquote {
    background: linear-gradient(135deg, rgba(74, 155, 156, 0.08) 0%, rgba(74, 155, 156, 0.03) 100%);
    border-left: 3px solid var(--color-primary);
    padding: 1.5em 1.75em;
    margin: 2em 0;
    font-style: normal;
    border-radius: 0 4px 4px 0;
    position: relative;
}

.update-pullquote strong {
    color: var(--color-primary);
    font-weight: 600;
}

.update-list {
    list-style: none;
    padding: 0;
    margin: 1.5em 0;
}

.update-list li {
    position: relative;
    padding-left: 1.75em;
    margin-bottom: 1em;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
}

.update-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 500;
}

/* ---- Timeline Section ---- */
.updates-timeline {
    position: relative;
    padding-left: 0;
    margin-top: 2em;
}

/* Section divider before timeline */
.updates-timeline::before {
    content: 'Archive';
    position: relative;
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 2.5em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--color-alt-bg);
}

/* ---- Update Cards ---- */
.update-card {
    background: var(--color-white);
    border-radius: 2px;
    padding: 2.25em;
    margin-bottom: 1.25em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02),
                0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 2em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.update-card:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02),
                0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: var(--color-alt-bg);
}

/* Remove the timeline dots */
.update-card::before {
    display: none;
}

@media (max-width: 48em) {
    .update-card {
        grid-template-columns: 1fr;
        padding: 1.75em;
        gap: 1em;
    }
}

.update-card-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.25em;
    border-right: 1px solid var(--color-alt-bg);
    padding-right: 1.5em;
}

@media (max-width: 48em) {
    .update-card-date {
        flex-direction: row;
        align-items: center;
        gap: 0.75em;
        border-right: none;
        border-bottom: 1px solid var(--color-alt-bg);
        padding-right: 0;
        padding-bottom: 1em;
    }
}

.update-card-date .update-day {
    font-size: 2.25rem;
    color: var(--color-dark);
}

.update-card-date .update-month {
    color: #9CA3AF;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.update-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.update-card-content .text {
    margin: 0;
    color: #4B5563;
    line-height: 1.75;
}

/* ---- Milestone Cards ---- */
.update-card-highlight {
    border: 1px solid rgba(196, 163, 90, 0.3);
    background: linear-gradient(135deg,
        var(--color-white) 0%,
        rgba(196, 163, 90, 0.03) 100%);
}

.update-card-highlight:hover {
    border-color: var(--color-accent);
}

.update-card-highlight .update-card-date {
    border-right-color: rgba(196, 163, 90, 0.3);
}

.update-card-highlight .update-card-date .update-day {
    color: var(--color-accent);
}

.update-milestone {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 0.75em 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.update-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.update-card:nth-child(1) { animation-delay: 0.1s; }
.update-card:nth-child(2) { animation-delay: 0.15s; }
.update-card:nth-child(3) { animation-delay: 0.2s; }
.update-card:nth-child(4) { animation-delay: 0.25s; }
.update-card:nth-child(5) { animation-delay: 0.3s; }
.update-card:nth-child(6) { animation-delay: 0.35s; }
.update-card:nth-child(7) { animation-delay: 0.4s; }

/*.howtitle {
    background-color: #fff;
    position: static;
    flex: 0 0 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.how {
    background-color: #fff;
    position: static;
    flex: 0 0 6;
    min-height: 20em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.honorship {
    background-color: #fff;
    padding: 2em;
    position: static;
    flex: 0 0 6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pricing {
    background-color: #eee;
    position: static;
    flex: 0 0 6;
    min-height: 30em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}*/

.flex-grid {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
}
.flex-grid .col {
  flex: 1;
}
.flex-grid-thirds {
  display: flex;
  justify-content: space-between;
}
.flex-grid-thirds .col {
  width: 32%;
}

@media (max-width:  48em) and (orientation: portrait) {
  .flex-grid,
  .flex-grid-thirds {
    display: block;
  }
  .flex-grid .col,
  .flex-grid-thirds .col {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .mobile-hide {
      display: none !important;
      position: absolute;
      visibility:hidden;
    }
  .donation1, .donation2, .donation3, .donation4{
      margin-right: 0;
    }
  .text-ak {
    text-align: left;
  }
  .text-bk {
    text-align: right;
  }
}

.no-wrap {
  flex-wrap: nowrap;
}

.item-left {
    display: flex;
    align-content: center;
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
    flex-direction: column;
    flex: 0.33 0.33 10rem;
    justify-content: center;
}

* {
  box-sizing: border-box;
}

.flex-grid { 
  margin: 0 0 20px 0;
}


@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5){

  html,
  body{
    width:100%;
    overflow-x:hidden;
    scroll-behavior: smooth;
  }

}


.main-button {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 500;
    background-color: var(--color-accent);
    padding: 12px 28px;
    border-radius: 24px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.main-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 500;
    background-color: var(--color-primary);
    padding: 12px 28px;
    border-radius: 24px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-twitter {
  font-size: 0.825em;
  background-color: #1DA1F2;
}

.button-instagram {
  font-size: 0.825em;
  background: #d6249f;
  background: radial-gradient(circle at 30% 130%, #fdf497 -0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.cookie-button {
    font-family: 'Inter', sans-serif;
    color: #9d9d9d;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #9d9d9d;
    padding: 8px 16px;
    margin: 6px;
    border-radius: 24px;
}
.cookie-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  border-color: var(--color-button-hover);
}

/* Focus states for accessibility */
.button:focus,
.main-button:focus,
.cookie-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.button:focus-visible,
.main-button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.footer-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
}

.footer {
    background-color: var(--color-footer);
    position: static;
    display: flex;
    flex-wrap: nowrap;
    background-size:cover;
    background-position: center center;
    bottom: 0;
    padding: 4em 2em;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer .flex-grid {
    max-width: 1200px;
}

.footer .item,
.footer .item-left {
    padding: 1.5em;
}

/* For cookie banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box;
  /*width: 100%;*/
  background-color: #F1F6F4;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}

.cookie-consent-banner__inner {     
/*  max-width: 960px;
  margin: 0 auto;*/
  /*padding: 16px 0;*/
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.cookie-consent-banner__actions {    
}

.cookie-item{
  display: flex;
  align-items: center;
    /*border: 1px solid black;*/
    margin-left: 1em;
    margin-right: 1em;
}

/*For dropdown header*/

.header {
  width: 100%;
  z-index: 10;
  position: relative;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /*background-color: #fff;*/
}


.header li a {
  display: block;
  text-decoration: none;
  color: white;
  background-color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}


.header li a:hover,
.header .menu-btn:hover {
  background-color: #37474fff;
  -webkit-transition: all 0.55s ease-out;
  -moz-transition: all 0.55s ease-out;
  -o-transition: all 0.55s ease-out;
  -ms-transition: all 0.55s ease-out;
  transition: all 0.55s ease-out;
  /*color: gray;*/
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: var(--color-dark);
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: var(--color-dark);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 340px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* White navicon on dark hero backgrounds */
.header-intro-wrapper.gradient .header .menu-icon .navicon,
.header-intro-wrapper.gradient .header .menu-icon .navicon:before,
.header-intro-wrapper.gradient .header .menu-icon .navicon:after {
  background: var(--color-white);
}

.header-intro-wrapper.gradient .header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

/* 48em = 768px */

@media (min-width: 68em) {
  .header li {
    float: left;
  }
  .header li a {
    /*border: 1px solid #000;*/
    padding: 10px 12px;
    margin: 6px;
    border-radius: 24px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}


@media (max-width: 68em) {
  .header li {
    /*float: left;*/
  }
  .header li a {
    /*border: 1px solid #000;*/
    padding: 10px 12px;
    margin: 3px;
/*    margin: 6px;
  border-radius: 24px;*/
  }

/* section */

.section {
  overflow: hidden;
  margin: auto;
  max-width: 1400px;
}

.section a {
  position: relative;
  float: left;
  width: 100%;
}

.section a img {
  width: 100%;
  display: block;
}

.section a span {
  color: #fff;
  position: absolute;
  left: 5%;
  bottom: 5%;
  font-size: 2em;
  /*text-shadow: 1px 1px 0 #000;*/
}

.section-split a span {
  display: none;
}

.section-split a:hover span {
  display: block;
}


/* 48em = 768px */

@media (min-width: 48em) {
  .section-split a {
    width: 50%;
  }
}



