/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sand: #d4b483;
    --desert-red: #a0522d;
    --dune-orange: #cd853f;
    --sky-blue: #87ceeb;
    --lagoon-blue: #5f9ea0;
    --dark-brown: #8b4513;
    --light-beige: #f5f5dc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-beige);
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    color: var(--dark-brown);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: var(--desert-red);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--dune-orange);
}

/* Header Styles */
header {
    background: linear-gradient(to left, var(--desert-red), var(--dune-orange));
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    margin-left: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 30px;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 3px;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1509316975850-3e98e6b30b6d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    background-color: rgb(255, 255, 255);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 50px;
    color: var(--desert-red);
    margin-bottom: 20px;
}

/* Quick Links Section */
.quick-links {
    background-color: var(--light-beige);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.link-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.link-card:hover {
    transform: translateY(-10px);
}

.link-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.link-content {
    padding: 20px;
    background: white;
}

/* Page-specific Styles */
.page-header {
    height: 40vh;
    
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgb(0, 0, 0);
    margin-top: 70px;
}

.page-content {
    background-color: white;
    padding: 40px 0;
}

.about-content, .initiatives-content, .circuits-content, .contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text, .initiatives-text, .circuits-text, .contact-info {
    flex: 1;
}

.about-image, .initiatives-image, .circuits-image, .contact-form {
    flex: 1;
}

.about-image img, .initiatives-image img, .circuits-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.initiatives-grid, .circuits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.initiative-card, .circuit-card {
    background: var(--light-beige);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.initiative-card:hover .card-image img, .circuit-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: linear-gradient(to left, var(--desert-red), var(--dune-orange));
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-beige);
}

.footer-links i {
    margin-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--light-beige);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--desert-red);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: right 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .about-content, .initiatives-content, .circuits-content, .contact-content {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}
/* Initiatives Tabs Section */
.initiatives-tabs {
    background-color: white;
    padding: 60px 0;
}

.tabs-container {
    background: var(--light-beige);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: #ddd;
}

.tab-btn {
    background: white;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-brown);
}

.tab-btn:hover {
    background: var(--light-beige);
}

.tab-btn.active {
    background: var(--desert-red);
    color: white;
}

