/* ===================================
   ULTRA CAMP RUNNERS - CUSTOM STYLES
   Bold Sports Aesthetic
   =================================== */

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Primary Colors */
    --primary-color: #FF6B35;
    --primary-dark: #D94E1F;
    --secondary-color: #FFA500;
    --accent-color: #FFD700;

    /* Neutral Colors */
    --dark-bg: #0A0E27;
    --dark-secondary: #141829;
    --dark-tertiary: #1A1F3A;
    --light-text: #FFFFFF;
    --gray-text: #B8C1EC;
    --border-color: rgba(255, 107, 53, 0.2);

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.85) 100%);

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--gray-text);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--light-text);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: transparent;
    padding: 25px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--light-text) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.brand-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
}

.brand-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-text) !important;
    padding: 8px 18px !important;
    margin: 0 5px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--light-text);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: 
        url('https://images.unsplash.com/photo-1452626038306-9aae5e071dd3?w=1600') center/cover no-repeat,
        var(--dark-bg); */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 10vw, 120px);
    line-height: 0.9;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--light-text);
}

.title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 30px auto;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 24px);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--light-text);
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray-text);
    line-height: 1.8;
}

.btn-hero-primary,
.btn-hero-secondary {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 18px 40px;
    margin: 10px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: var(--light-text);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-hero-secondary:hover {
    background: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--light-text);
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
.animate-in {
    animation: fadeInUp 1s ease;
}

.animate-in-delay-1 {
    animation: fadeInUp 1.2s ease;
}

.animate-in-delay-2 {
    animation: fadeInUp 1.4s ease;
}

.animate-in-delay-3 {
    animation: fadeInUp 1.6s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */
.section-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 45px);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin-bottom: 25px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
}

/* ===================================
   ABOUT PREVIEW SECTION
   =================================== */
.about-preview-section {
    background: var(--dark-secondary);
    position: relative;
}

.about-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-preview-img {
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.about-image-wrapper:hover .about-preview-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), transparent);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 0.5;
}

.about-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.stat-item {
    background: rgba(10, 14, 39, 0.9);
    padding: 25px 35px;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-text);
    margin-top: 5px;
}

.btn-outline-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 35px;
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* ===================================
   EVENTS SECTION
   =================================== */
.events-section {
    background: var(--dark-bg);
}

.event-card {
    background: var(--dark-secondary);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: width 0.4s ease;
    z-index: 1;
}

.event-card:hover::before {
    width: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(50%);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--light-text);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 15px;
    letter-spacing: 1.5px;
    z-index: 2;
}

.event-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.event-date,
.event-location {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-date i,
.event-location i {
    color: var(--primary-color);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 15px 0;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.event-card:hover .event-title {
    color: var(--primary-color);
}

.event-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.event-distance {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.btn-event {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 25px;
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    border-color: transparent;
}

/* ===================================
   TEAM PREVIEW SECTION
   =================================== */
.team-preview-section {
    background: var(--dark-secondary);
}

.team-card {
    background: var(--dark-tertiary);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--light-text);
    color: var(--light-text);
    font-size: 18px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.team-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--light-text);
}

.team-role {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
    background: var(--dark-bg);
}

.blog-card {
    background: var(--dark-secondary);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.blog-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--light-text);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray-text);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
    transition: color 0.3s ease;
    line-height: 1.4;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-section {
    background: var(--dark-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.newsletter-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 15px;
}

.newsletter-form .input-group {
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--primary-color);
}

.newsletter-form .form-control {
    background: var(--dark-tertiary);
    border: none;
    color: var(--light-text);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 18px 25px;
}

.newsletter-form .form-control:focus {
    background: var(--dark-tertiary);
    color: var(--light-text);
    box-shadow: none;
}

.newsletter-form .form-control::placeholder {
    color: var(--gray-text);
}

.btn-newsletter {
    background: var(--gradient-primary);
    color: var(--light-text);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 18px 40px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    transform: translateX(-3px);
}

.newsletter-privacy {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-bg);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.footer-description {
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-tertiary);
    border: 2px solid var(--border-color);
    color: var(--light-text);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    color: var(--light-text);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-text);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--gray-text);
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--gray-text);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links span {
    color: var(--gray-text);
}

/* ===================================
   PAGE HEADER (for internal pages)
   =================================== */
