/* Base styles */
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: none;
    background-color: blueviolet;
    overflow-x: hidden; /* Prevents horizontal scrolling */

}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 300;
    font-size: 70px;
    -webkit-text-stroke: 1px #00ffcc; /* Outline */
    text-shadow: 0 0 10px #00ffcc; /* Glow effect */
}

h2 {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-text-stroke: 1px #00ffcc; /* Outline */
    text-shadow: 0 0 10px #00ffcc; /* Glow effect */
}

header {
    background-color: black;
    margin: 0;
    padding: 30px;
}

a {
    text-decoration: none;
    color: blueviolet;
    -webkit-text-stroke: 1px #00ffcc; /* Outline */
    text-shadow: 0 0 10px #00ffcc; /* Glow effect */
}

.nav a {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    text-decoration: none;
    padding: 20px;
}

hr {
    border: none;
    height: 4px;
    background-color: #00ffcc;
    box-shadow: 0px 0px 10px #00ffcc;
  }

hr {
    border: none;
    height: 4px;
    background-color: #00ffcc;
    box-shadow: 0px 0px 10px #00ffcc;
    width: 80%; /* Adjust the width as needed */
    margin: 20px auto; /* Centers the line and adds space above and below */
    border-radius: 2px; /* Optional: Makes the edges rounded */
  }

.center-island {
    width: 80%;
    margin: 20px auto;
    padding: 20px; 
    background-color: #ffffff;
    border: 2px solid #00ffcc;
    box-shadow: 0px 0px 10px #00ffcc;
    border-radius: 8px;
  }

.logo {
    height: 300px;
    max-width: 100%;
    width: auto;
    margin-right: 20px;
}

input {
    width:300px;
    height:40px;
    font-size:16px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #00ffcc;
    border-radius: 5px;
}

.shop_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    place-items: center;
}

.product {
    background-color: #ffffff;
    padding: 20px;
    border:none;
    box-shadow: none;
    border-radius: none;
}

.product p {
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
  }

.product h3 {
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
  }

.product button {
    background-color: blueviolet;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }

.product button:hover {
    background-color: darkviolet;
  }

/* Mobile Optimization */
@media (max-width: 700px) {
    h1 {
        font-size: 40px;
        text-align: center;
    }

    h2 {
        font-size: 24px;
        text-align: center;
    }

    .container {
        padding: 10px;
    }

    .nav a {
        font-size: 24px;
        padding: 15px;
    }

    .center-island {
        width: 75%;
        padding: 15px;
    }

    hr {
        width: 90%;
        margin: 10px auto;
    }

    body {
        background-color: darkviolet;
    }

    .logo {
        height: 200px;  /* Adjust height for smaller screens */
    }

    input {
        width: 75%;
        height: 100px;
        font-size:16px;
        padding: 15px;
        margin: 15px 0;
        border: 1px solid #00ffcc;
        border-radius: 5px;
    }

    .shop_grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet and Mobile Friendly Design */
@media (max-width: 430px) {
    h1 {
        font-size: 30px;
        text-align: center;
    }

    h2 {
        font-size: 20px;
        text-align: center;
    }

    .nav a {
        font-size: 20px;
        padding: 10px;
    }

    .center-island {
        width: 75%;
        padding: 10px;
    }

    hr {
        width: 85%;
        margin: 5px auto;
    }

    body {
        background-color: indigo;
    }

    .logo {
        height: 150px;  /* Adjust height further for mobile */
    }

    input {
        width: 75%;
        height: 100%;
        font-size:16px;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #00ffcc;
        border-radius: 5px;
    }

    .shop_grid {
        grid-template-columns: 1fr;
    }
}