/*
    Suffolk County AOH - Enhanced Stylesheet
    Version 4.3
    September 5, 2025
*/

/* --- Core Elements & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --aoh-dark-green: #252f11;
    --aoh-mid-green: #324114;
    --aoh-light-green: #95aa63;
    --aoh-gold: #dd911f;
    --aoh-gold-light: #e8c547;
    --text-dark: #333;
    --text-light: #f7f7f5;
    --site-background: #bfcab4;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--site-background);
    background-image: url('../images/textures/dark-stripes-1920x1080.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--text-light); /* Updated to new off-white */
    background-image: url('../images/textures/dark-stripes-light.png');
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--aoh-dark-green);
    font-weight: 500;
    line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    text-align: center;
    margin: 0 auto 3rem auto;
    display: flex;
    align-items: center;
    color: var(--aoh-dark-green);
    text-transform: uppercase;
    font-weight: 400; /* Lighter font weight */
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.section-title::before,
.section-title::after {
    content: '';
    flex-grow: 1;
    background-color: var(--aoh-gold);
    height: 2px; /* Thinner line */
    margin: 0 1.5rem;
    border-radius: 2px;
}


p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-weight: 300;
    text-align: left;
}

.page-intro p, .text-center p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--aoh-mid-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--aoh-gold);
    text-decoration: none;
}

/* Button Styles */
.btn-hero, .btn-cta {
    background: linear-gradient(135deg, var(--aoh-gold), var(--aoh-gold-light));
    color: var(--aoh-dark-green);
    border: 2px solid var(--aoh-dark-green);
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.8rem;
}

.btn-hero:hover, .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    color: var(--aoh-dark-green);
    text-decoration: none;
}

.btn-cta.disabled {
    background: #ccc;
    border-color: #999;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}


/* Layout */
main.content-wrapper {
    padding: 2rem 0;
}

section.content-section {
    padding: 3rem 0;
    text-align: center;
}

.alternate-bg {
    background-color: #fff;
    padding: 3rem 1rem;
}

/* --- Header --- */
.site-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    position: relative;
}

.site-header img {
    max-width: 280px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.site-header img:hover {
    transform: scale(1.02);
}

.site-header h1 {
    margin: 0.5rem 0;
    text-transform: uppercase;
    font-weight: 400; /* Lighter font weight */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.site-header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--aoh-mid-green);
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

/* --- Navigation --- */
.navbar {
    background: linear-gradient(135deg, var(--aoh-dark-green), var(--aoh-mid-green)) !important;
    border-top: 4px solid var(--aoh-gold);
    border-bottom: 4px solid var(--aoh-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 0; /* Hide text but keep for screen readers */
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 1.3rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    border-radius: 5px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--aoh-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-dark .navbar-nav .nav-item.active .nav-link:not(.dropdown-toggle)::after {
    width: 70%;
}

.dropdown-menu {
    background-color: var(--aoh-dark-green);
    background-image: url('../images/textures/black-twill.png');
    border: 2px solid var(--aoh-gold);
    border-radius: 10px;
    box-shadow: var(--card-shadow-hover);
    margin-top: 5px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    color: var(--aoh-dark-green);
    background: linear-gradient(135deg, var(--aoh-gold), var(--aoh-gold-light));
}

/* Custom Dropdown Arrow */
.navbar-dark .navbar-nav .dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left: 5px solid transparent;
    transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .dropdown.show > .dropdown-toggle::after {
    transform: rotate(-180deg);
}


/* --- Parallax Hero Sections --- */
.hero-parallax {
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.3);
}

.hero-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/home/home-image.png');
}

.hero-text {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 3rem 4rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
    animation: fadeInUp 1s ease-out;
}

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

.hero-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #e8c547;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 400; /* Lighter font weight */
    text-transform: uppercase;
}

.hero-text p {
    font-size: clamp(1.0rem, 2.5vw, 1.2rem);
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* --- News Grid --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.news-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.news-card h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    color: var(--aoh-mid-green);
    text-align: center;
    text-transform: uppercase;
}

.news-card p {
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    line-height: 1.6;
}

.news-card .card-link {
    background: var(--aoh-gold);
    color: var(--text-light);
    text-align: center;
    padding: 12px 20px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 400; /* Lighter font weight */
    margin-top: auto;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.news-card .card-link:hover {
    background: var(--aoh-gold-light);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--aoh-dark-green);
}

