
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Georgia, "Times New Roman", Times, serif;
            line-height: 1.4;
            color: #222;
            background: #e5e7eb;
            background-image: url(../img/schoonerbg_l.gif);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

   /* Sections */
        .section {
            padding: 80px 0;
            position: relative;
            }

        .section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #0c3162;
            font-weight: bold;
        }
        
    h3 {
    display: block;
    font-size: 2em;
    margin-top: 1em;
    margin-bottom: 1em;
    letter-spacing: -0.04em;
    }

        /* Header  nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5rem 0;
        }*/

        header {
            background: #fff;
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid #e5e7eb;
        }

       


.logo-container {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center;    /* Centers content vertically */
    /* Add any other styling, e.g., height, background-color */
    height: 160px; /* Example height for the container */
    width: 100%;
    
}

.logo {
    /* Optional: add some spacing between the logo and text */
    margin-right: 10px;
    height: 112px; /* Adjust size as needed */
    width: auto;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: #003092;
}


        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            padding-left: 80px;
        }

        .nav-links a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #d97706;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d97706;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }



 /* ── HERO CAROUSEL WRAPPER ── */
  .hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
margin: 80px auto;
    height: 500px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 40px rgba(11,30,48,0.12);
  }


  /* ── SLIDES ── */
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--trans);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .slide.active  { opacity: 1; z-index: 1; }
  .slide.leaving { opacity: 0; z-index: 2; }

  /* image panel */
  .slide__img {
    position: relative;
    overflow: hidden;
    background: #e8f0f5;
  }
  .slide__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(20%) contrast(1.05) brightness(0.9);
    transform: scale(1.03);
    transition: transform 8s ease;
  }
  .slide.active .slide__img img { transform: scale(1); }

  /* etched overlay on image */
  .slide__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      transparent 40%,
      rgba(245,242,237,0.45) 100%
    );
  }

  /* text panel */
  .slide__text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 52px;
    background: #ffffff;
    overflow: hidden;
    border-left: 1px solid rgba(11,30,48,0.08);
  }

  /* subtle dot texture */
  .slide__text::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(11,30,48,0.015) 3px,
      rgba(11,30,48,0.015) 4px
    );
    pointer-events: none;
  }

  /* gold corner ornament */
  .slide__text::after {
    content: '';
    position: absolute;
    top: 24px; right: 24px;
    width: 60px; height: 60px;
    border-top: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
    opacity: 0.45;
  }

  .slide__eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
  }
  .slide.active .slide__eyebrow { opacity: 1; transform: none; }

  .slide__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: #0c3162;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s 0.35s, transform 0.6s 0.35s;
  }
  .slide.active .slide__title { opacity: 1; transform: none; }

  .slide__title em {
    font-style: italic;
    color: var(--gold);
  }

  .slide__body {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(11,30,48,0.65);
    margin-bottom: 34px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
    max-width: 36ch;
  }
  .slide.active .slide__body { opacity: 1; transform: none; }


  .slide__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 3px;
    background-color: #d97706;
    text-decoration: none;
    color: #fff;
    padding: 14px 26px;
    width: fit-content;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s 0.65s;
  }
  .slide.active .slide__cta { opacity: 1; transform: none; }
  .slide__cta:hover { background: linear-gradient(45deg, #d97706, #92400e); color: #fff;  }
  .slide__cta svg { flex-shrink: 0; }

  /* ── YEAR BADGE on image ── */
  .slide__year {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 3;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.55);
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s 0.4s;
  }
  .slide.active .slide__year { opacity: 1; }

  /* ── NAVIGATION ── */
  .carousel-nav {
    position: absolute;
    bottom: 0; left: 50%; right: auto;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
  }

  .nav-dot {
    width: 28px; height: 3px;
    background: rgba(11,30,48,0.4);
    cursor: pointer;
    transition: background 0.25s, width 0.3s;
    border: none;
    padding: 0;
  }
  .nav-dot.active { background:#003092); width: 48px; }

  /* arrow buttons */
  .arrow-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(11,30,48,0.15);
    color: var(--navy);
    width: 46px; height: 46px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(11,30,48,0.1);
  }
  .arrow-btn:hover { background: var(--gold); color: #ffffff; border-color: var(--gold); }
  .arrow-btn.prev { left: 20px; }
  .arrow-btn.next { right: 20px; }

  /* ── PROGRESS BAR ── */
  .progress-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 10;
    width: 0%;
    transition: width 0.1s linear;
  }

  /* slide count */
  .slide-count {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(11,30,48,0.4);
  }

  /* ── PLACEHOLDER image (gradient) ── */
  .img-placeholder {
    width: 100%; height: 100%;
    display: block;
  }


  /* ══════════════════════════════
     TABLET  701–900px
  ══════════════════════════════ */
  @media (max-width: 900px) {
    .hero-carousel { height: 520px; }
    .slide__text { padding: 32px 36px; }
    .slide__body { max-width: 100%; }
    .slide__year { font-size: 50px; }
  }

  /* ══════════════════════════════
     MOBILE  ≤ 700px
     Stack: image on top, text below
  ══════════════════════════════ */
  @media (max-width: 700px) {
    body { padding: 0; min-height: 100svh; align-items: flex-start; background: #fff; }

    .hero-carousel {
      height: auto;
      min-height: 100svh;
      box-shadow: none;
      /* No overflow:hidden on wrapper so stacked content is natural */
    }

    /* On mobile, hide all slides, show only active — no crossfade needed */
    .slide {
      position: relative;
      inset: auto;
      opacity: 1;
      transition: none;
      display: none;
      grid-template-columns: 1fr;
      grid-template-rows: 58vw auto;
    }
    .slide.active { display: grid; }

    .slide__img { height: 58vw; min-height: 220px; max-height: 340px; }

    .slide__year { font-size: 38px; bottom: 10px; left: 14px; opacity: 1; }

    .slide__text {
      padding: 28px 22px 56px;
      border-left: none;
      border-top: 1px solid rgba(11,30,48,0.07);
    }

    /* Remove entrance animations on mobile for instant feel */
    .slide__eyebrow,
    .slide__title,
    .slide__body,
    .slide__cta {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }

    .slide__title { font-size: clamp(24px, 7vw, 32px); }
    .slide__body  { max-width: 100%; font-size: 15px; margin-bottom: 22px; }

    /* Arrows sit on the image */
    .arrow-btn {
      top: calc(58vw / 2);
      width: 38px; height: 38px;
    }
    .arrow-btn.prev { left: 10px; }
    .arrow-btn.next { right: 10px; }

    /* Dots & count inside text area */
    .slide-count {
      top: auto; right: auto;
      bottom: 20px; left: 22px;
      color: rgba(11,30,48,0.3);
    }
    .carousel-nav { bottom: 18px; }

    .anchor-wm { font-size: 100px; }
    .slide__text::after { width: 36px; height: 36px; top: 16px; right: 16px; }
  }

  /* Very small phones */
  @media (max-width: 380px) {
    .slide__img { height: 62vw; }
    .arrow-btn { top: calc(62vw / 2); }
  }


/* About Section (now Hero) 
        .hero.about {
        }

        .hero.about .container {
            max-width: 1200px;
        }

        .hero.about .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            background: rgba(255,255,255,0.6);
            padding: 3rem;
            border-radius: 16px;
            backdrop-filter: blur(15px);
            border: 1px solid #e5e7eb;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .hero.about .about-text {
            color: #374151;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .hero.about .about-stats {
        }

        .stat-item {
            background: rgba(255,255,255,0.95);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
*/

        /* History Section */
        .history {
            background: rgba(201,168,76,0.4);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 30px;
            width: 3px;
            height: 100%;
            background: linear-gradient(45deg, #d97706, #b45309);
            border-radius: 2px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 2rem;
            position: relative;
            align-items: flex-start;
        }

        .timeline-content {
            margin-left: 70px;
            background: rgba(255,255,255,0.95);
            padding: .85rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid #e7d5af;
            color: #374151;
            flex: 1;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .timeline-year {
            font-size: 1.2rem;
            font-weight: bold;
            color: #d97706;
            margin-bottom: 0.8rem;
            display: inline-block;
            background: rgba(217, 119, 6, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
        }

        .timeline-content p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .timeline-dot {
            position: absolute;
            left: 22px;
            top: 1.8rem;
            width: 16px;
            height: 16px;
            background: #d97706;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(217, 119, 6, 0.4);
            border: 3px solid rgba(255, 255, 255, 1);
        }
        

        /* Charter Section */
        .charter {
            background: #fff;
            margin: 0 auto;
        }

        .charter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .charter-card {
            background: rgba(255,255,255,0.95);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid #e7d5af;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 200px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .charter-card:hover {
            transform: translateY(-5px);
        }

        .charter-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: #d97706;
        }

        .charter-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.8rem;
        }

        .charter-description {
            color: #444;
            line-height: 1.5;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .charter-cta {
            padding: 16px 16px;
            background: #d97706;
            color: white;
            border: none;
            border-radius: 3px;
            font-size: 0.85rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .charter-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(217, 119, 6, 0.3);
            background: linear-gradient(45deg, #b45309, #92400e);
        }


/* Donate Section */
        .donate {
            background: rgba(201,168,76,0.4);
            padding-top: 80px;
        }

        .donate-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .donate-intro {
            text-align: left;
            margin-bottom: 1rem;
            color: white;
        }

        .donate-intro h3 {
            font-size: 2rem;
            color: #1f2937;
        }

        .donate-intro p {
            color: #444;
            font-size: 1.2rem;
            line-height: 1.35;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }


        .donate-custom {
            background: rgba(255,255,255,0.95);
            padding: 3rem;
            border-radius: 8px;
            backdrop-filter: blur(15px);
            border: 1px solid #e5e7eb;
            margin-bottom: 4rem;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .donate-custom h3 {
            color: #1f2937;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .donate-custom p {
            color: #444;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .amount-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .amount-btn {
            padding: 12px 24px;
            background: rgba(217, 119, 6, 0.1);
            color: gold;
            border: 2px solid #d97706;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .amount-btn:hover,
        .amount-btn.active {
            background: linear-gradient(45deg, #d97706, #b45309);
            border-color: #d97706;
            color: white;
            transform: translateY(-2px);
        }

        .custom-amount {
            max-width: 400px;
            margin: 0 auto;
        }

        .custom-amount label {
            display: block;
            color: #374151;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .amount-input-group {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.8);
            border-radius: 25px;
            padding: 5px;
            backdrop-filter: blur(5px);
            border: 1px solid #d1d5db;
        }

        .currency {
            color: #374151;
            font-size: 1.2rem;
            font-weight: bold;
            padding: 0 15px;
        }

        #custom-amount {
            flex: 1;
            padding: 12px;
            text-align: center;
            border: none;
            background: transparent;
            color: #444;
            font-size: 1.1rem;
            outline: none;
        }

        #custom-amount::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .custom-donate-btn {
            padding: 12px 25px;
            background: linear-gradient(45deg, #d97706, #b45309);
            color: white;
            border: none;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .custom-donate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(217, 119, 6, 0.3);
        }

        .donate-impact { 
            text-align: center;
        }

        .donate-impact h3 {
            color: #1f2937;
            font-size: 2rem;
            margin-bottom: 2rem;
        }


/* Bulletpoints */

        .styled-list {
            list-style:  none;
            padding:  12px;
            margin: 0;
        }

        .styled-list li {
            position: relative;
            padding: 0;
            margin-bottom: 12px;
            font-size: 1em;
            line-height: 1.4;
            transition: all 0.3s ease;
        }
        
/* History */      
.history-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }
        
.history-intro {
            text-align: left;
            margin-bottom: 4rem;
            color: #222;
        }  
        
        .history-intro p {
            margin-bottom: 24px;
        }  
        
.timeline-custom {
            background: rgba(255,255,255,0.95);
            padding: 1rem;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid #e5e7eb;
            margin-bottom: 1rem;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }
        

/* Contact */      
        .contact {
            background:;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            color: #374151;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: #3498db;
        }

        .contact-form {
            background: rgba(255,255,255,0.99);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.8);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background: #f2f2f2;
            color: #333;
            backdrop-filter: blur(5px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #666;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #d97706, #b45309);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(217, 119, 6, 0.3);
        }

        /* Footer */
        footer {
            background: rgba(0,0,0,0.7);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .hero.about .about-content {
                grid-template-columns: 1fr;
                padding: 2rem;
                gap: 2rem;
            }

            .hero.about .about-text {
                font-size: 1rem;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-content {
                margin-left: 50px;
            }

            .timeline-dot {
                left: 12px;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }



            .amount-buttons {
                flex-direction: column;
                align-items: center;
            }

            .amount-input-group {
                flex-direction: column;
                gap: 1rem;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .floating-anchor,
            .floating-wheel {
                display: none;
            }
        }
    </style>