@charset "utf-8";
/* Header container */
/* HEADER */
.pdf2go-header {
    font-family: 'Roboto', sans-serif;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    width: 100%;
    padding: 0px 0;
	padding-top:2px;
}

.pdf2go-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.pdf2go-logo {
	font-family: Candara, Tahoma, sans-serif;
    font-size: 28px;
	padding: 0px;
	margin:0;
    font-weight: 400;
    color: #FFF7E3;
    text-decoration: none;
}

.pdf2go-logo a {
    color: #FFF7E3;
    text-decoration: none;
}

/* MENU */
/*@supports (-webkit-touch-callout: none) {
    .pdf2go-menu {
        font-stretch: 75%;
    }
}*/
@supports (-webkit-touch-callout: none) {
    .pdf2go-menu {
        font-size: 15px;
        font-stretch: 95%;
        letter-spacing: -0.15px;
    }
}


.pdf2go-menu {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
	font-weight:400;
    list-style: none;
    display: flex;
    gap: 20px;
	position:relative;
	top:5px;
}

.pdf2go-menu > li {
    position: relative;
	left:-18px;
}

.pdf2go-menu a {
    color: #FFF7E0;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.pdf2go-menu a:hover {
    color: #FFF7E0; /*ff3a36;*/
	background: #d00; /*747068;*/
}

/* DROPDOWN (initial state) */

.pdf2go-dropdown {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.5s ease,
        transform 0.25s ease,
        visibility 0s linear 0.5s;   /* delay hiding until animation ends */
    position: absolute;
    top: 100%;
    left: -10px;/*-8px;*/
    background: #a30a00;
    list-style: none;
    padding: 0;
/*    margin-left: 0px;   <---------------------------------------- 10px */
    min-width: 240px;
    z-index: 9999;
}
.pdf2go-has-dropdown:hover .pdf2go-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;           /* show immediately */
}



.pdf2go-dropdown li a {
    display: block;
    padding: 10px 18px;         /* <-- THIS fixes the "glued to the left" issue       10px ako korigiram gore na 10px */
    font-size: 14px;
    white-space: nowrap;
    color: #FFF7E3;               /* adjust to your taste */
}

.pdf2go-dropdown li a:hover {
    background: #d00;
    color: #FFF7E3; /*ff3a36; */           /* or whatever your accent color is */
}

/* Expand hover area */
.pdf2go-menu > li {
    position: relative;
    padding-bottom: 0px;
}

/* Show dropdown */
.pdf2go-has-dropdown:hover .pdf2go-dropdown {
    display: block !important;
}

/* Align dropdown left edge with the text of "Use Cases" */
.pdf2go-has-dropdown .pdf2go-dropdown {
    left: -10px;     /* adjust this value until it aligns perfectly */
}

.pdf2go-hamburger {
    display: none;
    font-size: 26px;
    color: #FFF7E3;
    cursor: pointer;
    padding: 6px 10px;
}

@media (max-width: 1024px) {

    .pdf2go-hamburger {
        display: block;
    }

    .pdf2go-menu {
        display: none;
        flex-direction: column;
        gap: 0;
    	background: #a30a00; /* matches your header background */
        width: 100%;
        padding: 10px 0;
        position: absolute;
        top: 60px; /* adjust depending on header height */
        left: 0;
        z-index: 9999;
    }

    .pdf2go-menu ul,
    .pdf2go-menu li {
        display: block;
        white-space: normal;
    }

    .pdf2go-menu ul ul {
        display: none !important;
    }
		
    .pdf2go-menu.show {
        display: flex;
    }

    .pdf2go-menu > li {
        padding: 10px 20px;
    }

    /* Dropdown inside mobile menu */
    .pdf2go-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: none;
        padding-left: 20px;
        background: none;
    }

    .pdf2go-has-dropdown:hover .pdf2go-dropdown {
        transform: none;
    }
}