.tab-btn i {
    font-size: 24px;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.tab-text {
    flex: 1;
}

.tab-image {
    flex: 1;
}

.tab-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.partner {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.partner i {
    font-size: 30px;
    color: var(--desert-red);
    margin-bottom: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 30px;
    color: var(--desert-red);
    margin-bottom: 10px;
}

/* Product Info */
.product-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: bold;
    color: var(--dark-brown);
}

.value {
    color: var(--desert-red);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.price-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.type {
    display: block;
    font-size: 14px;
    color: #666;
}

.price {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--desert-red);
    margin-top: 5px;
}

/* Products Grid in Tabs */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 150px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h4 {
    margin-bottom: 5px;
    color: var(--dark-brown);
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* Help Options */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.help-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.help-option i {
    font-size: 30px;
    color: var(--desert-red);
    margin-top: 5px;
}

.help-option h4 {
    margin-bottom: 5px;
    color: var(--dark-brown);
}

.help-option p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.btn-small {
    display: inline-block;
    background: var(--desert-red);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-small:hover {
    background: var(--dune-orange);
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.impact-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.impact-item i {
    font-size: 30px;
    color: var(--desert-red);
    margin-bottom: 10px;
}

.impact-item span {
    display: block;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tab-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-content-inner {
        flex-direction: column;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px;
    }
} 
/* إضافة هذا الكود إلى style.css */

/* Initiatives Tabs Section */
.initiatives-tabs {
    background-color: white;
    padding: 60px 0;
}

.tabs-container {
    background: var(--light-beige);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: #ddd;
}

.tab-btn {
    background: white;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-brown);
}

.tab-btn:hover {
    background: var(--light-beige);
}

.tab-btn.active {
    background: var(--desert-red);
    color: white;
}

.tab-btn i {
    font-size: 24px;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.tab-text {
    flex: 1;
}

.tab-image {
    flex: 1;
}

.tab-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Living Experiences Section */
.living-experiences {
    background: linear-gradient(135deg, #f8f5f0, #e8e0d5);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experience-image {
    height: 200px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    padding: 25px;
}

.experience-content h3 {
    color: #a0522d;
    margin-bottom: 15px;
    font-size: 1.4em;
    line-height: 1.3;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.experience-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.experience-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.experience-content li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.experience-content li:before {
    content: "✓";
    color: #a0522d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.experience-meta {
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.experience-meta span {
    font-size: 0.9em;
    color: #666;
}

/* Activities & Events Section */
.activities-events {
    background: white;
    padding: 80px 0;
    border-top: 3px solid #a0522d;
}

.events-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.events-content h3 {
    color: #8b4513;
    margin-bottom: 10px;
}

.events-content p {
    color: #666;
    margin-bottom: 30px;
}

.event-list {
    margin-top: 30px;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #a0522d;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
    background: #f0f0f0;
}

.event-date {
    text-align: center;
    background: #a0522d;
    color: white;
    padding: 15px;
    border-radius: 8px;
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-details h4 {
    color: #8b4513;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.event-details p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.event-time {
    font-size: 0.8em;
    color: #888;
}

.facebook-widget {
    background: #f0f2f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.facebook-widget h4 {
    color: #8b4513;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .events-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-card {
    animation: fadeInUp 0.6s ease forwards;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }
.experience-card:nth-child(4) { animation-delay: 0.4s; }
.experience-card:nth-child(5) { animation-delay: 0.5s; }
.experience-card:nth-child(6) { animation-delay: 0.6s; }

.feedback {
  padding: 40px;
  text-align: center;
  background: #f9f9f9;
}

.feedback h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card h3 span {
  font-size: 0.9rem;
  color: #555;
  margin-left: 5px;
}

.card p {
  font-size: 0.95rem;
  color: #444;
}
.activities-events {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #2c3e50;
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.events-content {
    flex: 1 1 600px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.event-date {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date .day {
    font-size: 24px;
    font-weight: bold;
}

.event-date .month {
    font-size: 14px;
}

.event-details {
    padding: 15px;
}

.event-details h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #2c3e50;
}

.event-details p {
    margin: 0 0 5px;
    font-size: 14px;
    color: #555;
}

.event-details .event-time {
    font-size: 12px;
    color: #888;
}

.facebook-widget {
    flex: 0 0 360px;
}
.logo img {
    background: none; /* بلا background */
    display: inline-block;
    vertical-align: middle;
}
.logo img {
    height: 50px;
    width: auto;
}
/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-section p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

/* Grid layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff9800;
  outline: none;
}

.contact-form button {
  background: #ff9800;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e68900;
}

/* Contact Info */
.contact-info {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  color: #555;
}

.contact-info ul li i {
  margin-right: 8px;
  color: #ff9800;
}

/* Social Links */
.social-links a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #555;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Dropdown style */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: block;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  border-radius: 5px;
}

.dropdown-menu li a {
  padding: 10px;
  color: #fff;
}

.dropdown-menu li a:hover {
  background: #444;
  color: #ffd700;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}
.gallery-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.gallery-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff9800;
}

/* Filters */
.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}
.gallery-filters button {
    background: #fff;
    border: 1px solid #ff9800;
    color: #ff9800;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}
.gallery-filters button:hover,
.gallery-filters button.active {
    background: #ff9800;
    color: #fff;
}

/* Masonry Grid */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.lightbox img,
.lightbox video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.lightbox:target {
    display: flex;
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

.president-hero {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%),
        url('IMG_8538.jpeg') center/cover no-repeat;
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.president-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(74, 107, 147, 0.3) 0%, 
        rgba(108, 91, 123, 0.2) 50%, 
        rgba(146, 83, 103, 0.3) 100%);
    mix-blend-mode: overlay;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.title-container {
    margin-bottom: 30px;
}

.president-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 100;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.president-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 40;
    color: #f8f8f8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.association-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 12px 30px;
    display: inline-block;
}

.association-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}