@font-face {
    font-family: 'akony';
    src: url('AKONY/AKONY.woff2') format('woff2'),
         url('AKONY/AKONY.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Tablets & small laptops */
@media (max-width: 1024px) {
    .image-container {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .product-background {
      width: 45%; /* Adjust size for medium screens */
    }
  }
  
  /* Mobile Devices */
  @media (max-width: 768px) {
    .image-container {
      flex-direction: column; /* Stack items on small screens */
    }
  
    .product-background {
      width: 90%; /* Make items take full width */
    }
  
    h1 {
      font-size: 24px; /* Adjust heading size for mobile */
    }
  }
  

/* Global Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;

    overflow-x: hidden; /* Prevents horizontal scrolling */
      
      
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: linear-gradient(to bottom right, #e6f0ff, #ffffff);
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #ffffff;
}

/* Navigation Bar */
.navbar {
    background-color: #003366; /* Darker blue background */
    color: rgb(239, 16, 16);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar:hover {
    background-color: #002244; /* Slightly darker on hover */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Poppins', Arial, sans-serif;

    font-size: 2rem;
    color: #2b2b4f; /* Light color for logo */
    text-decoration: none;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* Increased spacing between nav items */
}

.nav-links li {
    display: inline;
}

.nav-links a {
    font-family: 'Poppins', Arial, sans-serif;


    color: #2b2b4f; /* Light color for nav links */
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px; /* Padding for clickable area */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: #0056b3; /* Highlighted background on hover */
    color: #ffffff; /* White text color on hover */
}

/* Hero Section */
.hero {
    background-image: url('./images_event/background.jpg'); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
    border-bottom: 5px solid #0056b3;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Poppins', Arial, sans-serif;

    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #0056b3;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #003366;
}

/* Sections */
.details, .description, .contact {
    background-color: #f0f8ff;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.details-content, .description-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Activities Section Styles */
.activities {
    margin: 40px 0;
    padding: 30px 0;
    background-color: #ffffff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.activity {
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background-color: #e6f7ff;
}

.activity img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ccddee;
}

.text {
    padding: 20px;
}

.activity h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity h3 i {
    color: #0056b3;
    font-size: 1.2rem;
}

.activity p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}


.activities-section h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.activities-section h2 i {
    font-size: 1.5rem;
    color: #0056b3;
}

/* Participating Agencies Section */
.agencies {
    background-color: #e0f7ff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 10px;
    border: 1px solid #ccddee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.agencies h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.agency-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.agency-item {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    text-align: center;
}

.agency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.agency-item img {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.agency-item p {
    font-size: 1rem;
    color: #333;
    margin-top: 0;
}

.agency-item a {
    text-decoration: none;
    color: inherit;
}



/* event images */


.event-images {
    margin: 50px 0;
    text-align: center;
    padding: 0 20px;
}

.event-images h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2em;
    color: #333;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Only 3 images per row */
    gap: 15px;
    justify-items: center;
}

.image-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* Sponsors Section */
.sponsors {
    background-color: #e6f0ff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 10px;
    border: 1px solid #ccddee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sponsors h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sponsor-logos img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.sponsor-logos img.large-logo {
    max-width: 350px;
}

.sponsor-logos img.larger-logo {
    max-width: 500px;
}

.sponsor-logos img:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-top: 5px solid #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .activity, .sponsor-logos {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .agency-list {
        flex-direction: column;
        align-items: center;
    }

    .agency-list ul {
        text-align: center;
        width: 100%;
    }

    .details-content, .description-content {
        max-width: 90%;
    }
}


