/*
Theme Name: Azerion theme
Theme URI: https://events.azerion-dach.de/
Author: Azerion Dach
Author URI: https://www.azerion.com/
Version: 1.0
*/

/* Add your custom styles below */

/* Add your custom styles below */
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #060631;
    font-weight: 400;
    line-height: 1.5;
    font-size: 17px;
    -webkit-tap-highlight-color: #002c86;	
    overflow-x:hidden;      
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Base styles for the menu */
.menu-right {
    position: absolute;
    top: 30px; /* Adjust as needed */
    right: 100px; /* Adjust as needed */
    z-index: 1000; /* Ensure it's on top */
}

.right-menu-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right-menu-class {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.right-menu-class li {
    margin-left: 20px;
}

.right-menu-class li a {
    text-decoration: none;
    color: #fff; /* Adjust the color as needed */
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.right-menu-class li a:hover {
    color: #FF5000; /* Hover color */
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .menu-right {
        position: static;
        margin-top: 20px;
        text-align: center;
    }

    .right-menu-container {
        flex-direction: column;
        align-items: center;
    }

    .right-menu-class {
        flex-direction: column;
    }

    .right-menu-class li {
        margin: 10px 0;
    }
}

/* Mobile toggle button styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .mobile-menu-background {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #0e1233;
        position: fixed;
        top: 0;
        left: 100%;
        height: 100vh;
        padding-top: 60px; /* Adjust based on your header height */
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .mobile-menu-background.show {
        left: 0;
    }
}

/* First Section Styles */
.first-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 17, 48, 0.7);
    display: flex;
    align-items: center;
}

.logo-left { 
    position: absolute;
    top: 30px; /* Adjust as needed */
    left: 100px; /* Adjust as needed */
}

.logo-middle {
    position: absolute;
    top: 50%; /* Align to the middle vertically */
    left: 50%; /* Align to the middle horizontally */
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-middle img {
    max-width: 100%;
}

.button-middle {
    position: absolute;
    top: 90%; /* Adjust as needed */
    left: 50%; /* Align to the middle horizontally */
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-middle a {
    margin-top: 30px !important;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    padding: 10px 35px 10px 35px !important;
    background: linear-gradient(90deg, #91bdfa, #bf7ae3);
    border-radius: 50px;
    border: none;
    text-decoration: none;
    font-weight: 700;
}

/* Second Section Styles */
.second-section {
    background:linear-gradient(90deg, rgb(15, 17, 48), rgb(0, 46, 135));
    /* background: linear-gradient(90deg, #91bdfa, #bf7ae3); */
    padding: 50px 0;
    text-align: center;
}


h4 {
    display: inline-block;
    padding: 0px 5px;
    line-height: 38px;
    margin-bottom: 50px;
    font-size: 1.5rem;
    text-align: center;
    background: linear-gradient(90deg, #91bdfa, #bf7ae3);
    color: #fff;
}

.gallery-container {
    display: flex;
    justify-content: center;
}

/* Third Section Styles */
.third-section {
    background-color: #0f1130;
    color: #fff;
    padding: 50px 0;
    text-align: center;
    border-top:5px solid;
    border-image: linear-gradient(to right,#91bdfa,#bf7ae3) 1 0 0 0;
}

.third-section p {
    margin: 5px;
}

.third-section .text {
    font-weight: 700;
}

.third-section a {
    color: #fff;
}

.third-section a:hover{
    color: #FF5000 ;
}

/* Plugin photo gallery adjustment */
#bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg_load_btn{
    margin-top: 30px!important;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    padding: 10px 35px 10px 35px !important;
    border-radius: 50px;
    background: linear-gradient(90deg, #91bdfa, #bf7ae3);
    border-radius: 50px;
    border: none;
}


#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails {
    width: 1080px!important;
    display: flex!important;
    gap: 15px!important;  
}

#bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 {
    margin-top: 50px!important;
}

.bwg_slide_container {
    background-color: #0f1130;
}

.bwg_close_btn{
    color:#fff;
    opacity: 1!important;
}

div[id^=bwg_container] * {
    background-color: transparent;
}

div[id^=bwg_container] .bwg_download_gallery a {
    color: #fff;
}

.bwg_ctrl_btn_container {
    background: linear-gradient(90deg, #91bdfa, #bf7ae3);
}

.bwg_ctrl_btn{
    color: #fff!important;
}

.bwg_toggle_container {
    background: #fff!important;
    color:#91bdfa!important;
}
.bwg_toggle_btn {
    color:#91bdfa!important;
    font-size: 20px;
    opacity: 1.00;
}

#spider_popup_left-ico, #spider_popup_right-ico{
    background-color: #91bdfa!important;
    color: #fff!important;
    opacity: 1!important;
}

.bwg_filmstrip_left,.bwg_filmstrip_right {
    display: none!important;
}  

#bwg_container1_0 #bwg_container2_0 .bwg_back_0{
    cursor: pointer;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    color: #fff!important;
    font-family: "Poppins", sans-serif!important;
    font-size: 17px!important;
    padding: 10px 35px 10px 35px !important;
    background: linear-gradient(90deg, #91bdfa, #bf7ae3)!important;
    border-radius: 50px!important;
    border: none!important;
    text-decoration: none!important;
    font-weight: 700!important;
    line-height: 16px!important;
}

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-title2 {
    font-family: "Poppins", sans-serif!important;
    color: #fff!important;
}


div[id^=bwg_container] * {
    margin: 0 !important;
}

/* Responsive */

@media only screen and (max-width: 600px) {
    .first-section {
        height: 70vh;
    }
    
    .logo-left {
        left: 30px;
    }
	
    .second-section {
        padding: 2px 0;
    }
    
	h4 {
		line-height: 31px;
		margin-bottom: 0px;
		font-size: 1.3rem;
	}
	.button-middle{
		display: none;
	}
	
    .bwg-item {
        width: 100%!important;
    }

    .bwg-item img{
        width: 100%!important;
    }

    .bwg-item .bwg-item2{
        margin: 0px!important;
    }
}