/* PEACE PAGE SPECIFIC STYLES */

/* ========== NAVIGATION ========== */
.nav-links a.active {
    color: var(--clr-ash-gold);
    position: relative;
}

/* ========== HERO SECTION ========== */
.peace-hero {
    background: radial-gradient(circle at center, rgba(1, 34, 28, 0.3), var(--clr-obsidian));
}





.background-video {
    position: absolute; /* Position within the hero section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Place behind canvas and content */
    opacity: 0.6;
}

.background-video video {
    width: 120%;
    height: 100%;
    object-fit: cover; /* Ensure the video fills the section */
}

















.peace-hero .hero-bg-image {
    height: 129vh;
    object-position: 40% 10%;
    margin-top: -13vh;
}

.peace-hero .hero-overlay {
    width: 100%;
    background: linear-gradient(to right, 
        rgb(18, 18, 18) 20%, 
        rgba(18, 18, 18, 0.54) 35%, 
        rgba(18, 18, 18, 0.13) 50%, 
        rgba(18, 18, 18, 0.54) 80%, 
        rgb(18, 18, 18) 100%
    ), 
    linear-gradient(to bottom, 
        transparent 60%, 
        rgb(18, 18, 18) 89%
    );
    left: -10vw;
}

.peace-hero .hero-content {
    padding-top: 13vh;
}

.peace-hero h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.peace-hero .tagline {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.tagline-emphasis {
    letter-spacing: 0;
}

.gold-text {
    color: var(--clr-ash-gold);
    font-weight: bold;
}

.tagline-sub {
    color: rgba(203, 161, 53, 0.7);
    font-style: italic;
}

.tagline-secondary {
    font-size: 1.25rem;
    letter-spacing: 0;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========== PILLARS SECTION ========== */
.pillars-section {
    padding: 5rem 0;
    background-color: var(--clr-obsidian);
    position: relative;
    z-index: 2;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--clr-obsidian);
    border: 1px solid var(--clr-ash-gold);
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background-color: var(--clr-wine);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pillar-card h3 {
    color: var(--clr-ash-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--clr-bone-white);
    margin-bottom: 1.5rem;
    opacity: 0.85;
    line-height: 1.6;
}

.pillar-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.pillar-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--clr-bone-white);
    opacity: 0.9;
}

.pillar-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clr-ash-gold);
    font-size: 1.1rem;
}

.pillar-link {
    display: inline-block;
    color: var(--clr-ash-gold);
    border: 1px solid var(--clr-ash-gold);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.pillar-link:hover {
    background: var(--clr-ash-gold);
    color: var(--clr-obsidian);
}

.service-icon {
      font-size: 3rem;
      color: var(--clr-ash-gold);
      margin-bottom: 1.5rem;
      display: block;
    }

/* ========== PATHWAYS SECTION ========== */
.pathways-section {
    padding: 6rem 0;
    background-color: rgba(18, 18, 18, 0.95);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--clr-ash-gold);
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pathway-card {
    background: var(--clr-obsidian);
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-5px);
}

.pathway-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.pathway-card h4 {
    color: var(--clr-ash-gold);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.5rem;
}

.pathway-card p {
    color: var(--clr-bone-white);
    opacity: 0.85;
    padding: 0 1.5rem 2rem;
    line-height: 1.6;
}

/* ========== CHALLENGE STRIP ========== */
.challenge-strip {
    background-color: var(--clr-wine);
    padding: 4rem 0;
    border-top: 2px solid var(--clr-ash-gold);
    border-bottom: 2px solid var(--clr-ash-gold);
}

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

.challenge-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--clr-bone-white);
}

.challenge-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--clr-ash-gold);
    letter-spacing: 0.05em;
}

.challenge-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold.filled {
    background-color: var(--clr-ash-gold);
    color: var(--clr-obsidian);
}

.btn-gold.ghost {
    background-color: transparent;
    color: var(--clr-ash-gold);
    border-color: var(--clr-ash-gold);
}

.btn-gold.filled:hover {
    background-color: var(--clr-bone-white);
}

.btn-gold.ghost:hover {
    background-color: var(--clr-ash-gold);
    color: var(--clr-wine);
}

/* ========== RESOURCES SECTION ========== */
.resources-section {
    padding: 5rem 0;
    background-color: var(--clr-obsidian);
}

.resource-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s ease;
}

.resource-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px;
    background: var(--clr-obsidian);
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card.active {
    border-color: var(--clr-ash-gold);
    border-bottom-width: 4px;
}

.resource-icon {
    font-size: 3rem;
    color: var(--clr-ash-gold);
    margin-bottom: 1.5rem;
}

.resource-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-bone-white);
}

.resource-card p {
    margin-bottom: 2rem;
    color: rgba(245, 245, 240, 0.8);
    line-height: 1.6;
}

.resource-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--clr-ash-gold);
    color: var(--clr-ash-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.resource-btn:hover {
    background-color: var(--clr-ash-gold);
    color: var(--clr-obsidian);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-btn {
    background-color: rgba(18, 18, 18, 0.9);
    border: 1px solid var(--clr-ash-gold);
    color: var(--clr-ash-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background-color: var(--clr-ash-gold);
    color: var(--clr-obsidian);
}

/* ========== DISCOVERY SECTION ========== */
.discovery-section {
    padding: 6rem 0;
    background-color: rgba(18, 18, 18, 0.95);
}

.discovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discovery-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--clr-ash-gold);
}

.benefits-list {
    list-style: none;
    font-size: 1.25rem;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-ash-gold);
    font-size: 1.5rem;
}

