*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

html {
    scroll-behavior: smooth;
}

.michroma-regular {
    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

.questrial-regular {
    font-family: "Questrial", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  

body{
    background-image:linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.05)),url(images/Main_LPL_Orange\ whole.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner{
    width: 100%;
    height: 100vh;
    z-index: 100;
}

header {
    width: 100%; 
    height: 70px;
    margin: auto;
    padding: 35px 0; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.8s ease-in-out, padding 0.8s ease-in-out; /* Add transition for background and padding */
}

.logo{
    width: 120px;
    cursor: pointer;
    margin-left: 80px;
}

.logo-center {
    max-width: 100%;
    height: auto;
    width: 400px; 
    margin-top: 80px;
}

header ul{
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
}

header ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

header ul li a{
    position: relative;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

header ul li::after{
    content:'';
    height: 3px;
    width:0;
    background:#ffffff;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

header ul li:hover::after{
    width: 100%;
}

header.sticky {
    position: fixed;
    height: 70px;
    background-color: #ff5500; 
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
    z-index: 1000;
}

.content{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.content h2{
    font-family: 'Michroma', sans-serif;
    font-size: 50px;
    margin-top: 80px;
    text-transform: capitalize;
}

.content p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}

.content p, .textbox p {
    font-size: 22px; 
    line-height: 2.0; 
    margin: 20px 0; 
}

#text-img-1st {
    float: right;
    width: 25%;
    margin: 0 0 20px 20px; 
}

#text-img-2nd {
    float: left;
    width: 22%;
    margin: 0 20px 20px 0; 
    border: 2px solid #fff;
}

.textbox{
    position: relative;
    width: 70%;
    left: 15%;
    padding-bottom: 5%;
}

.textbox h1, h2,p, li{
    color: #fff;
    font-size: 22px;
}

.list {
    display: flex;
    justify-content: center;  
    align-items: center;      
    flex-direction: column;   
    width: 100%;              
    margin: 20px 0;           
    padding: 20px;
    background-color: #FF5500;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1); 
    margin: 20px auto; 
    max-width: 600px; 
    text-align: center; 
    margin-bottom: 80px;
}

@media (max-width: 600px) {
    .list {
        width: 90%; 
    }
}

@media (max-width: 480px) {
    .list {
        width: 95%; 
    }
}

.list ul {       
    padding: 0;               
    margin: 0;                
}

.list li {
    list-style: none;
    font-size: 20px;          
    line-height: 2.0;         
    margin: 20px 0;           
}

.list h2{
    color: white;
    font-weight: bold;
}

.info-box{
    position: relative;
    width: 70%;
    left: 15%;
    padding-top: 20%;
    padding-bottom: 20%;
    font-size: 22px; 
    line-height: 2.0; 
    margin: 20px 0; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.info-box h1, h2, p, li{
    color: #fff;
}

.info-box h1{
    font-size: 33px;
}


.page-img {
    display: flex;
    justify-content: center;
    gap: 10px; 
    margin-top: 20px; 
}

.page-img img {
    width: 50%; 
    height: auto; 
    cursor: pointer; 
    transition: transform 0.3s ease-in-out; 
    border-radius: 0.5%;
}

.flex-img {
    display: flex;               
    justify-content: center;     
    gap: 10px;                   
    margin-top: 20px;            
}

.flex-img img {
    width: 50%;                  
    height: auto;                
    transition: transform 0.3s ease-in-out; 
    cursor: pointer;
}

#dalek{
    width: 300px;
}

#paint{
    width: 300px;
}


.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8); 
    transition: opacity 0.3s ease-in-out;
}

.modal-content {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 90vw; 
    max-height: 90vh;
    transition: transform 0.3s ease-in-out;
    padding: calc((100vh - 90%) / 2) 0;
}


.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.text-img{
    float: right;
    width: 40%;
}

.hamburger{
    position: absolute;
    display: block;
    top: 50px; 
    right: 10px;
    width: 35px;
    height: 35px;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    z-index: 2000;
}

.hamburger .bar, .hamburger:after, .hamburger:before {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background-color: #FFF;
	margin: 6px 0px;
	transition: 0.4s;
}

.hamburger.is-active:before {
	transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger.is-active:after {
	transform: rotate(45deg) translate(-9px, -8px);
}

.hamburger.is-active .bar {
	opacity: 0;
}


.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 200px; 
    min-height: 100vh;
    display: block;
    z-index: 98;
    background-color: #FF7733;
    padding-top: 230px; 
    transition: right 0.4s; 
}


.mobile-nav.is-active {
    right: 0; 
}


.mobile-nav a {
    display: block;
    width: 70px; 
    height: 70px; 
    line-height: 70px; 
    border-radius: 50%; 
    text-align: center; 
    margin: 20px auto; 
    background-color: #FF5500;
    color: #fff;
    text-decoration: none;
}

.mobile-nav a:hover{
    background-color: #ce4500;
}

.gallery-container {
    position: relative;
    width: 80%;
    margin: auto;
    text-align: center;
}

.gallery-main {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-main-img {
    width: 100%; 
    height: auto; 
    max-height: 400px; 
    object-fit: contain; 
}

#caption {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 10px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 5px;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.thumbnail {
    flex: none;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.5; 
}

.thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.thumbnail.active, .thumbnail:hover {
    opacity: 1; 
    transform: scale(1.1);
}

.fade-out-left, .fade-out-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.fade-out-right {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px; 
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s ease;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

#lmao{
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 10px 0;
    margin-bottom: 40px;
}

.icon {
    width: 30px;
    margin: 0 10px;
}

footer {
    background-color: #FF5500;
    color: #fff;
    padding: 1em 0;
    text-align: center;
    width:100%;
    border-radius: 2%;
}

.footer-content p {
    margin: 0.5em 0;
}


@media (max-width: 800px){
    #text-img-1st, #text-img-2nd {
        float: none;
        display: block;
        margin: 20px auto; 
        width: 350px; 
    }
}

@media (max-width: 768px){
    header ul{
        display: none;
    }

    .logo-center{
        width: 300px;
    }
    
}

@media (max-width: 546px){
    .logo{
        display: none;
    }

    #underLogoText{
        font-size: 45px;
    }
    
}

@media (min-width: 768px) {
	.mobile-nav {
		display: none;
	}

	.hamburger {
		display: none;
	}

}   

#firstTextbox {
    margin-bottom: 0;
    padding-bottom: 10px;
}

