@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --main-color:#be4db9;
    --black:#13131a;
    --bg:#010103;
    --border:.1rem solid rgba(255,255,255,.3);
}

*{
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background-color: #6a0dad;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding:2rem 7%;
}

.heading{
    text-align: center;
    color:#fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color:var(--main-color);
    text-transform: uppercase;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button/link */
.dropbtn {
    padding: 0 12px;
    display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #363535;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #5f5b5f;}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#fff;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover{
    letter-spacing: .2rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black; /* Remove any background color */
    padding: 10px 20px;
}

.header .logo img{
    height: 6rem;
}

.item-status {
    margin-bottom: 30px; /* Space between each set of boxes */
}

.rounded-box {
    display: flex; /* Apply Flexbox to the large box */
    gap: 20px; /* Space between the small boxes */
    flex-wrap: wrap; /* Wrap the boxes if there's not enough space */
    background-color: #000;
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #332e31; /* Pink outline */
    width: 1300px; /* Full width of the container */
    height: 700px; /* Adjust height as needed */
}

.rounded-box2 {
    display: flex; /* Apply Flexbox to the small box */
    align-items: center; /* Center the content vertically */
    background-color: #000;
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #332e31; /* Pink outline */
    width: 600px; /* Full width of the container */
    height: 200px; /* Adjust height as needed */
}

.rounded-box3 {
    
    display: flex; /* Apply Flexbox to the small box */
    align-items: center; /* Center the content vertically */
    background-color: #000;
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #332e31; /* Pink outline */
    width: 600px; /* Full width of the container */
    height: 200px; /* Adjust height as needed */
    margin-top: -200px;
}


.box-content {
    display: flex; /* Apply Flexbox to the content container */
    align-items: center; /* Center the content vertically */
    gap: 20px; /* Space between the image and the info */
}

.left-freeimage1 {
    margin-left: -10px;
    border: 2px solid #37a02d;
    width: 150px; /* Adjust the size of the image */
    height: 180px; /* Ensure the height matches the width for a circle */
    border-radius: 15px; /* Make the image rounded */
    object-fit: cover; /* Ensure the image covers the area */
}

.left-image1 {
    margin-left: -10px;
    border: 2px solid #2d76a0;
    width: 150px; /* Adjust the size of the image */
    height: 180px; /* Ensure the height matches the width for a circle */
    border-radius: 15px; /* Make the image rounded */
    object-fit: cover; /* Ensure the image covers the area */
}
.left-image2 {
    margin-left: -10px;
    border: 2px solid #fd4aa9;
    width: 150px; /* Adjust the size of the image */
    height: 180px; /* Ensure the height matches the width for a circle */
    border-radius: 15px; /* Make the image rounded */
    object-fit: cover; /* Ensure the image covers the area */
}
.info {
    flex: 1; /* Take up the remaining space */
    color: #fff; /* Text color */
}

@font-face {
    font-family: 'Room-Black';
    src: local('Room Black'), local('Room-Black'),
        url('Room-Black.woff2') format('woff2'),
        url('Room-Black.woff') format('woff'),
        url('Room-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-buttons {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.product-button {
    flex: 1;
    margin: 10px;
    text-align: center;
}

.arrows {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.arrow-button {
    color: #8b458b;
    background-color: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    margin: 0 20px;
}

.arrow-button:hover {
    color: #e055e0;
}

.title {
    text-align: center;
    margin-bottom: 20px; /* Adjust margin as needed */
}

.big-title {
    font-size: 70px; /* Increase this value to make the text bigger */
    font-weight: bold;
}

.big-status {
    font-size: 35px; /* Increase this value to make the text bigger */
    font-weight: bold;
}

.big-status .white-text {
    color: #ffffff;
}

.big-status .blue-text {
    color: #1d6f9e;
}

.big-status .green-text {
    color: #37a02d;
}

.big-status .red-text {
    color: #9e261d;
}

.big-status .white-text {
    color: #ffffff;
}

.blogs .white-text {
    color: #ffffff;
}

.big-status .blue-text {
    color: #1d6f9e;
}

.big-status .red-text {
    color: #9e261d;
}

.detected-text {
    color: #f81a0a;
}

.undetected-text {
    color: #17b358;
}

.big-title .purple-text {
    color: #fd4aa9;
}

.navbar {
    flex: 1; /* Allows navbar to take up remaining space */
    display: flex;
    justify-content: center; /* Centers navbar items horizontally */
}

.navbar a {
    text-decoration: none;
    color: #ffffff; /* Link color */
    font-weight: bold;
    padding: 15px 20px; /* Adjust padding for bigger buttons */
    margin: 0 10px; /* Adjust margin as needed */
    font-size: 16px; /* Adjust font size as needed */
    
}

.discord-button {
    text-decoration: none;
    color: #ffffff; /* Text color */
    background-color: #6a0dad; /* Discord button background color */
    padding: 15px 20px; /* Adjust padding for button size */
    font-weight: bold;
    border-radius: 20px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.logo {
    margin-left: 270px; /* Adjust the left margin as needed */
}

.navbar a:hover {
    color: #58c7cc; /* Hover color */
}

.header .icons div {
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover {
    color: var(--main-color);
}

#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top:115%; right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color:var(--black);
    padding:1rem;
    text-transform: none;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color:var(--black);
}

.header .search-form label:hover{
    color:var(--main-color);
}

.header .cart-items-container{
    position: absolute;
    top:100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #fff;
    padding:0 1.5rem;
}

.header .cart-items-container.active{
    right: 0;
}

.header .cart-items-container .cart-item{
    position: relative;
    margin:2rem 0;
    display: flex;
    align-items: center;
    gap:1.5rem;
}

.header .cart-items-container .cart-item .fa-times{
    position: absolute;
    top:1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.header .cart-items-container .cart-item .fa-times:hover{
    color:var(--main-color);
}

.header .cart-items-container .cart-item img{
    height: 7rem;
}

.header .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color:var(--black);
    padding-bottom: .5rem;
}

.header .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color:var(--main-color);
}

.header .cart-items-container .btn{
    width: 100%;
    text-align: center;
}

.home {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url(../images/360_F_336009887_yI4fLOqWbm8rNLCCIgmCuR3XY1caADI3y.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    /* Darken the background image */
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity (last value) to darken/lighten */
}

/* Additional styles */
.home h3.heading {
    font-size: 2em;
    color: #fff; /* Text color */
    text-align: center;
    z-index: 1; /* Ensure text is above the background */
}

.home .content{
    max-width: 60rem;
}

.home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;
}

.home .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}

.about .row{
    display: flex;
    align-items: center;
    background:var(--black);
    flex-wrap: wrap;
}

.about .row .image{
    flex:1 1 45rem;
}

.about .row .image img{
    width: 100%;
}
.about .row .content{
    flex:1 1 45rem;
    padding:2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:#fff;
}

.about .row .content p{
    font-size: 1.6rem;
    color:#ccc;
    padding:1rem 0;
    line-height: 1.8;
}

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.menu .box-container .box{
    padding:5rem;
    text-align: center;
    border:var(--border);    
}

.menu .box-container .box img{
    height: 10rem;
}

.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding:1rem 0;
}

.menu .box-container .box .price{
    color: #fff;
    font-size: 2.5rem;
    padding:.5rem 0;
}

.menu .box-container .box .price span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover{
    background:#fff;
}

.menu .box-container .box:hover > *{
    color:var(--black);
}

.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.products .box-container .box{
    text-align: center;
    border:var(--border);
    padding: 2rem;
}

.products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border:var(--border);
    color:#fff;
    margin:.3rem;
}

