* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
  }


  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }
  
  .nav-links i {
    margin-right: 5px;
  }

  .nav-links a.active {
    color: #d94f30; /* Example: orange color */
    font-weight: bold;
    border-bottom: 2px solid #d94f30;
    text-decoration: none;
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .reveal-onload {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
  }
  
  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .dropdown-content a:hover {
    background-color: #f0f0f0;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  

  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 650;
    font-size: 16px;
  }

  .sidebar-links a {
    text-decoration: none;
    color: inherit; /* Optional: keeps the same text color as the parent */
  }

  .sidebar-links a:hover {
    text-decoration: underline; /* Optional: adds underline on hover */
  }

  .nav-links a:hover {
    color: #cc0000;
  }

  /* About Section */
.about {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-top: 20px;
  }
/* Gallery Section */
.gallery {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    
}




.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    transition: grid-template-columns 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

  
/* Blog Section */
.blog {
    padding: 60px 20px;
    background-color: #fafafa;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    transition: grid-template-columns 0.3s ease;
}

.post {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.post:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.post h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.post p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.read-more {
    font-size: 1.1rem;
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
    color: #ff1a1a;
}


/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.contact ul {
    list-style: none;
    padding: 0;
}

.contact ul li {
    font-size: 1.1rem;
    color: #333;
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.contact ul li i {
    margin-right: 15px;
    color: #cc0000;
    font-size: 1.3rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    transition: border 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
    border: 1px solid #cc0000;
    outline: none;
}

.contact form button {
    padding: 15px 30px;
    border-radius: 8px;
    background-color: #cc0000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #ff1a1a;
}

/* Footer Section */
.footer {
    position: relative;
    background-color: #333;
    color: #fff;
    padding: 30px 10px;
    text-align: left;
    overflow: hidden;
}

/* Background image with semi-transparent overlay */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/3/10-2.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

/* Dark border/vignette effect */
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
}

/* Ensure footer content is above overlays */
.footer * {
    position: relative;
    z-index: 1;
}


.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 4 columns now */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;

}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #bbb;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #cc0000;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
}

.footer-column a:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* Sponds (Sponsors) Section */
.sponds-column .sponsor-logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.sponds-column .sponsor-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.sponds-column h3 {
    margin-bottom: 20px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: #bbb;
}

.footer-bottom p {
    margin: 0;
}


  
  .logo-title {
    display: flex;
    align-items: center;
  }
  
  .logo-title img {
    width: 55px;
    margin-right: 10px;
  }
  
  .logo-title h1 {
    font-size: 16px;
    font-weight: bold;
    color: #222;
  }
  
  .logo-title p {
    font-size: 12px;
    color: #666;
  }

  .flag {
    height: 50px;

  }

  .hamburger {
    font-size: 26px;
    cursor: pointer;
    display: block;
  }
  
  .hero {
    background: url('../img/3/10-2.png') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;


    
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.359);
    padding: 120px;
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
  }
  
  .media-logo {
    width: 150px;
    margin-bottom: 15px;

    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }

  
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero h3 {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  .hero p {
    font-size: 1rem;
    margin: 15px 0;
  }
  
  .buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  
  .btn.green {
    background-color: #28a745;

    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  
  
  .btn.red {
    background-color: #dc3545;

    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }

  .btn.blue {
    background-color: blue;

    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  
  /* Sidebar */
  #sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #1e1e2f;
    color: white;
    z-index: 1100;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    padding-top: 60px;
  }
  
  #sidebar.show {
    left: 0;
  }
  
  .sidebar-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #151521;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .close-btn {
    cursor: pointer;
    font-size: 22px;
  }
  
  .sidebar-links {
    list-style: none;
    padding: 0;
  }
  
  .sidebar-links li {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    font-size: 16px;
  }
  
  .sidebar-links li.active,
  .sidebar-links li:hover {
    background: #333;
  }


  
  /* Overlay when sidebar opens */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1050;
  }
  
  .mobile-menu-overlay.show {
    display: block;
  }

  
  
  /* Desktop menu will go here if needed in future */
  @media (min-width: 769px) {
    #sidebar {
      display: none;
    }
  
    .hamburger {
      display: none;
    }



  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .hamburger {
      display: block;
    }
    .flag {
        display: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stacks columns vertically on smaller screens */
    }

    
  .media-logo {
    width: 120px;
    margin-bottom: 15px;
  }

  
  
  .hero h2 {
    font-size: 1.6rem;
  }
  
  .hero h3 {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  .hero p {
    font-size: 1rem;
    margin: 15px 0;
  }
  
  .buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  
  .btn.green {
    background-color: #28a745;
  }
  
  .btn.red {
    background-color: #dc3545;
  }

  .overlay {
    background-color: rgba(0, 0, 0, 0.359);
    padding: 20px;
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
  }

  .logo-title img {
    width: 48px;
    margin-right: 10px;
  }
  
  
}
}
  