.page-header {
    /* background: 
        linear-gradient(135deg, #0a0e27f2 0%, #1a1f3ad9 100%),
        url('https://images.unsplash.com/photo-1452626038306-9aae5e071dd3?w=1600') center/cover no-repeat; */
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 80px);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.breadcrumb-item a {
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--gray-text);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 991px) {
    section {
        padding: var(--section-padding-mobile);
    }

    .navbar-collapse {
        background: rgba(10, 14, 39, 0.98);
        padding: 20px;
        margin-top: 20px;
        border-top: 2px solid var(--primary-color);
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }

    .btn-primary-custom {
        margin-top: 15px;
        width: 100%;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-stats {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {

    .btn-hero-primary,
    .btn-hero-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .event-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links span {
        display: none;
    }
}

/* ===================================
   EVENTS PAGE STYLES
   =================================== */
.events-listing-section {
    background: var(--dark-secondary);
}

.past-events-section {
    background: var(--dark-bg);
}

.past-event-card {
    background: var(--dark-secondary);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.past-event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.past-event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(70%);
    transition: all 0.6s ease;
}

.past-event-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.past-event-content {
    padding: 25px;
}

.past-event-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.past-event-content p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.past-event-content i {
    color: var(--primary-color);
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination .page-link {
    background: var(--dark-tertiary);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--light-text);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: transparent;
}

.pagination .page-item.disabled .page-link {
    background: var(--dark-bg);
    border-color: var(--border-color);
    color: var(--gray-text);
}

/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */
.about-content-section {
    background: var(--dark-secondary);
}

.about-main-image {
    position: relative;
    overflow: hidden;
}

.about-main-image img {
    width: 100%;
    filter: grayscale(20%);
    transition: all 0.6s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    padding: 25px 30px;
    text-align: center;
}

.badge-year {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--light-text);
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--light-text);
}

.mission-vision-box {
    background: var(--dark-tertiary);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.mv-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.mv-item:last-child {
    margin-bottom: 0;
}

.mv-icon {
    font-size: 32px;
    color: var(--primary-color);
    min-width: 40px;
}

.mv-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.mv-content p {
    margin: 0;
    color: var(--gray-text);
    font-size: 16px;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--dark-bg);
}

.feature-card {
    background: var(--dark-secondary);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.feature-description {
    color: var(--gray-text);
    font-size: 16px;
    margin: 0;
    line-height: 1.7;
}

/* Achievements Section */
.achievements-section {
    background: var(--dark-secondary);
}

.stat-card {
    background: var(--dark-tertiary);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.stat-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--light-text);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stat-description {
    color: var(--gray-text);
    font-size: 15px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-description {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   TEAM PAGE STYLES
   =================================== */
.team-section {
    background: var(--dark-secondary);
}

.join-team-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

/* ===================================
   SHOP PAGE STYLES
   =================================== */
.shop-section {
    background: var(--dark-secondary);
}

.shop-sidebar {
    background: var(--dark-tertiary);
    padding: 30px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: var(--gray-text);
    font-size: 16px;
    font-family: var(--font-body);
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    border-left-color: var(--primary-color);
}

.product-card {
    background: var(--dark-tertiary);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--light-text);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 15px;
    letter-spacing: 1.5px;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.old-price {
    font-size: 20px;
    color: var(--gray-text);
    text-decoration: line-through;
    margin-right: 10px;
}

.btn-product {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 30px;
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    border-color: transparent;
}

/* ===================================
   BLOG PAGE STYLES
   =================================== */
.blog-listing-section {
    background: var(--dark-secondary);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--dark-tertiary);
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    display: flex;
    gap: 15px;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.recent-posts a:hover {
    color: var(--primary-color);
}

.post-thumb {
    min-width: 70px;
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info h6 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-info span {
    font-size: 13px;
    color: var(--gray-text);
}

.category-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-widget li {
    margin-bottom: 12px;
}

.category-widget a {
    display: flex;
    justify-content: space-between;
    color: var(--gray-text);
    font-size: 16px;
    padding: 10px 15px;
    background: var(--dark-bg);
    transition: all 0.3s ease;
}

.category-widget a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.category-widget span {
    color: var(--primary-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 8px 18px;
    background: var(--dark-bg);
    color: var(--gray-text);
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    border-color: transparent;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-section {
    background: var(--dark-secondary);
}

.contact-info-box {
    background: var(--dark-tertiary);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--light-text);
    font-size: 24px;
}

.contact-details h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--gray-text);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--dark-tertiary);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--light-text);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-form .form-control {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.contact-form .form-control::placeholder {
    color: var(--gray-text);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    color: var(--light-text);
}

.map-section {
    background: var(--dark-bg);
    padding: 0;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    width: 100%;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.bg-dark-primary {
    background: var(--dark-bg);
}

.bg-dark-secondary {
    background: var(--dark-secondary);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.border-gradient {
    border: 1px solid var(--border-color);
}

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

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--light-text);
}