/* Core Configurations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Nav Bar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #161616;
    border-bottom: 2px solid #2ecc71;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #2ecc71;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2ecc71;
}

/* Structural Buttons */
.btn-primary {
    background-color: #2ecc71;
    color: #0f0f0f !important;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #27ae60;
}

.btn-secondary {
    background-color: transparent;
    color: #2ecc71;
    padding: 12px 24px;
    border: 2px solid #2ecc71;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #2ecc71;
    color: #0f0f0f;
}

/* Landing Framework Layout */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.95)), url('https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?q=80&w=1920') no-repeat center center/cover;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

/* Dynamic Item Store Modules */
.store-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.store-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.store-item {
    background-color: #161616;
    border: 1px solid #262626;
    border-radius: 6px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.item-img-placeholder {
    font-size: 4rem;
    margin-bottom: 20px;
}

.store-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.store-item .price {
    font-size: 1.3rem;
    color: #2ecc71;
    font-weight: 700;
    margin-bottom: 15px;
}

.store-item .description {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.store-item input {
    width: 100%;
    padding: 12px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.store-item input:focus {
    outline: none;
    border-color: #2ecc71;
}

.store-item button {
    width: 100%;
}

/* Global Compliant Footer */
.legal-footer {
    background-color: #0a0a0a;
    padding: 60px 8% 30px;
    border-top: 1px solid #1a1a1a;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #2ecc71;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #2ecc71;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    color: #555555;
    font-size: 0.85rem;
}

/* Sub-Page Text Formatting layout */
.policy-body {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.policy-body h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.policy-body h2 {
    font-size: 1.4rem;
    color: #2ecc71;
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-body p, .policy-body ul {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-body ul {
    padding-left: 20px;
}