:root{
    --bs-heading-color: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
}

a{
    text-decoration: none;
}

h1, h2, h3, .site-name {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700; /* Yellow accent for titles */
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Custom Colors */
.bg-dark-blue {
    background-color: #0f0f2a;
}

.bg-light-gray {
    background-color: #2a2a4a;
}

.bg-dark-gray {
    background-color: #1f1f3a;
}

.text-primary {
    color: #ffd700 !important; /* Yellow */
}

.btn-primary {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #0f0f2a;
}

.btn-primary:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #0f0f2a;
}

.btn-secondary {
    background-color: #ff8c00; /* Orange */
    border-color: #ff8c00;
    color: #0f0f2a;
}

.btn-secondary:hover {
    background-color: #e07b00;
    border-color: #e07b00;
    color: #0f0f2a;
}

.btn-warning {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #0f0f2a;
}

.btn-warning:hover {
    background-color: #e07b00;
    border-color: #e07b00;
    color: #0f0f2a;
}

.btn-outline-secondary {
    border-color: #ff8c00;
    color: #ff8c00;
}

.btn-outline-secondary:hover {
    background-color: #ff8c00;
    color: #0f0f2a;
}

.text-warning {
    color: #ffd700 !important;
}

.text-muted-custom {
    color: #b0b0b0;
}

/* Header */
.navbar {
    background-color: #0f0f2a;
    border-bottom: 1px solid #2a2a4a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
}

.nav-link {
    color: #e0e0e0 !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffd700 !important;
}

.navbar-toggler {
    border-color: #ffd700;
}

.navbar-toggler .material-symbols-outlined {
    color: #ffd700;
}

.cart-icon-btn {
    position: relative;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    text-decoration: none;
}

.cart-icon-btn .material-symbols-outlined {
    font-size: 1.5rem;
    color: #0f0f2a;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem;
    padding: 0.2em 0.5em;
}

