/* Header Styling */
header {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
	align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
}

body.page-id-8 header {
	background-color: white;
	color: black;
}

body.page-id-8  {
	background-color: white;
	color: black;
}



@font-face {
    font-family: 'FuturaPTMedium';
    src: url('./fonts/FuturaPTMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'FuturaPTMedium', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

.main-navigation {
    flex: 1;
    display: flex;
}

.menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

/* Basic setup */
.menu li {
    position: relative;
}

/* Initially hide sub-menu */
.menu li ul.sub-menu {
    display: none;
    list-style: none;
    padding: 0 10px;
}

/* Show sub-menu when the 'visible' class is added */
.menu li ul.sub-menu.visible {
    display: block;
}

/* Link styling */
.menu li a {
    color: #7e7e7e;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;
}

/* Hover effect for parent items (primary menu) */
.menu li.menu-item-has-children > a:hover,
.menu li.current-menu-item > a {
    color: white;
    text-decoration: none;
}

/* Hover effect for child menu items */
.menu li.menu-item-has-children .sub-menu li:hover > a,
.menu li.menu-item-has-children .sub-menu li.current-menu-item > a {
    color: white;
    text-decoration: none;
}

/* Adding a disc list style for active or hovered parent items only */
.menu li.menu-item-has-children > a:hover::after,
.menu li.current-menu-item > a::after {
    content: '•';
    position: absolute;
    right: -20px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px; /* Adjust the size of the disc */
    color: white;
}

body.page-id-8 .menu li.menu-item-has-children > a:hover,
body.page-id-8 .menu li.current-menu-item > a {
    color: black !important;
}

body.page-id-8 .menu li.menu-item-has-children > a:hover::after,
body.page-id-8 .menu li.current-menu-item > a::after {
    color: black !important;
}

body.page-id-8 .menu li.menu-item-has-children > a:hover,
body.page-id-8 .menu li.current-menu-item > a {
     color: black !important;
}


/* Make sure no disc appears when hovering child items */
.menu li.menu-item-has-children .sub-menu li:hover > a::after {
    content: none;
}

/* Logo Styling */
.logo-container a img {
    width: 196px;
    height: auto;
}

/* Logo Styling */
.logo-container a {
    width: 196px;
    height: auto;
}

.logo-container h1 a {
    color: #fff;
    text-decoration: none;
    font-family: "Arial Black", sans-serif;
    font-size: 24px;
}

/* General Content Styling */
.content-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.content-section p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header {
        flex-direction: row;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }

    .main-navigation {
        width: 100%;
    }

    .menu {
        flex-direction: column;
        gap: 15px;
    }

    .menu li a {
        font-size: 16px;
    }

    .menu li.menu-item-has-children > a {
        cursor: pointer; /* Show pointer cursor for clickable parent items */
    }
}



@font-face {
    font-family: 'FuturaPTMedium';
    src: url('./fonts/FuturaPTMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-start; /* Align navigation to left */
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
body.page-id-8 .hamburger-menu {
	color: black;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .menu {
        display: none; /* Hide menu on mobile */
        position: absolute;
        top: 60px; /* Adjust if needed */
        left: 0;
        width: 100vw;
        background-color: #000;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
	body.page-id-8 .menu {
		background-color: white !important;
		color: black !important;
	}

    /* Show hamburger menu */
    .hamburger-menu {
        display: block;
    }

    /* Show the menu when active */
    .menu.active {
        display: flex;
		z-index: 999;
    }
}




/* General Content Styling */
.content-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Image Styling */
.content-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    position: relative;
    transition: all 0.3s ease;
}

/* Darken the image on hover */
.home .content-section img:hover {
    filter: brightness(50%); /* Darken the image */
}

/* Alt Text Styling */
.home .content-section .alt-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    pointer-events: none;  /* Ensure the text doesn't block interaction */
    transition: opacity 0.3s ease;
    opacity: 1;
}

.home .content-section img:hover{
    cursor: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40"%3E%3Ccircle cx="20" cy="20" r="10" fill="white" /%3E%3C/svg%3E') 20 20, auto; 
}

/* Back to Top Button Styles */
#back-to-top {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 100;
    display: none;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    background-color: white;
    color: black;
}

#instagram-icon {
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

#instagram-icon:hover {
    color: #E1306C; /* Instagram pink tone for hover */
}

footer a {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-content: center;
    flex-wrap: wrap;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.page-id-8 #instagram-icon {
    color: black; 
}

.page-id-8 #instagram-icon:hover {
    color: #E1306C; 
}

.page-id-8 footer a {
    color: black; 
}

 .wp-block-button {
	 padding-top:15px;
	
}
