



/* ===== General Page Styling ===== */
/* this file's comments start with /* and end with */



body {
    
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
     background-image: url("background.png");
    
}

 

/* ===== Top Navigation Bar Styling===== */

.top-nav i {
    margin-right: 8px;
    color: #4A6CF7; /* Accent blue */
    font-size: 1.1rem;
}

.top-nav {
   
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    padding: 12px 20px;
}

.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.top-nav a {
    text-decoration: none;
    font-size: 1rem;
    color: #1C2A3A; /* Scholarly navy */
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-nav a:hover {
    color: #4A6CF7; /* Accent blue */
}



/* ===== Header Styling ===== */


header {


    /* ===== Logo Styling ===== */

.logo {
    width: 120px;        /* Adjust size */
    height: 120px;
    object-fit: cover;
    display: block;      /* Makes centering easier */
    margin: 0 auto 20px; /* Center + space below */
    border: 1px solid #ddd;
    border-radius: 50%;
    margin: 0 auto 20px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.15));

   .logo {
    height: 50px;
    width: auto;
    cursor: pointer;
}
}
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-bottom: 1px solid #ddd;
}


header h1 {
    margin: 0;
    font-size: 2.2rem;
}


header p {
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
}



/* Product section */



#products {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.product-section {
    background-color: white;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-section i {
    margin-right: 10px;
    color: #444;
}

.product-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.product-link:hover {
    background-color: #555;
}

.page-header {
    background-color: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header i {
    margin-right: 10px;
    color: #444;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}