/* 1. Subtle hover effects for product cards and buttons */
.product-card {
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.product-card:hover {
    box-shadow: 0 8px 24px rgba(230,194,0,0.18);
    border: 2px solid #e6c200;
    transform: translateY(-6px) scale(1.03);
}
.buy-btn, .gold-btn, .cta-btn {
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.buy-btn:hover, .gold-btn:hover, .cta-btn:hover {
    box-shadow: 0 4px 16px rgba(230,194,0,0.18);
    transform: scale(1.05);
}
body, input, textarea, button {
    font-size: 1em;
    line-height: 1.6;
}
h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 0.7em;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.products h2 {
    font-size: 2em;
    margin-bottom: 1.5em;
}
.product-card h3 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}
.product-card p {
    margin-bottom: 1em;
}

/* 3. Gold border/accent for product cards */
.product-card {
    border: 2px solid #e6c200;
    box-shadow: 0 2px 8px rgba(230,194,0,0.10);
}

/* 4. Improved footer with social icons and contact info */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1.5em 0 1em 0;
    margin-top: 3em;
    border-radius: 0 0 12px 12px;
    font-size: 1em;
    border-top: 2px solid #e6c200;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7em;
}
.footer-content span {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.footer-content img {
    vertical-align: middle;
    margin-left: 0.5em;
    transition: transform 0.2s;
}
.footer-content img:hover {
    transform: scale(1.2);
}

/* 5. Call-to-action banner */
.cta-banner {
    background: linear-gradient(90deg, #e6c200 60%, #fffbe6 100%);
    color: #181818;
    text-align: center;
    padding: 2em 1em;
    font-size: 1.3em;
    font-weight: bold;
    margin: 2em 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(230,194,0,0.10);
}

/* 6. Custom font for headings */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* 7. Responsive design for mobile devices */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        padding: 1em;
    }
    .products, .product-list {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        width: 90vw;
        min-width: 220px;
        margin-bottom: 2em;
    }
    .glass-gold {
        max-width: 95vw;
        padding: 1.5em 1em;
    }
}
/* Hide product images on mobile if needed */
.product-card img {
    display: none;
}
/* Center Featured Software section and product list */
.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.products h2 {
    text-align: center;
    margin-bottom: 2em;
    width: 100%;
}
.product-list {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #181818;
    color: #e6c200;
}

nav {
    background: rgba(24,24,24,0.85);
    color: #e6c200;
        display: flex;
        align-items: center;
        gap: 0.5em;
    padding: 0.7em 2em;
    box-shadow: 0 4px 24px rgba(230,194,0,0.10);
    border-bottom: 1px solid #e6c200;
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 64px;
}

nav .logo {
    font-size: 1.7em;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e6c200;
        display: flex;
        align-items: center;
        gap: 0.5em;
        margin-right: 0.5em;
    text-shadow: 0 2px 8px rgba(230,194,0,0.18);
}

nav a {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    color: #e6c200;
    background: transparent;
        margin-left: 0;
    font-size: 1.08em;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 0.5em 0.7em;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
    box-shadow: none;
    overflow: hidden;
}

nav a:hover {
    background: rgba(230,194,0,0.10);
    color: #fffbe6;
    box-shadow: none;
}
nav a.active, nav a:focus {
    color: #fffbe6;
    background: rgba(230,194,0,0.18);
}
nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #e6c200 60%, #fffbe6 100%);
    border-radius: 2px;
    transition: width 0.3s;
    position: absolute;
    left: 18%;
    bottom: 6px;
    opacity: 0.9;
}
nav a:hover::after, nav a.active::after {
    width: 64%;
}

/* Hero section styles */
.hero h1 {
    font-size: 2.5em;
    background: rgba(230,194,0,0.12);
    color: #fffbe6;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}
.cta-btn {
    background: #fff;
    color: #4f8cff;
    padding: 0.8em 2em;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
/* Glassmorphism and gold accent styles */
.glass-gold {
    background: rgba(24,24,24,0.85);
    box-shadow: 0 8px 32px 0 rgba(230,194,0,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 2px solid #e6c200;
    padding: 2.5em 2em;
    margin: 2em auto;
    max-width: 500px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1em;
    box-shadow: 0 4px 24px rgba(230,194,0,0.15);
    border-radius: 50%;
    border: 2px solid #e6c200;
}
.gold-text {
    color: #e6c200;
    font-weight: bold;
    letter-spacing: 1px;
}
.gold-highlight {
    color: #fffbe6;
    background: linear-gradient(90deg, #e6c200 60%, #fffbe6 100%);
    padding: 0 4px;
    border-radius: 4px;
}
.gold-sub {
    color: #fffbe6;
    font-size: 1.1em;
}
.gold-btn {
    background: #e6c200;
    color: #181818;
    border: none;
    padding: 0.8em 2em;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(230,194,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.gold-btn:hover {
    background: #fffbe6;
    color: #181818;
}
/* Product card styles */
.product-card {
    background: #181818;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(230,194,0,0.10);
    padding: 2em 1.5em;
    text-align: center;
    width: 250px;
    margin-bottom: 2em;
    transition: box-shadow 0.2s;
    color: #e6c200;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}
.product-card:hover {
    box-shadow: 0 4px 16px rgba(79,140,255,0.15);
}
.product-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1em;
}
.product-card h3 {
    margin: 0.5em 0;
    font-size: 1.2em;
}
.product-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 1em;
}
.price {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    color: #4f8cff;
    margin-bottom: 1em;
}
.buy-btn {
    background: #4f8cff;
    color: #fff;
    border: none;
    padding: 0.7em 1.5em;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.buy-btn:hover {
    background: #222;
}
/* Contact form styles */
.contact {
    margin-top: 3em;
    text-align: center;
    background: rgba(24,24,24,0.85);
    box-shadow: 0 4px 24px rgba(230,194,0,0.10);
    border-radius: 18px;
    border: 2px solid #e6c200;
    padding: 2.5em 2em;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: #e6c200;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    max-width: 400px;
    margin: 0 auto;
}
.contact input {
    padding: 1em;
    border-radius: 10px;
    border: 1.5px solid #e6c200;
    font-size: 1em;
    background: rgba(24,24,24,0.7);
    color: #e6c200;
    box-shadow: 0 2px 8px rgba(230,194,0,0.08);
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}
.contact textarea {
    padding: 1em;
    border-radius: 10px;
    border: 1.5px solid #e6c200;
    font-size: 1em;
    background: rgba(24,24,24,0.7);
    color: #e6c200;
    box-shadow: 0 2px 8px rgba(230,194,0,0.08);
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}
.contact button {
    background: linear-gradient(90deg, #e6c200 60%, #fffbe6 100%);
    color: #181818;
    border: none;
    padding: 1em 2em;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(230,194,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.contact button:hover {
    background: #fffbe6;
    color: #181818;
}