﻿.auto-style1 {
	color: #D3D3D3;
	font-size: 1.05em;
}
.auto-style2 {
	color: #D3D3D3;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Hide horizontal overflow */
    min-height: 100%; 
    width: 100%;
}

body {
    background-color: #072418; /* Main dark green background */
    font-family: 'Orbitron', sans-serif; /* Assumed font link exists in HTML <head> */
    font-weight: 400;
    padding-top: 100px; /* Offset for fixed header height */
}

.content-text h2 {
    font-size: 2.5em;
    margin-top: 0px; 
    margin-bottom: 25px; 
    color: #FFFFFF; /* black */
}

.content-text h3 {
    font-size: 1.5em;
    color: white;
    margin-top: 0px; 
    margin-bottom: 10px; 
}

img {
    max-width: 100%;
    height: auto;
    display: block; 
    object-fit: cover;
}
p {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.15rem;
    line-height: 1.5;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003720;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-logo img {
    height: 40px;
    vertical-align: middle;
}

.header-nav {
    display: flex;
    align-items: center;
    font-family: 'Sarpanch', sans-serif;
}

.nav-toggle{
  background:none;
  border:0;
  font-size:1.25rem;
  padding:0.5rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.nav-btn, .nav-link {
    background: none;
    border: none;
    color: white;
    font-size: 0.8rem;
    padding: 5px 5px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
}



/* Desktop: show nav inline */
@media (min-width: 768px){
  .header-logo img{height: 80px;}
  .main-header{ padding: 10px 15px;}
  .main-header{z-index: 1000;}
  .header-nav{ font-weight: 600;}
  .nav-link{ font-size: 1.3rem;}
  .nav-link{ padding: 10px 50px;}
}

.nav-btn:hover, .nav-link:hover {
    color: #000000;
}

.nav-btn:not(:last-child), .nav-link:not(:last-child) {
    border-right: 1px solid #000000;
}

.video-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.full-width-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.video-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
}

.video-text-overlay h1 {
    font-size: 50px;
    font-weight: 900;
    color: #FFFFFF;
}
.photo-button-gallery {
    padding: 40px 0;
    background-color: #072418;
}

.gallery-container {
    justify-content: space-evenly;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-button-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-button-item:hover {
    transform: translateY(-30px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.photo-button-item img {
    width: 100%;
    height: 300px;
    display: block;
    transition: filter 0.5s ease;
}

.photo-button-item:hover img {
    filter: grayscale(0%);
}

.photo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px 0;
    font-weight: 500;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
	font-size: 0.8rem;
}

@media (min-width: 768px){
    .full-width-video {height: 100vh;}
    .video-text-overlay h1 {font-size: 80px;}
    .photo-title {font-size: 2rem;}
    .photo-button-item img {filter: grayscale(100%);}
    .gallery-container {display: flex;}
    .photo-button-item img {height: auto;}
}

header h1 {
    font-size: 3em;
    color: #000000;
    margin: 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center; 
    padding: 50px 10px; 
    flex-wrap: wrap; 
    position: relative;
    width: 100%; 
    
    background-image: linear-gradient(rgba(50, 50, 50, 0.85), rgba(50, 50, 50, 0.85)), url('images/about.jpg');
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
}

.stat-item {
    text-align: center;
    flex: 1; 
    min-width: 180px; 
    margin: 10px;
    padding: 150px 15px; 
}

.count-num { 
    font-size: 5em;
    font-weight: bold;
    color: #D3D3D3; 
    display: block;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.stat-item p {
    font-size: 1.5em; 
    color: #eee;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.content-sections-container { 
    background-color: #072418; 
    padding: 80px 0;
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #003720; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	font-color: #ffffff;
}


.photo-content {
    width: 100%; 
    padding: 20px;
    box-sizing: border-box;
	font-color: #ffffff;
}

.text-content {
	font-color: #ffffff;
}

.content-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Sarpanch', sans-serif;
}

/* The 'reverse' class puts text on the left and image on the right */
.content-section.reverse {
    flex-direction: row-reverse; 
}


/* --- 7. Full-Screen 50/50 Split Sections (SECTION C Styles) --- */
.split-container {
    display: flex;
    height: 100dvh; /* Each container takes the full screen height */
    width: 100vw;  
}

.split-panel {
    flex: 1; /* Makes both panels equal width (50% each) */
    display: flex;
    justify-content: center; 
    align-items: center; 
    box-sizing: border-box; 
    overflow-y: auto; /* Allows scrolling if content within the panel is too long */
}

.left-panel {
    background-color: #008000; /* Green background for the text side */
    color: white; 
}

.right-panel {
    background-color: #333; /* Darker background for the image side */
}

.content-wrapper {
    max-width: 85%;
    padding: 20px;
    text-align: center;
}

.right-panel img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 90vh;
}


/* --- 8. Responsive Adjustments (Media Queries) --- */

/* Desktop 60/40 layout applied at 768px+ */
@media (min-width: 768px) { 
    .content-section .text-content {
        width: 60%;
    }
    .content-section .photo-content {
        width: 40%;
    }
    /* Specific reverse layout for section 2 of the about page */
    .about-section-2 .text-content {
        order: 1; 
		 font-color: #ffffff;
    }
    .about-section-2 .photo-content {
        order: 0;
    }
}

/* Mobile Adjustments (Ensures stacking on mobile < 992px) */
@media (max-width: 992px) {
    /* Stacks standard content sections vertically */
    .content-section, .content-section.reverse {
        flex-direction: column;
    }

    .content-text, .content-image {
        padding: 10px;
    }

    /* Stacks 50/50 split sections vertically */
    .split-container {
        flex-direction: column; 
        height: auto; /* Allows scrolling on mobile */
    }

    .split-panel {
        height: 50vh; /* Each panel takes half the viewport height on mobile */
    }
    
    /* Stats Section mobile adjustments */
    .stats-container {
        flex-direction: column;
    }
    .count-num {
        font-size: 4em;
    }
    .stat-item p {
        font-size: 1.2em;
    }
}
footer {
    background-color: #003720; /* Darker green background */
    color: white;
    padding: 10px 10px;
    font-family: 'Sarpanch', sans-serif; /* Matches your navigation font */
    margin-top: 20px; /* Adds space above the footer */
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;

}

.footer-section h3 {
    color: #FFFFFF; /* Accent color for titles */
    margin-bottom: 15px;
    font-size: 1.2em;
    text-transform: uppercase;
}

.footer-section p, .footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
}

.footer-section a:hover {
    text-decoration: underline;
	 font-weight: bold;
}

.social-link {
    /* Add styles for social media icons if you use them */
    display: inline;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 5px;
    padding-top: 0px;
    border-top: 1px solid #072418; /* A subtle line above copyright */
    font-size: 0.8em;
    color: #888;
}

/* Responsive adjustment for footer on smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section p, .footer-section a {
        display: inline; /* Keep links inline on mobile if centered */
    }
}
/* --- Sponsors Page Styles --- */