/* --- Membership CTA --- */
.membership-cta {
    background: url('../images/textures/black-twill.png'), linear-gradient(135deg, var(--aoh-dark-green), var(--aoh-mid-green));
    color: white;
    padding: 4rem 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.membership-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/textures/shamrock-pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.membership-cta h2 {
    color: var(--aoh-gold-light);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.membership-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.membership-cta .btn-cta {
    font-weight: 400;
}

/* --- Footer --- */
.site-footer {
    background: url('../images/textures/black-twill.png'), linear-gradient(135deg, var(--aoh-dark-green), #1a1a1a);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 5px solid var(--aoh-gold);
    margin-top: auto;
}

.footer-content {
    text-align: center;
}

.site-footer a {
    color: var(--aoh-gold);
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--aoh-gold-light);
    text-decoration: none;
}

.footer-links, .footer-contact {
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 400; /* Lighter weight to match other elements */
}

.footer-link-separator {
    color: var(--aoh-gold);
    margin: 0 15px;
    font-size: 0.9em;
    vertical-align: middle;
}

.footer-contact {
    font-size: 1.1rem;
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* --- Officers Page --- */
.page-banner {
    margin: 2rem 0;
    padding: 0;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none; /* Allows clicks to pass through */
}

.banner-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    color: white;
    text-align: center;
    z-index: 2;
}

.banner-text-overlay h2 {
    color: var(--aoh-gold-light);
    font-weight: 400;
    font-size: 3rem;
    text-transform: uppercase;
}

.banner-text-overlay p {
    color: var(--text-light);
    font-size: 1.2rem;
    text-align: center;
    font-weight: 300;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

.officer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.officer-card {
    background-image: url('../images/textures/dark-stripes-light.png');
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 1.5rem;
    border-top: 5px solid var(--aoh-gold);
    display: flex;
    flex-direction: column;
}

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.officer-card h3 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--aoh-mid-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.officer-photo-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.officer-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--aoh-gold);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.5)); /* 50% Darker shadow */
}

.officer-card .officer-crest {
    border-radius: 0;
    border: none;
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.5));
}

.officer-card p {
    margin: 0;
    font-size: 1.6rem;
    font-family: 'Oswald', sans-serif;
    color: var(--aoh-dark-green);
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.officer-card p::before,
.officer-card p::after {
    content: '';
    flex-grow: 1;
    background-color: var(--aoh-gold);
    height: 1px;
    margin: 0 0.5rem;
}

.trustees-list {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.trustee-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--aoh-dark-green);
}

.trustee-name:not(:last-child)::after {
    content: '☘';
    color: var(--aoh-mid-green);
    margin: 0 1rem;
    font-size: 0.9em;
}

.past-presidents-list {
    padding: 0;
    margin: 2rem auto;
    max-width: 800px;
}

.past-presidents-list ul {
    padding: 0;
    list-style-type: none;
    text-align: left;
}

.past-presidents-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

@media (min-width: 768px) {
    .past-presidents-list {
        columns: 2;
        column-gap: 3rem;
    }
    .past-presidents-list li {
        break-inside: avoid;
    }
}

/* --- Mobile-Specific Overrides for Officers Page --- */
@media (max-width: 768px) {
  /* Adjusts the banner layout for mobile */
  .page-banner {
    margin-top: 0;
  }

  .page-banner::after {
    display: none; /* Removes the dark gradient on mobile */
  }

  .banner-text-overlay {
    position: static; /* Allows the text block to sit below the image */
    padding: 2rem 1rem;
    color: var(--text-dark);
  }

  .banner-text-overlay h2 {
    color: var(--aoh-dark-green); /* Ensures title is readable on light background */
  }

  .banner-text-overlay p {
    color: var(--text-dark); /* Ensures text is readable on light background */
  }

  /* Stacks the trustees vertically on mobile */
  .trustees-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .trustee-name {
    display: block; /* Each name on its own line */
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--aoh-dark-green);
    margin-bottom: 0.5rem;
  }

  .trustee-name:not(:last-child)::after {
    content: none; /* Hides the desktop separator */
  }
}

/* --- Divisions Page --- */
.division-map {
    margin: 2rem auto 3rem;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    max-width: 800px;
}

