/* Correct placement of @import rules */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* After all @import rules, you can start defining your styles */

:root {
    --header-bg-color: #000000;        /* Default header background color */
    --font-color: #fff;                /* Default font color */
    --font-family: 'Lato', sans-serif; /* Default font family */
    --font-size: 17px;                 /* Default font size */
    --font-weight: 600; /* Change this to the desired weight */
    --dropdown-bg-color: #000000;      /* Default dropdown background color */
    --dropdown-font-color: #fff;       /* Default dropdown font color */
    --dropdown-hover-color: #f75216;   /* Default dropdown hover color */
}

/* Your other styles go here */
/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styles */
header {
    background-color: var(--header-bg-color);
    color: var(--font-color);
    padding: 10px 0;
    font-family: var(--font-family);
    font-weight: var(--font-weight);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.logo img {
    max-width: 100px;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 20px;
}

nav ul li a {
    color: var(--font-color);
    text-decoration: none;
    font-size: var(--font-size);
    padding: 5px 10px;
    position: relative;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--dropdown-hover-color);
}

nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--dropdown-hover-color);
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
    font-size: 0.8em;
}

/* Dropdown styles */
nav ul li .dropdown {
    display: none;
    position: absolute;
    background-color: var(--dropdown-bg-color);
    padding: 10px;
    top: 100%;
    left: 0;
    list-style: none;
    z-index: 1000;
    min-width: 200px;
}

/* Show dropdown when active */
nav ul li .dropdown.show {
    display: block;
}

nav ul li .dropdown li {
    margin: 5px 0;
    text-align: center;
}

nav ul li .dropdown li a {
    color: var(--dropdown-font-color);
    font-size: calc(var(--font-size) - 2px);
    display: block;
    padding: 5px 10px;
    white-space: nowrap;
}

nav ul li .dropdown li a:hover {
    color: var(--dropdown-hover-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: var(--font-color);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background-color: var(--header-bg-color);
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0;
        margin: 0;
        z-index: 1000;
        align-items: center;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        padding: 10px;
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    nav.active ul {
        display: flex;
    }

    nav ul li.active .dropdown {
        display: block;
    }
}


/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: var(--font-color);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background-color: var(--header-bg-color);
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0;
        margin: 0;
        z-index: 1000;
        align-items: center;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        padding: 10px;
        display: block;
    }

    nav ul li .dropdown {
        position: relative; /* Change from absolute to relative for proper stacking */
        display: none;
        width: 100%;
        margin-top: 5px; /* Add margin to push other items down */
    }

    .menu-toggle {
        display: flex;
    }

    nav.active ul {
        display: flex;
    }

    nav ul li.active .dropdown {
        display: block;
    }
}


/* Event Gallery Section */
body {
    background-color: #ffffff; /* Ensure the whole page has a white background */
}

.event-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #ffffff; /* White background */
    color: #333;
    font-family: 'Lato', sans-serif;
    text-align: left; /* Align text to the left */
}

.event-gallery h1 {
    font-size: 36px;
    color: #ff7705;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 10px;
}

.event-gallery p {
    font-size: 20px;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-item {
    display: flex;
    align-items: center;
    justify-content: center; /* Center align on desktop */
    margin-bottom: 40px;
    background-color: #ffffff; /* Ensure hexagons sit on a white background */
}

.hexagon {
    width: 300px;
    height: 300px;
    background: #ccc;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease;
    margin-right: 20px;
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inherit; /* Ensure the image fits within the hexagon */
}

.hexagon:hover {
    transform: scale(1.05); /* Add a slight hover effect */
}

.gallery-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #ff7705;
}

.gallery-text p {
    font-size: 18px;
    color: #000000;
}

@media (max-width: 768px) {
    .gallery-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center; /* Center align on mobile */
    }

    .hexagon {
        margin-bottom: 20px;
        margin-right: 0; /* Remove right margin to center the hexagon */
    }
}



/* Footer Styles */
.footer {
    background-color: #000000;
    padding: 30px 50px;
    color: #000000;
}

.footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer .footer-logo img {
    max-width: 120px;
}

.footer .footer-address, .footer .footer-contact {
    flex: 1 1 200px;
    max-width: 300px;
}

.footer .footer-address h4, .footer .footer-contact h4 {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #f7901e;
}

.footer .footer-address p, .footer .footer-contact p {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icons a {
    display: inline-block;
}

.footer .social-icons img {
    width: 30px;
    height: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer {
        padding: 20px 30px;
    }

    .footer .footer-content {
        gap: 20px;
    }

    .footer .footer-address, .footer .footer-contact {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 20px;
    }

    .footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .footer-logo {
        margin-bottom: 20px;
    }

    .footer .footer-address, .footer .footer-contact {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .footer .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px;
    }

    .footer .footer-content {
        gap: 15px;
    }

    .footer .footer-address, .footer .footer-contact {
        font-size: 14px;
    }

    .footer .social-icons img {
        width: 25px;
        height: 25px;
    }
}
.footer-bottom-bar {
    background-color: #333; /* Default color, can be changed */
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.footer-bottom-bar p {
    margin: 0;
}
