
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gradient: linear-gradient(45deg, #745ec2, #d65db1, #ff6f91, #ff9671, #ffc75f, #f9f871);
    --gradient-reverse: linear-gradient(45deg, #f9f871, #ffc75f, #ff9671, #ff6f91, #d65db1, #745ec2);
    --gradient-2: linear-gradient(45deg, #cb5382, #bc4f5e, #cb0e40, #a03f23, #cb0e40, #bc4f5e, #cb5382);
    --gradient-3: linear-gradient(45deg, #02004b, #06008c, #7000a5, #c200b6, #e600ac, #f3009d, #f3009d, #e600ac, #c200b6, #7000a5, #06008c, #02004b);
    --gradient-4: linear-gradient(45deg, #ff1685, #b916ff, #9216ff, #ff7c27, #ffe736, #ffe736, #ff7c27, #9216ff, #b916ff, #ff1685);
    --gradient-5: linear-gradient(45deg, #ff1685, #9216ff, #ff7c27, #ffe736 #9216ff, #b916ff);
    --gradient-gray: linear-gradient(45deg, #666666, #525252, #2c2c2c, #2c2c2c, #525252, #666666);
    --gradient-gray-reverse: linear-gradient(45deg, #2c2c2c, #525252, #666666, #666666, #525252, #2c2c2c);
    --gradient-7: linear-gradient(45deg, #1f2386, #25177d, #310e66, #360a5d, #3f054d, #3f054d, #360a5d, #310e66, #25177d, #1f2386);
    --shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    --shadow-reverse: 0 0 10px 0 rgba(153, 130, 27, 0.5);
}

/* General Styles */
body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}


/* Header Styles */
.site-header {
    position: fixed;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b95454;
    background-image: var(--gradient-reverse);
    background-blend-mode: overlay, opacity 0.5;
    background-size: 300%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
    animation: bg-animation 15s infinite alternate;
    padding: 0px 25px;
    transition: 0.3s ease;
}

@keyframes bg-animation {
    0% {
        background-position: left;
    }

    100% {
        background-position: right;
    }
}

.site-header:hover {
    background-blend-mode: difference;
    transition: opacity 0.5s ease-in-out;
    transition-duration: 0.3s;
    background-color: #230930;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 50%;
    max-height: 50%;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    transition: 0.5s ease;
}

.menu li {
    list-style: none;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 40px 25px;
    font-size: 18px;
    line-height: 1;
    transition: 0.5s ease;
}

.menu li a:hover {
    box-shadow: 0 -5px 0px #fff inset,
        500px 0 0 rgba(255, 255, 255, 0.03) inset;
    padding: 35px 25px 45px 45px;

}

.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    height: 4px;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.hamburger:before {
    top: -10px;
    width: 20px;
}

.hamburger:after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    position: absolute;
    width: 30px;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger,
.toggle-menu {
    display: none;
}

.navigation input:checked~.hamburger {
    background: transparent;
}

.navigation input:checked~.hamburger:before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.navigation input:checked~.hamburger:after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}

.navigation input:checked~.menu {
    right: 0;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
    transition: ease-in-out 0.5s;
}

@media screen and (max-width: 992px) {

    .hamburger,
    .toggle-menu {
        display: block;
    }

    .site-header {
        padding: 10px 20px;
    }

    .menu {
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        color: #ddd;
        background-color: #230930;
        background-image: var(--gradient);
        background-blend-mode: overlay;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        padding-top: 65px;
    }

    .menu li {
        width: 100%;
    }

    .menu li a,
    .menu li a:hover {
        padding: 30px;
        font-size: 24px;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.01) inset;
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}

/* Content Sections */
.content-section {
    color: #777;
    background-color: white;
    text-align: center;
    padding: 30px 40px;
    text-align: justify;
}

.content-section.dark-bg {
    color: #dfdfdf;
    background-image: var(--gradient-7);
    background-blend-mode: overlay, opacity 0.5;
    background-color: #00e1ff;
}

.content-section.dark-bg.gallery-section {
    color: #ddd;
    background-color: #230930;
    background-image: var(--gradient);
    background-blend-mode: overlay;
}

/* Parallax */
.hero {
    position: relative;
    opacity: 0.95;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bgimg-1 {
    background-image: url("images/hero-img-paralax.webp");
    min-height: 85vh;
}

.bgimg-2 {
    background-image: url("images/PC-rig-bg-img.webp");
    min-height: 300px;
}

.bgimg-3 {
    background-image: url("images/selfie-img.webp");
    min-height: 250px;
}

.bgimg-4 {
    background-image: url("images/Los-angeles-bg.webp");
    min-height: 55vh;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

/* About Section */
.about-section {
    background-color: #333;
    background-image: var(--gradient-gray);
    background-blend-mode: overlay, opacity .5;
    background-size: 300%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
    color: #dddada;
    text-align: center;
    padding: 1rem 0;
}

.about-section:hover {
    background-position: right;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Button Styles */
button {
    background-color: #7700ff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    background-image: var(--gradient);
    background-size: 300%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
}

button:hover {
    background-color: #7700ff;
    background-position: right;
    color: #000;
    box-shadow: var(--shadow-reverse);
}

/* Gaming Section Layout */
.gaming-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.content-block {
    color: #FFD700;
    text-align: center;
    padding: 0 20px;
    text-align: justify;
}

.gaming-live,
.gaming-favorites {
    flex: 1;
    min-width: 280px;
    margin: 0 auto;
    padding: 5px;
}

.gaming-live iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.gaming-favorites ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.gaming-favorites li {
    margin-bottom: 10px;
}

/* Photo Gallery Section */
.gallery {
    display: flex;
    max-width: 1100px;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
    height: 100%;
}

.gallery img {
    min-width: 0;
    flex: 1 1 50px;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s;
}

.gallery img:hover {
    opacity: 1;
    flex: 1 1 300px;
}

/* Blog Section */
.blog-article {
    text-align: left;
}

.blog-article img {
    max-width: 100%;
    height: auto;
}

.blog-article h2 {
    font-size: 2.5rem;
}

.blog-article h3 {
    font-size: 1.75rem;
}

.blog-article p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.blog-post img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

#blog-feed {
    max-width: 800px;
    margin: 0 auto;
    color: #000;
    background-color: #ffffffd0;
    padding: 10px;
    border-radius: 5px;
}

.blog-post {
    border-bottom: 1px solid #ddd;
    padding: 1em 0;
}

.blog-post h3 {
    margin: 0 0 0.5em 0;
}

.blog-post a {
    color: #7700ff;
    text-decoration: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer Styles */
.site-footer {
    position: relative;
    bottom: 0;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-image: var(--gradient);
    background-blend-mode: overlay, opacity 0.5;
    background-size: 350%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
    animation: bg-animation 15s infinite alternate;
    
}

/* Social Media Icons */
.site-footer .social-media-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-wrap: wrap;
    gap: 20px;
}

ul {
    padding-inline-start: 0px;
}

.site-footer .social-media-icon li {
    list-style: none;
}

.site-footer .social-media-icon li a {
    font-size: 2em;
    color: #181818;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

.site-footer .social-media-icon li a:hover {
    transform: translateY(-10px);
    color: #fff;
}

iframe {
    position: relative;
    object-fit: aspect-ratio 16/9;
    width: 100%;
    height: 350px;
    border: none;
}

.social-icons {
    margin-top: 15px;
    font-size: 3em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}