/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			prosilver (the default phpBB 3.3.x style)
	Based on style:
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Limited ( https://www.phpbb.com/ )
    --------------------------------------------------------------
*/

@import url("normalize.css?hash=48eb3f89");
@import url("base.css?hash=7c5543be");
@import url("utilities.css?hash=d8f72c42");
@import url("common.css?hash=843d5d5f");
@import url("links.css?hash=18286e16");
@import url("content.css?hash=d0e24377");
@import url("buttons.css?hash=56f0d25f");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=9016b55c");
@import url("icons.css?hash=64da33ce");
@import url("colours.css?hash=fcb2f289");
@import url("responsive.css?hash=c9d32cba");

/* Fixed Header */
#page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Prevent page content from being hidden under fixed header */
#wrap {
    padding-top: 315px; /* Adjust based on actual header height */
}

/* Custom Hamburger Menu */
.menu-container {
    position: relative;
    display: inline-block;
}

.menu-icon {
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 25px;
    position: relative;
}

.menu-icon span {
    background: #333;
    display: block;
    height: 3px;
    width: 100%;
    margin: 5px 0;
}

.menu-toggle {
    display: none;
}

.menu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    padding: 10px;
    z-index: 1000;
}

.menu a {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
}

.menu-toggle:checked + .menu {
    display: block;
}

/* Expandable submenu */
.expandable {
    position: relative;
}

.expand-icon {
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ccc;
    margin-left: 10px;
}

.expand-toggle {
    display: none;
}

.expand-toggle:checked + .expand-icon + .sub-menu {
    display: block;
}

.sub-menu {
    display: none;
    margin-top: 5px;
}

.sub-menu li {
    list-style: none;
}

/* Responsive adjustments */
@media (min-width: 700px) {
    .menu {
        display: flex !important;
        position: static;
        box-shadow: none;
        background: none;
        padding: 0;
    }
    .menu a {
        margin: 0 10px;
		/* Desktop menu font style */
        /* font-family: Arial, sans-serif; */
        /* font-weight: normal; */
        /* font-size: 16px; */
		font-family: 'Brush Script MT', cursive;
        font-weight: bold;
        font-size: 24px;
        color: black;
        text-decoration: none;
    }
	
    .menu-toggle:checked + .menu {
        display: flex;
    }
	/* Hide hamburger icon on desktop */
    .menu-icon {
        display: none;
    }
}
/* On mobile, show hamburger icon and dropdown menu */
@media (max-width: 699px) {
    .menu {
        display: none;
        flex-direction: column;
    }

    .menu-toggle:checked + .menu {
        display: flex;
    }

    .menu-icon {
        display: inline-block;
    }
}
