@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* =========================================
   GLOBAL SITE STYLE
   Anna Utopia Giordano
   ========================================= */


/* =========================================
   RESET
   ========================================= */

html,
body {
    margin: 0;
    padding: 52px 0 0 0;
    width: 100%;
    min-height: 100%;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1em;
    font-weight: 300;
    background-color: #f6f6f6;
    color: #000000;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


* {
    box-sizing: border-box;
}


/* =========================================
   GLOBAL LINKS
   ========================================= */

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #0F4C81;
}

/* =========================================
   GLOBAL TYPOGRAPHY
   ========================================= */

h1 {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 3.1em;
    font-weight: 300;
    color: #000000;
    text-transform: uppercase;
    margin: 0 auto;
	letter-spacing: 0.08em;
}


h2 {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 2.1em;
    font-weight: 300;
    color: #000000;
    text-transform: uppercase;
    margin: 0 auto;
	letter-spacing: 0.07em;
}


h3 {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}


hr {
    border: 1px dashed #000000;
}


	/* =========================================
   TOP NAVIGATION
   ========================================= */

.topnav {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 52px;
    z-index: 1000;
    display: flex;
    align-items: center;
	justify-content: space-between;
}

.topnav .site-name,
.nav-links > a,
.dropdown .dropbtn {
    line-height: 1;
}

/* =========================================
   SITE NAME
   ========================================= */

.topnav .site-name {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1;
    display: flex;
    align-items: center;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.topnav .site-name:hover {
    background-color: #000000;
    color: #ffffff;
}

/* =========================================
   MAIN NAVIGATION CONTAINER
   ========================================= */

.nav-links {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}


/* =========================================
   MAIN NAVIGATION DIRECT LINKS
   ========================================= */

.nav-links > a {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
	letter-spacing: 0.07em;
    display: flex;
    align-items: center;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    white-space: nowrap;
}

.nav-links > a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* =========================================
   DROPDOWN ARROW
   ========================================= */

.dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    line-height: 1;
    position: relative;
    top: -1px;
}


/* =========================================
   DROPDOWN — LEVEL 1
   ========================================= */

.dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
    float: none;
}


.dropdown .dropbtn {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.07em;
    background-color: #000000;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 14px 16px;
    margin: 0;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown:hover .dropbtn {
    background-color: #000000;
    color: #ffffff;
}


/* =========================================
   FIRST DROPDOWN PANEL
   ========================================= */

.dropdown > .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #1a1a1a;
    box-shadow:
        0px 8px 16px 0px rgba(0, 0, 0, 0.2);
		
    z-index: 1100;
    padding: 0;
}

.dropdown:hover > .dropdown-content {
    display: block;
}


/* =========================================
   FIRST-LEVEL DROPDOWN ITEMS
   ========================================= */

.dropdown-content > a,
.submenu-title {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.07em;
	text-transform: uppercase;
    color: #f6f6f6;
    padding: 12px 16px;
    display: block;
    text-align: left;
    white-space: nowrap;
}

.dropdown-content > a:hover {
    background-color: #0F4C81;
    color: #ffffff;
}


/* =========================================
   SECOND-LEVEL SUBMENU
   ========================================= */

.submenu {
    position: relative;
    display: block;
}


.submenu-title {
    position: relative;
    cursor: default;
}


/* Arrow indicating second-level menu */

.submenu-title::after {
    content: "›";
    position: absolute;
    right: 16px;
    font-size: 16px;
    line-height: 1;
}


.submenu:hover > .submenu-title {
    background-color: #0F4C81;
    color: #ffffff;
}


/* =========================================
   SECOND DROPDOWN PANEL
   ========================================= */

.submenu-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 210px;
    background-color: #1a1a1a;
    box-shadow:
        0px 8px 16px 0px rgba(0, 0, 0, 0.2);

    z-index: 1200;
    padding: 0;
}


.submenu:hover > .submenu-content {
    display: block;
}


/* =========================================
   SECOND-LEVEL LINKS
   ========================================= */

.submenu-content a {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
	letter-spacing: 0.07em;
    color: #f6f6f6;
    padding: 12px 16px;
    display: block;
    text-align: left;
    white-space: nowrap;
}