.division-map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.3));
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.division-card {
    background-image: url('../images/textures/dark-stripes-light.png');
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.division-header {
    background-color: var(--aoh-dark-green);
    background-image: url('../images/textures/black-twill.png');
    color: var(--text-light);
    padding: 1.5rem;
    text-align: center;
}

.division-header h2 {
    color: var(--aoh-gold);
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.division-header h2::before,
.division-header h2::after {
    content: '';
    flex-grow: 1;
    background-color: var(--aoh-gold-light);
    height: 1px;
    margin: 0 1rem;
}

.division-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.division-header h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0.25rem 0 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.division-body {
    padding: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.division-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.division-body li {
    position: relative;
    padding-left: 40px; /* Space for the icon */
    margin-bottom: 0.8rem;
    font-size: 1.0rem;
}

.division-body i[class^="fa"] {
    position: absolute;
    left: 0;
    top: 0.2em; /* Vertically align icon */
    color: var(--aoh-mid-green);
    font-size: 1.4em;
    width: 25px;
    text-align: center;
}

.division-president {
    background-color: #e9e9e9;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #ddd;
}

.division-president h5 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--aoh-mid-green);
    text-transform: uppercase;
    font-weight: 500;
}

.division-president p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    text-align: center;
    text-transform: uppercase;
}

.division-president a {
    display: inline-flex;
    align-items: center;
    background: var(--aoh-gold);
    color: var(--aoh-dark-green);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.division-president a:hover {
    background: var(--aoh-gold-light);
}

.division-president i[class^="fa"] {
    margin-right: 8px;
}

/* --- Tom Clarke Memorial Page --- */
.gallery-title {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.photo-item:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Golf Outing Page --- */
.golf-hero-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/events/golf.png');
    min-height: 650px;
    align-items: flex-end; /* Aligns text to the bottom */
}

.golf-hero-parallax .hero-text {
    margin-bottom: 3rem; /* Adds some space from the bottom edge */
    padding: 2rem 4rem; /* Reduced top/bottom padding */
}

.golf-hero-parallax .hero-text p {
    text-align: center;
}

.event-details-placeholder {
    background-color: #fff;
    border: 2px dashed var(--aoh-mid-green);
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
    border-radius: 10px;
}

.event-details-placeholder p {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.event-details-placeholder strong {
    color: var(--aoh-dark-green);
}

.event-info-box, .in-memory-of {
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 5px solid var(--aoh-gold);
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 0 10px 10px 0;
}

.event-info-box h3, .in-memory-of h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--aoh-mid-green);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.event-info-box p, .in-memory-of p {
    text-align: center;
    font-size: 1.4rem;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0;
}

/* --- Library Page --- */
.library-hero-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/library/books.jpeg');
}

.library-iframe-container {
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    transition: height 0.3s ease-in-out;
}

.library-iframe-container iframe {
    width: 100%;
    border: 0;
    display: block;
    background: transparent; /* keep it transparent */
}

/* --- Membership Page --- */
.membership-hero-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/membership/AOH-CHURCH-NYC.jpg');
}

.inline-image-right {
    float: right;
    margin: 0 0 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.inline-image-left {
    float: left;
    margin: 0 1.5rem 1rem 0;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.requirements-box {
    background-color: var(--aoh-gold);
    background-image: url('../images/textures/dark-stripes-light.png');
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow-hover);
}

.requirements-box p {
    text-align: left;
    color: var(--aoh-dark-green);
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.requirements-list li {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    text-align: left;
}

.requirements-list .fa-check-circle {
    color: var(--aoh-mid-green);
    margin-right: 15px;
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .inline-image-right, .inline-image-left {
        float: none;
        display: block;
        margin: 0 auto 2rem;
    }
}

/* --- Tara Court Degree Page --- */
.degree-hero-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/degree/AOH-certificate.jpg');
}

.contact-card-container {
    max-width: 800px;
    margin: 2rem auto;
}

.contact-card {
    background: var(--aoh-gold);
    background-image: url('../images/textures/dark-stripes-light.png');
    border-radius: 15px;
    box-shadow: var(--card-shadow-hover);
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.contact-card-photo {
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: var(--card-shadow);
    flex-shrink: 0;
}

.contact-card-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.contact-card-info {
    text-align: left;
}

.contact-card-info h3 {
    margin: 0 0 0.5rem;
    color: var(--aoh-dark-green);
    font-weight: 400;
}

.contact-card-info p {
    color: var(--aoh-dark-green);
    margin-bottom: 1rem;
}

.contact-card-info .contact-name {
    font-size: 1rem;
    font-weight: 500;
}

.contact-card-info .contact-name a {
    color: var(--aoh-dark-green);
    font-weight: 500;
    text-decoration: underline;
}

.contact-card-info .contact-name a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    .contact-card-info {
        text-align: center;
    }
}