.products .box-container .box .icons a:hover{
    background:var(--main-color);
}

.products .box-container .box .image{
    padding: 2.5rem 0;
}

.products .box-container .box .image img{
    height: 25rem;
}

.products .box-container .box .content h3{
    color:#fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .stars{
    padding: 1.5rem;
}

.products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price{
    color:#fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.review .box-container .box{
    border:var(--border);
    text-align: center;
    padding:3rem 2rem;
}

.review .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color:#ccc;
    padding:2rem 0;
}

.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .box-container .box h3{
    padding:1rem 0;
    font-size: 2rem;
    color:#fff;
}

.review .box-container .box .stars i{
    font-size: 1.5rem;
    color:var(--main-color);
}

.contact .row{
    display: flex;
    background:var(--black);
    flex-wrap: wrap;
    gap:1rem;
}

.contact .row .map{
    flex:1 1 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form{
    flex:1 1 45rem;
    padding:5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color:#fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background:var(--bg);
    border:var(--border);
}

.contact .row form .inputBox span{
    color:#fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding:2rem;
    font-size: 1.7rem;
    color:#fff;
    text-transform: none;
    background:none;
}

.blogs .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box {
    border: none; /* Remove border */
    border-radius: 20px; /* Rounded corners */
    overflow: hidden; /* Ensure content doesn't overflow rounded corners */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for depth */
}

.blogs .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.blogs .box-container .box .image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease; /* Added transition for image scaling on hover */
}

.blogs .box-container .box:hover .image img {
    transform: scale(1.2);
}

.blogs .box-container .box .content {
    padding: 2rem;
}

.blogs .box-container .box .content .title {
    font-size: 2.5rem;
    line-height: 1.5;
    color: #fff;
}

.blogs .box-container .box .content .title:hover {
    color: var(--main-color); /* Adjust color on hover */
}

.blogs .box-container .box .content span {
    color: var(--main-color); /* Adjust color */
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    padding: 1rem 0;
}