.submenu-content a:hover {
    background-color: #0F4C81;
    color: #ffffff;
}

/* =========================================
   SITE BUTTONS
   ========================================= */

.more-toggle {
    display: none;
}


/* -----------------------------------------
   BUTTON BASE
   ----------------------------------------- */

.site-button,
.more-button {
    display: inline-block;

    margin-top: 12px;
    padding: 8px 14px;

    border: 1px solid currentColor;

    background: transparent;

    font-family: inherit;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: inherit;

    cursor: pointer;

    text-decoration: none !important;
}


/* -----------------------------------------
   BUTTON HOVER
   ----------------------------------------- */

.site-button:hover,
.more-button:hover {
    opacity: 0.65;

    color: inherit;
    text-decoration: none !important;
}


/* =========================================
   MORE / LESS
   ========================================= */

.more-content {
    max-height: 130px;
    overflow: hidden;
}

.more-content > p {
    margin-top: 0;
}

.more-toggle:checked ~ .more-content {
    max-height: none;
}


.more-button::after {
    content: "Read More";
}


.more-toggle:checked ~ .more-button::after {
    content: "Less";
}

/* =========================================
   MOBILE MENU BUTTON and DROPDOWN TOGGLES
   ========================================= */

.menu-toggle {
    display: none;
}

.mobile-menu-button {
    display: none;
}

.dropdown-toggle {
    display: none;
}

/* =========================================
   COOKIE CONSENT
   ========================================= */


#cookie-consent {

    position: fixed;

    left: 50%;
    bottom: 24px;

    transform: translateX(-50%);

    width: calc(100% - 40px);
    max-width: 680px;

    z-index: 2000;

    display: none;

    padding: 18px 20px;

    background-color: rgba(0, 0, 0, 0.90);

    border: 1px solid rgba(255, 255, 255, 0.22);

    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);

    font-family: "Roboto", Arial, sans-serif;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.5;

    color: #f2f2f2;

}


/* =========================================
   COOKIE CONSENT - VISIBLE STATE
   ========================================= */

#cookie-consent.cookie-consent-visible {

    display: flex;

    align-items: center;

}


/* =========================================
   COOKIE CONSENT - CONTENT
   ========================================= */

.cookie-consent-content {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.cookie-consent-text {

    max-width: 480px;

}


.cookie-consent-text p {

    margin: 0;

}


.cookie-consent-title {

    margin-bottom: 5px !important;

    font-size: 11px;

    font-weight: 400;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: #ffffff;

}


.cookie-consent-text a {

    color: #ffffff;

    text-decoration: underline;

    text-underline-offset: 2px;

}


.cookie-consent-text a:hover {

    color: #cccccc;

}


/* =========================================
   COOKIE CONSENT - ACTIONS
   ========================================= */

.cookie-consent-actions {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

}


.cookie-consent-button {

    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.65);

    background: transparent;

    color: #ffffff;

    font-family: inherit;

    font-size: 10px;

    font-weight: 400;

    line-height: 1.2;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    cursor: pointer;

}


.cookie-consent-button:hover {

    background-color: #ffffff;

    color: #000000;

}

/* =========================================
   SECTION DIVIDER
   ========================================= */

.page-divider {
    width: 70%;
    max-width: 900px;

    height: 1px;

    margin: 70px auto;

    background-color: color-mix(
        in srgb,
        currentColor 25%,
        transparent
    );
}


/* =========================================
   MOBILE NAVIGATION
   ========================================= */