/* Container for the page content, accounting for fixed header */
.sponsors-container {
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* H1 title styles */
.sponsors-title {
    text-align: center;
    font-size: 4em;
    color: white;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 2px solid #003720;
    padding-bottom: 10px;
}

/* H2 tier titles styles */
.tier-title {
    text-align: center;
    font-size: 2.5em;
    color: #000000; /* Your accent color */
    margin-top: 50px;
    margin-bottom: 0px;
}

/* Base style for all logo rows using Flexbox */
.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between images */
    padding: 0 20px;
}

/* Image container (the link) needs to have display flex/inline-flex to work with gap */
.logo-link {
    display: flex; 
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Removes default link underline */
}

.logo-row img {
    height: auto;
    object-fit: contain; /* Prevents logos from stretching */
    transition: transform 0.3s ease;
}

.logo-row img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Platinum Tier: 70% width */
.platinum-row .logo-link {
    /* calc() ensures 70% width minus half the gap size for centering */
    width: calc(70% - 10px); 
    max-width: 500px; /* Optional max size for very large screens */
}

/* Gold Tier: 50% width each */
.gold-row .logo-link {
    /* calc() ensures 50% width minus half the gap size */
    width: calc(50% - 10px);
}

/* Silver Tier: Equal width (approx 33.3%) */
.silver-row .logo-link {
    /* calc() ensures 33.3% width minus the gap spacing */
    width: calc(33.3% - 14px); 
}

/* Responsive adjustments for mobile: stack images */
@media (max-width: 768px) {
    .platinum-row .logo-link,
    .gold-row .logo-link,
    .silver-row .logo-link {
        width: 100%; /* Images stack vertically and take full width on mobile */
        max-width: 300px; /* Optional size constraint for mobile */
    }

    .sponsors-title {
        font-size: 2.5em;
    }
    
    .tier-title {
        font-size: 2em;
    }
}
.scroll-container {
  display: flex;
  overflow-x: auto; /* Enables horizontal scroll bar */
  white-space: nowrap;
  gap: 10px; /* Space between images */
  padding-bottom: 15px; /* Space for the scrollbar */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory; /* Optional: snaps to images */
}

.scroll-container a {
  flex: 0 0 calc(20% - 10px); /* Shows 5 items at once */
  scroll-snap-align: start;
}

.scroll-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s;
}

.scroll-container img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Custom scrollbar styling (Optional) */
.scroll-container::-webkit-scrollbar {
  height: 8px;
}
.scroll-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
/* CSS for Magazine Wrap & Columns */
.magazine-content {
  column-count: 2; /* Optional: Creates two-column magazine text */
  column-gap: 30px;
  line-height: 1.6;
}

.float-right {
  float: right;
  width: 40%;
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.pull-quote {
  font-size: 1.5rem;
  font-style: italic;
  border-left: 4px solid #333;
  padding-left: 20px;
  margin: 20px 0;
  column-span: all; /* Spans across both columns if using columns */
}
/* Styling the Arrows */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.nav-arrow {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-arrow:hover {
  color: #007bff;
}

/* Optional: "Sticky" Floating Arrows on the sides */
/*
.left-arrow { position: fixed; left: 20px; top: 50%; }
.right-arrow { position: fixed; right: 20px; top: 50%; }
*/
.full-screen-image {
  /* Set your photo as a background */
  background-image: url('your-image-url.jpg');
  
  /* Make it fill the entire screen */
  width: 100vw;   /* 100% of viewport width */
  height: 100vh;  /* 100% of viewport height */
  
  /* Ensure the image covers the area without stretching */
  background-size: cover;
  background-position: center;
  
  /* Optional: keeps image still as you scroll */
  background-attachment: fixed; 
}

/* Ensure no default page margins create gaps */
body {
  margin: 0;
  padding: 0;
}

@media (max-width: 992px) {
    .stats-container {
        /* Mobile fixes */
        flex-direction: column; 
        padding: 40px 20px; /* Reduced from 50px */
        background-attachment: scroll; /* 'fixed' causes glitches/zoom issues on mobile */
        background-position: center center;
    }

    .stat-item {
        width: 100%;
        margin: 0;
        padding: 30px 0; /* Huge fix: changed from 150px to 30px */
        min-width: unset;
        border-bottom: 1px solid rgba(211, 211, 211, 0.2); /* Optional: adds a separator */
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .count-num {
        font-size: 3.5em; /* Scale down the giant 5em font for small screens */
    }
}