/* CSS */
.review .box {
    background-color: #000; /* Background color for the boxes */
    padding: 20px; /* Padding inside the boxes */
    border-radius: 10px; /* Rounded corners */
    margin-bottom: 20px; /* Space between boxes */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Box shadow for a subtle effect */
}

#footer {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    max-width: 150px; /* Adjust logo size */
}

.footer-buttons {
    margin-top: 10px; /* Adjust spacing between buttons */
}

.footer-link {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    font-weight: bold;
}

.footer-link:hover {
    color: #58c7cc; /* Hover color */
}

.products {
    background-color: black; /* Set background color */
    padding: 50px 0; /* Add padding for spacing */
    text-align: center; /* Center align content */
}

.product-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adjust spacing between buttons */
}

.product-button {
    position: relative; /* Position relative for absolute positioning of price box */
    overflow: hidden;
    border-radius: 15px; /* Rounded corners */
    transition: transform 0.2s ease;
}

.product-button img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px; /* Rounded corners for image */
}

.product-button:hover {
    transform: scale(1.05); /* Grow on hover */
}

.price-box {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5e285e;
    color: white;
    padding: 10px 20px; /* Increased padding */
    border-radius: 10px;
    font-size: 2rem; /* Adjusted font size */
}

.about {
    background: url(../images/360_F_336009887_yI4fLOqWbm8rNLCCIgmCuR3XY1caADIy2.jpg) no-repeat;
    padding: 4rem 0; /* Adjust padding as needed */
    background-color: black; /* Set background color to black */
    text-align: center; /* Center align content */
    color: white; /* Set text color to white */
}

.row {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center align items horizontally */
}

.big-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.white-text {
    color: white; /* White text color */
}

.purple-text {
    color: rgb(180, 17, 180); /* Purple text color */
}

.images {
    display: flex;
    justify-content: center; /* Center align items horizontally */
    margin-top: 2rem; /* Adjust margin as needed */
}

.image {
    margin: 0 1rem; /* Adjust horizontal spacing between images */
    flex: 1 1 auto; /* Allow images to grow */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
}

.image img {
    max-width: 100%; /* Ensure image does not exceed container width */
    max-height: 100%; /* Ensure image does not exceed container height */
    width: auto; /* Allow image to scale based on its natural size */
    height: auto; /* Ensure image retains its aspect ratio */
    display: block; /* Remove any default inline spacing */
    margin: 0 auto; /* Center the image horizontally */
    border: none; /* Remove any default border */
}
.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heading {
    font-size: 2.5em; /* Increased font size */
    line-height: 1.2;
    color: inherit;
    margin: 0;
    text-align: left;
}

.heading .purple-text {
    color: #58c7cc;
}

.description {
    margin-top: -40px; /* Adjusted margin to keep it close to the heading */
    font-size: 1.5em; /* Increased font size */
}

.description p {
    margin: 0;
}

.buttons {
    display: flex;
    gap: 10px; /* Adjust spacing between buttons */
    margin-top: 20px; /* Adjust spacing as needed */
}

.buttons a {
    text-decoration: none;
    padding: 10px 20px; /* Adjusted padding */
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.5em; /* Increased font size */
    line-height: 1.2; /* Adjust line height */
    display: flex;
    align-items: center;
    justify-content: center;
}


.purple-button {
    background-color: #5e285e;
}

.grey-button {
    background-color: #ccc;
}

.button:hover {
    background-color: #58c7cc;
}

.purple-button {
    background-color: #b635b6; /* Purple color */
    color: #ffffff; /* White text */
    border: none; /* Remove default border */
    border-radius: 12px; /* Rounded edges */
    padding: 10px 20px; /* Padding for button size */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline from links */
    display: inline-block; /* Inline block for proper spacing */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth background color transition */
  }
  
  .purple-button:hover {
    background-color: #58c7cc; /* Darker purple on hover */
    color: #000000;
  }

  .grey-button {
    background-color: #5f5d63; /* Grey color */
    color: #ffffff; /* White text */
    border: none; /* Remove default border */
    border-radius: 12px; /* Rounded edges */
    padding: 10px 20px; /* Padding for button size */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline from links */
    display: inline-block; /* Inline block for proper spacing */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth background color transition */
  }
  
  .grey-button:hover {
    background-color: #2d2b30; /*Darker Grey on hover */
  }

  .button:last-child {
    margin-right: 0; /* Remove margin for the last button */
  }










/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .navbar {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .navbar a {
        text-decoration: none;
        color: #333333; /* Link color */
        font-weight: bold;
        padding: 10px 15px; /* Adjust padding as needed */
        margin: 0 5px; /* Adjust margin as needed */
    }
    
    .navbar a:hover {
        color: #58c7cc; /* Hover color */
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}