/*
Theme Name: Potok
*/

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
		
		
#header {
	background-color:#f2f2f2;
    display: flex;
	position:fixed;
	width:100%;
	left:0;
	top:0;
	z-index:20;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
	padding:0 30px;
}
.logo {
	text-align:center;
}
.logo img {
	width:auto;
    max-height: 80px;
}
.header-btn {
	color: #ffffff;
    background-color: #b74905;
    border-style: none !important;
    box-shadow: 0px 2px 3px rgba(0, 11, 48, 0.25) !important;
    font-weight: 600;
    text-transform: uppercase;
    transition-duration: 0.2s;
    transition-property: background-color, color, border-color, box-shadow, opacity, transform;
    transition-timing-function: ease-in-out;
	padding:8px 30px;
	text-decoration:none;
}
.menu ul {
	display:flex;
	flex-wrap:wrap;
}
.menu li {
	list-style:none;
    padding: 0 15px;
	position:relative;
}
.menu li a {
    font-size: 18px;
    color: #01142f;
    font-weight: 300;
    text-transform: capitalize;
	text-decoration:none;
    white-space: nowrap;
}
.menu li.current-menu-item a {
    font-weight: 600;
}
.menu li a:hover {
	text-decoration:underline;
}
.menu .sub-menu {
	display:none;
}
.menu .menu-item-has-children:after {
	content:'▼';
}
@media(min-width:1100px) {
	.menu .menu-item-has-children:hover > .sub-menu {
		display:block;
		position:absolute;
		z-index:10;
		top:100%;
		left:0;
		background-color:#f2f2f2;
	}
}
.menu .sub-menu li {
	margin:10px 0;
}
.menu .sub-menu li a {
	font-size:16px;
}

.social-list {
	display:flex;
	flex-wrap:wrap;
}
.social-list li {
	list-style:none;
	margin:0 5px;
}
	
	
.t-menuburger {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
    cursor: pointer;
    z-index: 999;
}
.t-menuburger span {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    height: 3px;
    background-color: #000;
}	
.t-menuburger span:nth-child(1) {
    top: 0px;
}
.t-menuburger span:nth-child(2), .t-menuburger span:nth-child(3) {
    top: 8px;
}	
.t-menuburger span:nth-child(4) {
    top: 16px;
}
	
.t-menuburger-opened span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}
.t-menuburger-opened span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.t-menuburger-opened span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.t-menuburger-opened span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}	
	
.header-mobile {
	position:fixed;
	display:none;
	top:0;
	left:0;
	z-index:10;
	width:100%;
	background-color:#000;
	height:50px;
	padding:0 30px;
}

@media(max-width:1059px) {
	.header-mobile {
		display:flex;
		flex-wrap:wrap;
		justify-content:flex-end;
		align-items:center;
	}
	#header {  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
	}
	#header.header-open {
	   max-height: 500px; /* подбери нужную высоту */
  opacity: 1;
		top:50px;
	}
	.logo {
		width:100%;
		margin-bottom:15px;
		margin-top:15px;
	}
	.menu {
		width: 100%;
		text-align: center;
		margin-bottom:15px;
	}
	.social-list {
		width: 100%;
		justify-content: center;
		margin-bottom:15px;
	}
	.header-btn {
		margin-bottom:15px;
	}
	.menu > ul {
		display: inline-block;
	}
}
	
	
#footer {
	background-color:#f2f2f2;
	padding:50px;
}
.container {
	width:100%;
	max-width:1200px;
	margin:0 auto;
	
}
.footer-menu {
	
}
.footer-menu ul {
	display:flex;
	flex-wrap:wrap;
    justify-content: center;
}
.footer-menu li {
	list-style:none;
    padding: 0 15px;
	position:relative;
}
.footer-menu li a {
    font-size: 18px;
    color: #01142f;
    font-weight: 300;
    text-transform: capitalize;
	text-decoration:none;
    white-space: nowrap;
}
	
	
.admin-bar body {
    margin-top: 32px;
}
	
.admin-bar #header {
    top: 32px;
}
	
	
	
	
	
	
	
	
	.menu-name  {
	margin-bottom:12px;
}
.menu-name svg {
	margin-right:10px;
}
.menu-item {
	padding:10px 10px 5px;
	margin-bottom:12px;
}
.menu-item > div {
	margin-bottom:5px;
}
.menu-information {
	padding:10px;
}
	
	
	
	
	
	
	
	