.discovery-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.discovery-form input,
.discovery-form textarea {
    background-color: rgba(245, 245, 240, 0.05);
    border: 1px solid rgba(203, 161, 53, 0.3);
    color: var(--clr-bone-white);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.discovery-form input:focus,
.discovery-form textarea:focus {
    outline: none;
    border-color: var(--clr-ash-gold);
    background-color: rgba(245, 245, 240, 0.08);
}

.discovery-form textarea {
    resize: vertical;
}

.discovery-form .btn-gold {
    cursor: pointer;
    font-size: 1rem;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet View */
@media (max-width: 1024px) {
    .peace-hero h1 {
        font-size: 4.5rem;
    }
    
    .pillars-grid {
        gap: 3rem;
    }
    
    .resource-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
    
    .carousel-nav {
        width: calc(100% + 60px);
        left: -30px;
    }
}

/* Tablet/iPad View (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .site-nav {
    background-color: #121212b0;
  }
  .hero-image-container {
    left: 0;
  }
  .hero-content-wrapper {
padding-top: 0vh !important;
}
  
  .hero-bg-image {
    transform: scale(0.9);
    object-position: 50% -15vh;
  }
  
  .hero-content {
margin: 10px auto;
background: #12121214;
}

  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-content-wrapper {
    padding: 5rem 2rem 2rem;
  }

  .peace-hero .tagline{
    gap: 40vh;
    display: flex;
    flex-direction: column;
  }
  .peace-hero .hero-overlay{
        width: 110%;
    background: linear-gradient(to bottom, #121212 20%, #121212e3 35%, #12121200 50%, #121212e3 70%, #121212 100% );
    }
    .peace-hero .hero-bg-image{
        object-position: 55% 10%;
        transform: scale(1);
        height: 72vh;
margin-top: 19vh;
    }
}
/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px){
  .site-nav.scrolled{
    padding: 1rem 0;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    /* Hero adjustments */
    .peace-hero h1 {
        font-size: 3.5rem;
    }
    
    .peace-hero .tagline {
        font-size: 1.25rem;
    }
    
    .tagline-secondary {
        font-size: 1.125rem;
    }
    
    .peace-hero .hero-content {
        padding-top: 8vh;
        text-align: center;
    }
    
    /* Pillars responsive */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillar-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Discovery responsive */
    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .discovery-content h2 {
        font-size: 2.25rem;
    }
    
    /* Resources carousel mobile */
    .resource-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .carousel-track-wrapper {
        overflow-x: auto;
    }
    
    .carousel-track {
        padding: 0 1rem;
    }
    
    .resource-card {
        flex: 0 0 280px;
        border-color: var(--clr-ash-gold);
        border-bottom-width: 4px;
    }
    
    .carousel-nav {
        display: none;
    }
    
    /* Section padding */
    .pillars-section,
    .pathways-section,
    .resources-section,
    .discovery-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

/* Mobile Portrait */
@media (max-width: 600px) {
    /* Hero mobile */
    .peace-hero h1 {
        font-size: 2.75rem;
    }

    .peace-hero .hero-overlay {
        width: 110%;
        background: linear-gradient(to bottom, #121212 20%, #121212e3 35%, #12121200 50%, #121212e3 70%, #121212 100% );
    }
    .peace-hero .tagline {
        font-size: 1.125rem;
        letter-spacing: 1px;
        gap: 30vh;
    display: flex;
    flex-direction: column;
    }
    div.hero-image-container:nth-child(3) {
  position: absolute;
}

    .tagline-secondary {
        font-size: 1rem;
    }
    
    .peace-hero .hero-bg-image {
        object-position: 54% 10%;
        height: 60vh;
        margin-top: 30vh;;
    }
    
    /* Sections mobile */
    .pillars-section,
    .pathways-section,
    .resources-section,
    .discovery-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pillar-card {
        padding: 2rem 1.5rem;
    }
    
    .pillar-card h3 {
        font-size: 1.75rem;
    }

    .pathways-grid{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Challenge mobile */
    .challenge-strip {
        padding: 3rem 0;
    }
    
    .challenge-content h2 {
        font-size: 1.875rem;
    }
    
    .challenge-content p {
        font-size: 1rem;
    }
    
    .challenge-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gold {
        width: 100%;
        max-width: 300px;
    }
    
    /* Discovery mobile */
    .discovery-content h2 {
        font-size: 2rem;
    }
    
    .benefits-list {
        font-size: 1.125rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .peace-hero h1 {
        font-size: 2.25rem;
    }

    .peace-hero .hero-overlay{
        background: linear-gradient(to bottom, rgba(18, 18, 18, 0.85) 20%, rgba(18, 18, 18, 0.75) 35%, rgba(18, 18, 18, 0.13) 50%, rgba(18, 18, 18, 0.86) 70%, rgb(18, 18, 18) 100% );    
    }
    
    .peace-hero .tagline {
        font-size: 1rem;
        gap: 30vh;
    display: flex;
    flex-direction: column;
  }
    
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pathways-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    
    .carousel-track {
        transition: none !important;
    }
}