/*
 Theme Name: melb
 Theme URI:
 Author: 
 Author URI:
 Description:
 Version: 1.0
*/

/* DEFAULT */

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #111;
    color: #fff;
}

*, h1, h2, h3, h4, h4, p {
    margin: 0;
    padding: 0;
}

a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.content ol, .content ul {
	margin-top: 20px;
	padding-left: 15px;
}

/* DEFAULT */


/* HEADER */

header {
    background: #131313;
}

.header-content {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo img {
    width: 140px;
    height: 27px;
}

nav ul {
    display: flex;
    gap: 20px;
    font-size: 16px;
}

nav ul li {
    list-style: none;
}

.burger {
    display: none;
}

.header-right-mob, .mobile-toggle {
    display: none;
}

.fixed-button-area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: #131313;
    z-index: 999;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

.fixed-button-area.visible {
    transform: translateY(0);
}

.fixed-button-area.hidden {
    transform: translateY(100%);
}

.fixed-button-area a {
    background: #ffbc00;
    color: #111;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 22px;
}

.fixed-button-area-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.fixed-button-area-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fixed-button-area-text b {
    padding-bottom: 6px;
    border-bottom: 1px solid #ffbc00;
    width: fit-content;
    font-size: 20px;
}

.fixed-button-area-text span {
    padding-top: 5px;
}

/* HEADER */

/* FOOTER */

.footer-content {
    background: #131313;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

.payments-area {
    display: flex;
    gap: 20px;
}

.payments-area img {
    height: 35px;
}

.footer-icons-area {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer-icons-block {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer-icons-area img {
    filter: invert(1);
    width: 32px;
    height: 32px;
}

.footer-icons-area span {
    font-size: 12px;
}


/* FOOTER */

@media (max-width: 1240px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {

    .container {
        max-width: 100%;
        padding: 20px;
    }

    /* HEADER */

    .header-content {
        padding: 10px 0;
    }
    
    .header-right-mob {
        display: flex;
    }

    .navigation {
        display: none;
    }

    .burger {
        position: relative;
        width: 40px;
        height: 30px;
        background: transparent;
        display: block;
        transform: scale(0.7);
        transform-origin: right center;
    }
      
    .burger input {
        display: none;
     }
      
    .burger span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
      
    .burger span:nth-of-type(1) {
        top: 0px;
        transform-origin: left center;
    }
      
    .burger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
        transform-origin: left center;
    }
      
    .burger span:nth-of-type(3) {
        top: 100%;
        transform-origin: left center;
        transform: translateY(-100%);
    }
      
    .burger input:checked ~ span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 0px;
        left: 5px;
    }
      
    .burger input:checked ~ span:nth-of-type(2) {
        width: 0%;
        opacity: 0;
    }
      
    .burger input:checked ~ span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
        left: 5px;
    }

    .mobile-toggle {
        display: none;
        position: absolute;
        left: 0;
        background: #131313;
        width: 100%;
        top: 69px;
        padding: 40px 20px 20px 20px;
        z-index: 10;
        box-sizing: border-box;
    }

    .mobile-toggle.active {
        display: block;
    }

    .mobile-toggle nav ul {
        flex-direction: column;
        font-size: 18px;
        gap: 22px;
    }
    
    .fixed-button-area {
        padding: 0;
    }
    
    /* HEADER */
    
    /* FOOTER */
    
    .footer-bottom {
        padding: 0;
    }
    
    .payments-area {
        display: flex;
        gap: 10px;
    }

    .payments-area img {
        height: 25px;
    }
    
    /* FOOTER */
    
}

@media (max-width: 767px) {

    /* HEADER */

    .logo img {
        width: 120px;
        height: 23px;
    }

    .burger {
        transform: scale(0.6);
    }

    .mobile-toggle {
        padding: 30px 20px 20px 20px;
    }

    .mobile-toggle nav ul {
        font-size: 16px;
        gap: 22px;
    }
    
    .fixed-button-area-content {
        gap: 10px;
    }
    
    .fixed-button-area-text b {
		font-size: 14px
	}
	.fixed-button-area-text span {
		font-size: 10px;
	}

    /* HEADER */
    
     /* FOOTER */
    
    .footer-bottom {
        padding: 0;
        flex-direction: column;
        gap: 20px;
    }
    
    .payments-area {
        width: 100%;
        order: 1;
        gap: 0;
        justify-content: space-between;
    }
    
    .payments-area img {
        height: 25px;
    }
    
    .copyright-area {
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .footer-icons-area {
        width: 100%;
        order: 3;
    }
    
    .footer-icons-block {
        justify-content: center;
    }
    
    .footer-icons-area span {
        text-align: center;
    }

    
    
    /* FOOTER */
}