/* Global Styles */
body {
    background-color: #000000;
    padding: 0 15px;
    color: #ffffff;
    font-family: 'Lexend Mega', sans-serif;
    margin: 0;
    font-size: 16px;
    max-width: 100%;
}

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

/* Header */
#main-header {
    background-color: #000000;
    width: 100%;
    padding: 0;
}

.header-container {
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.header-banner {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.header-banner-mobile {
    display: none;
    width: 100%;
    margin: 0 auto;
}

/* Footer */
.footer-wrapper {
    text-align: center;
    padding: 20px 0;
    font-size: 11px;
    color: #ffffff !important;
}

/* Navigation (Desktop) */
#main-nav {
    margin: 10px 0;
    text-align: center;
}

.nav-list {
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
    text-align: center;
}

.nav-list li {
    display: inline-block;
    margin-right: 15px;
}

.nav-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.nav-list li a:hover {
    color: #F5E69F;
}

/* Two-Column Layout */
.two-column-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}

/* Left column (image) */
.left-column {
    flex: 7;
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Right column (text box) */
.right-column {
    flex: 4;
    background-color: #A6A6A6;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Text in right column */
.right-column h1 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.right-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}


/* Hamburger Icon (hidden by default) */
#menu-toggle {
    display: none;
    font-size: 28px;border: none;
    color: #ffffff;
	background-color: #000000;
    cursor: pointer;
    margin: 10px auto;
}

/* Tablet/Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Show hamburger menu */
    #menu-toggle {
        display: block !important;
    }

    /* Hide desktop navigation */
    .nav-list {
        display: none !important;
    }

    /* Show mobile navigation when hamburger is clicked */
    #main-nav.active .nav-list {
        display: block !important;
        background-color: #000;
        width: 100%;
        margin: 0 auto;
    }

    .nav-list li {
        display: block;
        margin-bottom: 10px;
    }

    /* Hide desktop logo, show mobile */
    .header-banner {
        display: none !important;
    }

    .header-banner-mobile {
        display: block !important;
    }
	
	.two-column-layout {
        display: block; /* Switch to block layout */
        -webkit-display: block; /* WebKit fix */
        width: 100%;
        margin: 0 auto;
    }

    .left-column,
    .right-column {
        width: 80% !important; /* Full width for both columns */
        -webkit-width: 100% !important; /* WebKit fix */
        margin: 0 auto;
    }

    .main-image {
        width: 100% !important; /* Ensure the image takes full width */
        height: auto; /* Maintain aspect ratio */
        -webkit-width: 100% !important; /* WebKit fix */
        -webkit-height: auto; /* WebKit fix */
    }

    .right-column {
        margin-top: 20px; /* Add space between the two columns */
    }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .nav-list li a {
        font-size: 12px;
    }
	
	.two-column-layout {
        display: block; /* Ensure the layout stacks vertically */
        -webkit-display: block; /* WebKit fix */
        width: 100%;
        margin: 0 auto;
    }

    .left-column,
    .right-column {
        width: 80% !important; /* Full width for both columns */
        -webkit-width: 100% !important; /* WebKit fix */
    }

    .main-image {
        width: 100% !important; /* Full width image */
        height: auto; /* Keep aspect ratio */
        -webkit-width: 100% !important; /* WebKit fix */
        -webkit-height: auto; /* WebKit fix */
    }

    .right-column {
        margin-top: 15px; /* Adjust spacing for smaller screens */
    }
}