@media (max-width: 1100px) {
    /* .navbar-collapse {
        background-color: #0f0f2a;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 1rem;
        border-top: 1px solid #2a2a4a;
        z-index: 1000;
    } */
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        padding: 0.75rem 1rem;
    }
    .cart-icon-btn {
        width: auto;
        margin-left: 0 !important;
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-section {
    background-image: url('graphics/content/gaming-hero-background.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.advantages-list li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.advantages-list .material-symbols-outlined {
    color: #ffd700;
    margin-right: 10px;
}

.call-to-action-btn {
    text-decoration: none;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
    color: #ffd700;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff8c00;
    border-radius: 5px;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

/* About Section */
#about img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Why Trust Us Section */
.trust-card {
    background-color: #1f1f3a;
    color: #e0e0e0;
    border: 1px solid #2a2a4a;
    height: 100%;
}

.trust-card .material-symbols-outlined {
    font-size: 3rem;
    color: #ffd700;
}

/* Product Cards */
.product-card {
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card .card-img-top {
    width: 100%;
    height: 250px; /* Fixed height for product images */
    object-fit: cover;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffd700;
}

.product-card .card-text {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.product-card .card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 1.5rem;
}

.add-to-cart-btn, .learn-more-btn {
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    padding: 0.75rem 1rem;
    flex-grow: 1;
    margin: 0 5px;
}

.add-to-cart-btn:first-child {
    margin-left: 0;
}

.learn-more-btn:last-child {
    margin-right: 0;
}

/* Creators Section */
.creator-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #ffd700;
}

/* Delivery & Payment Section */
#delivery-payment {
    background-image: url('graphics/content/delivery-payment-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

#delivery-payment .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#delivery-payment .container {
    z-index: 2;
}

/* Payment Methods Section */
.payment-icon-box {
    background-color: #1f1f3a;
    border: 1px solid #2a2a4a;
    height: 120px;
}

.payment-icon {
    max-height: 60px;
    width: auto;
    filter: brightness(1.2);
}

/* Warranty & Returns Section */
#warranty-returns {
    background-image: url('graphics/content/warranty-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

#warranty-returns .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#warranty-returns .container {
    z-index: 2;
}

/* Contact Section */
.contact-list li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list .material-symbols-outlined {
    color: #ffd700;
    margin-right: 10px;
}

.contact-list .contact-info {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-list .contact-info:hover {
    color: #ffd700;
}

.email-break-all {
    word-break: break-all;
}

/* Footer */
footer {
    background-color: #0f0f2a;
    border-top: 1px solid #2a2a4a;
    color: #b0b0b0;
}

.footer-links .list-inline-item a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links .list-inline-item a:hover {
    color: #ffd700;
}

.logo-img-footer {
    height: 30px;
    width: auto;
}

.site-name-footer {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
}

/* Modals */
.modal-content {
    background-color: #1f1f3a;
    color: #e0e0e0;
}

.modal-title {
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
}

.btn-close-white {
    filter: invert(1);
}

.form-control, .form-select {
    background-color: #2a2a4a !important;
    border-color: #fff466 !important;
    color: #e0e0e0 !important;
}

.form-control::placeholder {
    color: #b0b0b0 !important;
}

.form-check-label {
    color: #e0e0e0;
}

.form-check-input:checked {
    background-color: #ffd700;
    border-color: #ffd700;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2a4a;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.25rem;
    margin-right: 1rem;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #ffd700;
}

.cart-item-price {
    color: #ff8c00;
}

.cart-item-subtotal {
    font-weight: 700;
    color: #ffd700;
}

.cart-item-quantity {
    width: 70px;
    margin: 0 1rem;
}

.cart-item-remove-btn {
    color: #dc3545;
    border: none;
    background: none;
    padding: 0;
    font-size: 1.5rem;
}

.cart-item-remove-btn:hover {
    color: #c82333;
}

#cart-total {
    color: #ffd700;
    font-size: 1.8rem;
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .site-name, .site-name-footer {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .site-name, .site-name-footer {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .site-name, .site-name-footer {
        font-size: 1.25rem !important;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 1.4rem;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
    .footer-links .list-inline-item {
        display: block;
        margin-bottom: 5px;
    }
    .add-to-cart-btn, .learn-more-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    .cart-item {
        flex-wrap: wrap;
    }
    .cart-item-details {
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
    }
    .cart-item-image {
        margin-bottom: 0.5rem;
    }
    .cart-item-quantity {
        margin: 0;
    }
    .cart-item-remove-btn {
        margin-left: auto;
    }
}/* Parent container styling */
.privacyNestZone {
    padding: 24px; /* Padding on all sides for the content zone */
    /* Add max-width and margin: auto if you want to center the content on wider screens */
    /* max-width: 960px; */
    /* margin: 0 auto; */
}

/* Heading styles */
.privacyNestZone h1 {
    font-size: 28px; /* Moderate size for main heading */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Tighter line spacing for headings */
    margin-top: 32px; /* Space above the heading */
    margin-bottom: 16px; /* Space below the heading */
    color: #fff; /* Default dark text color */
}

.privacyNestZone h2 {
    font-size: 24px; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #fff;
}

.privacyNestZone h3 {
    font-size: 20px; /* Standard sub-heading size */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.privacyNestZone h4 {
    font-size: 18px; /* Smaller sub-heading */
    font-weight: 500; /* Medium font weight */
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.privacyNestZone h5 {
    font-size: 16px; /* Similar to body text, but with heading semantics */
    font-weight: 500;
    line-height: 1.5;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #fff;
}

/* Paragraph styling */
.privacyNestZone p {
    font-size: 16px; /* Standard body text size */
    line-height: 1.6; /* Good readability for paragraphs */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #fff; /* Slightly lighter than headings for body text */
}

/* Unordered list styling */
.privacyNestZone ul {
    list-style-type: disc; /* Default bullet style */
    padding-left: 24px; /* Indent for bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    color: #fff;
}

/* List item styling */
.privacyNestZone li {
    font-size: 16px; /* Consistent with paragraph text */
    line-height: 1.6; /* Consistent with paragraphs for readability */
    margin-bottom: 0.5em; /* Space between list items */
}