@media screen and (max-width: 768px) {

    .topnav {
        height: 52px;

        min-height: 52px;

        display: block;

        overflow: visible;

        padding: 0;

        background-color: #000000;
    }
	
	/* =========================================
	   RESPONSIVE TYPOGRAPHY
	   ========================================= */

		h1,
		h2 {
			text-align: left !important;
		}

		h1 {
			font-size: clamp(2rem, 8vw, 2.7rem);
			line-height: 1.05;

			overflow-wrap: anywhere;
			word-break: normal;
			hyphens: none;
}
		h2 {
			font-size: clamp(1.5rem, 6vw, 1.8rem);
			line-height: 1.1;

			overflow-wrap: anywhere;
			word-break: normal;
			hyphens: none;
		}

    /* -------------------------------------
       MOBILE HEADER
       ------------------------------------- */

    .site-name {
        display: none !important;
    }


    .mobile-menu-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 52px;

    padding: 0 15px;

    color: #f2f2f2;

    background-color: #000000;

    cursor: pointer;

    font-family: "Roboto", Arial, sans-serif;

    user-select: none;
}


	.mobile-site-name {
    font-size: 15px;
    font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.07em;
    line-height: 1;
}


	.hamburger {
    font-size: 20px;

    line-height: 1;

    order: 2;
}


    /* -------------------------------------
       MOBILE NAVIGATION PANEL
       ------------------------------------- */

    .nav-links {
        display: none !important;;

        position: absolute;

        top: 52px;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 52px);

        overflow-y: auto;

        overflow-x: hidden;

        flex-direction: column;

        background-color: #000000;

        padding: 10px 0 20px 0;
    }


    /* -------------------------------------
       OPEN MENU
       ------------------------------------- */

    .menu-toggle:checked ~ .nav-links {
        display: flex !important;
    }


    /* -------------------------------------
       MAIN LINKS
       ------------------------------------- */

    .nav-links > a,
    .dropdown .dropbtn {

        width: 100%;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        padding: 14px 20px;

        font-size: 14px;

        text-align: left;

        color: #f2f2f2;

        background-color: #000000;

        border: none;
    }


    .nav-links > a:hover,
    .dropdown:hover .dropbtn {

        background-color: #000000;

        color: #ffffff;
    }


    /* -------------------------------------
       DROPDOWN
       ------------------------------------- */

    .dropdown {

        display: block;

        width: 100%;
    }


    .dropdown > .dropdown-content {

        display: none;

        position: static;

        width: 100%;

        min-width: 0;

        background-color: #1a1a1a;

        box-shadow: none;
    }


    /* Mobile: dropdown controlled only by checkbox */

.dropdown:hover > .dropdown-content {
    display: none !important;
}

.dropdown-toggle:not(:checked) ~ .dropdown-content {
    display: none !important;
}

.dropdown-toggle:checked ~ .dropdown-content {
    display: block !important;
}

    /* -------------------------------------
       DROPDOWN ITEMS
       ------------------------------------- */

    .dropdown-content > a,
    .submenu-title {

        width: 100%;

        padding: 12px 35px;

        font-size: 14px;

        font-variant: normal;

        text-align: left;

        color: #f6f6f6;

        background-color: #1a1a1a;
    }


    /* -------------------------------------
       SECOND LEVEL
       ------------------------------------- */

    .submenu {
        width: 100%;
    }


    .submenu-title {
        font-weight: 400;

        color: #f6f6f6;
    }


    .submenu-title::after {
        display: none;
    }


    .submenu-content {

        display: block;

        position: static;

        width: 100%;

        min-width: 0;

        background-color: #1a1a1a;

        box-shadow: none;

        padding: 0;
    }


    .submenu-content a {

        padding: 10px 50px;

        font-size: 14px;

        font-variant: normal;

        color: #f6f6f6;

        background-color: #1a1a1a;
    }


    /* -------------------------------------
       HOVER
       ------------------------------------- */

    .dropdown-content > a:hover,
    .submenu:hover > .submenu-title,
    .submenu-content a:hover {

        background-color: #0F4C81;

        color: #ffffff;
    }
	
	/* -------------------------------------
	   COOKIE CONSENT
       ------------------------------------- */
	
	#cookie-consent {

        left: 12px;
        right: 12px;
        bottom: 12px;

        transform: none;

        width: auto;
        max-width: none;

        padding: 16px;

    }


    #cookie-consent.cookie-consent-visible {

        display: block;

    }


    .cookie-consent-content {

        display: block;

    }


    .cookie-consent-text {

        max-width: none;

        margin-bottom: 14px;

    }


    .cookie-consent-actions {

        justify-content: flex-end;

    }
	
	/* =====================================
       PAGE DIVIDER
       ===================================== */
	
	    .page-divider {
        width: 80%;
        margin: 50px auto;
    }

}