/* assets/css/style.css */

/* ==========================================================================
   CSS Variables & Typography
   ========================================================================== */
   :root {
    --primary-color: #d97706;
    --primary-hover: #b45309;
    --secondary-color: #1f2937;
    --text-color: #374151;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --border-color: #e5e7eb;
    
    --font-main: 'Assistant', sans-serif;
    
    --header-height: 80px;
    --sidebar-width: 300px;
    
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Reset & Base Setup
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--light-bg); }
.mt-3 { margin-top: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.relative { position: relative; }
.z-index-2 { z-index: 2; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   Header Layout
   ========================================================================== */
.site-header {
    background-color: var(--white);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 600;
    color: var(--secondary-color);
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Sidebar (Off-Canvas)
   ========================================================================== */
.site-sidebar {
    position: fixed;
    top: 0;
    right: calc(-1 * var(--sidebar-width));
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.site-sidebar.active {
    right: 0;
}

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

.close-sidebar {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.sidebar-nav {
    padding: 20px;
    flex-grow: 1;
}

.sidebar-nav ul li {
    margin-bottom: 15px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px;
    border-radius: 8px;
}

.sidebar-nav a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.sidebar-nav i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */
.main-content {
    flex-grow: 1;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.section-header h2 span {
    color: var(--primary-color);
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 500px;
    background-color: var(--secondary-color);
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e5e7eb;
}

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

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.highlight {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Cards Grid (Homepage, Workshops, Camps) */
.upcoming-events-section,
.catalog-section {
    padding: 80px 0;
}

.upcoming-events-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    color: var(--primary-hover);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

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

.event-image {
    position: relative;
    height: 200px;
    background-color: #e5e7eb;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-price {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
}

.event-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.event-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.workshop-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.workshop-meta li i {
    color: var(--primary-color);
    margin-left: 5px;
}

.camp-dates {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.date-box {
    flex: 1;
    background-color: var(--light-bg);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.date-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.date-value {
    display: block;
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px dashed var(--border-color);
}

.empty-state i {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 15px;
}

/* About Snippet Section */
.about-snippet-section {
    padding: 80px 0;
}

.about-snippet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-snippet-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-snippet-content h2 span {
    color: var(--primary-color);
}

.about-snippet-content p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-snippet-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #cbd5e1;
}

/* ==========================================================================
   Internal Pages Global (Hero)
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero-content h1 span {
    color: var(--primary-color);
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==========================================================================
   About Page (קצת עליי)
   ========================================================================== */
.about-hero {
    background-image: url('https://images.unsplash.com/photo-1600565193348-f74bd3c7ccdf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-image-placeholder {
    height: 500px;
    background-color: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #cbd5e1;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Workshops & Camps Catalogs
   ========================================================================== */
.workshops-hero {
    background-image: url('https://images.unsplash.com/photo-1507048331197-7d4ac70811cf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.camps-hero {
    background-image: url('https://images.unsplash.com/photo-1576867757603-05b134ebc379?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.filters-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.private-events-cta,
.info-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.private-events-cta h2,
.info-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.private-events-cta p,
.info-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    color: var(--text-color);
}

/* ==========================================================================
   Single Workshop / Camp Page & Forms
   ========================================================================== */
.single-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.single-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    z-index: 1;
}

.single-hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

.single-content-section {
    padding: 60px 0;
}

.single-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.single-main-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.single-main-info h2 span {
    color: var(--primary-color);
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.info-highlights {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight-box {
    background-color: var(--light-bg);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.highlight-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gallery-preview h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-item img {
    border-radius: 12px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Form Styles */
.sticky-card {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.booking-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.booking-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.booking-header h3 {
    font-size: 2.5rem;
    margin: 0;
}

.booking-header h3 span {
    font-size: 1.1rem;
    font-weight: normal;
    color: #9ca3af;
    display: block;
}

.booking-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9fafb;
}

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

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
    background-color: var(--white);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

.secure-checkout-text {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 15px;
}

.secure-checkout-text i {
    color: #10b981;
}

.allergy-warning {
    display: block;
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 600;
}

/* ==========================================================================
   Instagram Gallery Page
   ========================================================================== */
.gallery-hero {
    background-image: url('https://images.unsplash.com/photo-1547592180-85f173990554?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.instagram-section {
    padding: 80px 0;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ig-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    background-color: #f3f4f6;
    box-shadow: var(--shadow-sm);
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ig-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.ig-item:hover img {
    transform: scale(1.08);
}

.ig-item:hover .ig-overlay {
    opacity: 1;
}

.ig-overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ig-caption {
    font-size: 0.95rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ig-video-icon, .ig-carousel-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--white);
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1596524430615-b46475ddff6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-box h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-box h2 span {
    color: var(--primary-color);
}

.contact-info-box p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-text a, .contact-text span {
    color: var(--text-color);
    font-size: 1.05rem;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-social h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.social-links-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
}

.social-links-large a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.map-section {
    line-height: 0; /* Remove gap below iframe */
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.brand-col h3 span {
    color: var(--primary-color);
}

.brand-col p {
    color: #9ca3af;
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.links-col ul li, .contact-col ul li {
    margin-bottom: 12px;
    color: #9ca3af;
}

.links-col a:hover {
    color: var(--white);
    padding-right: 5px;
}

.contact-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-col i {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #111827;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Media Queries (Responsive perfection)
   ========================================================================== */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .about-snippet-grid,
    .story-grid,
    .single-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .story-image-wrapper {
        order: -1;
    }
    
    .upcoming-events-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .single-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .story-highlights,
    .gallery-grid,
    .ig-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .info-highlights {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-actions {
        display: none;
    }
    
    .sidebar-width {
        --sidebar-width: 280px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 0;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .camp-dates {
        flex-direction: column;
    }
    
    .ig-grid {
        grid-template-columns: 1fr;
    }
}