/*
  ROCKAGE: THE DEFINITIVE PREMIUM THEME
  VERSION: 2.2 - Full Integration & Responsive Enhancements
  AUTHOR: AI Assistant & Yaswanth
*/

/* 1. FONT IMPORT & GLOBAL VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');
/* ADDING FONTS FOR NEW SECTIONS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:wght@300;400;600;700&display=swap');


:root {
    --primary-color: #D4AF37; /* Gold */
    --primary-hover: #E7C66A; /* Lighter Gold */
    --background-color: #0A0A0A; /* Deep Black */
    --surface-color: #1A1A1A; /* Dark Grey Surface */
    --card-bg: #111111; /* Slightly lighter for cards */
    --border-color: #2F2F2F; /* Dark Grey Border */
    --text-color: #EAEAEA; /* Light Grey Text */
    --text-muted: #999999; /* Muted Grey Text */
    --error-color: #e74c3c; /* Red for errors */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* New fonts for branding consistency */
    --font-brand-sharp: 'Orbitron', sans-serif;
    --font-brand-clean: 'Poppins', sans-serif;

    --transition-speed: 0.3s;
}

/* 2. GENERAL RESETS & BASE STYLING
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
a:hover {
    color: var(--primary-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* 3. HEADER & NAVIGATION
   ========================================================================== */
header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem; /* Adjusted padding for better spacing */
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    filter: brightness(1.1);
    transition: transform var(--transition-speed) ease;
}
.logo:hover img {
    transform: scale(1.08);
}

header nav {
    display: flex;
    gap: 2rem;
}

header nav a {
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-brand-clean);
    position: relative;
    padding: 5px 0;
}
header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
header nav a:hover {
    color: #fff;
}
header nav a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-brand-clean);
}

/* 4. HERO SECTION (BANNER)
   ========================================================================== */
.hero {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/images/banner-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 70%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5.5rem;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    font-weight: 800;
    font-family: var(--font-brand-sharp); /* Use the new sharp font */
}

/* NEW: Powered-by text on banner */
.banner-powered-by {
    font-family: var(--font-brand-clean);
    font-size: 1.1rem;
    margin-top: 15px;
    color: #cccccc;
    letter-spacing: 1px;
}
.banner-powered-by strong {
    color: #fff;
    font-weight: 600;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.hero .summary {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: #ddd;
    font-weight: 300;
}
.hero .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 6px;
}

/* 5. PRODUCTS SECTION
   ========================================================================== */
.products {
    padding: 6rem 0;
    background-color: var(--background-color);
}
.products h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4.5rem;
    position: relative;
    color: #fff;
}
.products h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}
.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}
.product-image-slider {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
    position: relative;
}
.product-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.product-card:hover .product-image-slider img {
    transform: scale(1.08);
}
.product-card-content {
    padding: 1.75rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 600;
}
.price {
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}
.current-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    margin-right: 0.5rem;
}
.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Common Button Style */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--background-color);
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    align-self: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
.btn:disabled {
    background: #444;
    border-color: #444;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn:disabled:hover {
    background: #444;
    color: #888;
}

/* 6. DETAILED PAGES (Product, Cart, Checkout, etc.)
   ========================================================================== */
.product-detail-page, .cart-page, .checkout-page, .success-page {
    padding: 5rem 0;
    min-height: 80vh;
}
.product-detail-page h1, .cart-page h1, .checkout-page h1, .success-page h1 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}
.product-detail-page h1::after, .cart-page h1::after, .checkout-page h1::after, .success-page h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.success-page h1 {
    color: var(--primary-color);
}

/* PRODUCT DETAIL PAGE */
.product-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) { .product-detail-grid { grid-template-columns: 3fr 2fr; gap: 5rem; } }
.product-detail-images { position: sticky; top: 120px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.product-image-gallery { position: relative; }
.product-image-gallery .main-image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; transition: opacity 0.3s ease-in-out; }
.product-image-gallery .thumbnails { display: flex; gap: 10px; margin-top: 15px; overflow-x: auto; padding-bottom: 10px; }
.product-image-gallery .thumbnail-item { flex-shrink: 0; width: 80px; height: 100px; border-radius: 5px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition-speed) ease, transform var(--transition-speed) ease; }
.product-image-gallery .thumbnail-item img { width: 100%; height: 100%; object-fit: cover; }
.product-image-gallery .thumbnail-item:hover { transform: scale(1.05); }
.product-image-gallery .thumbnail-item.active { border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5); }
.product-detail-info h1 { text-align: left; margin-bottom: 1.5rem; font-size: 3rem; }
.product-detail-info h1::after { display: none; }
.product-detail-info .price { margin: 1rem 0 2rem; text-align: left; display: flex; align-items: baseline; gap: 1rem; }
.product-detail-info .current-price { font-size: 2.2rem; color: var(--primary-color); font-family: var(--font-heading); font-weight: 700; }
.product-detail-info .original-price { font-size: 1.3rem; color: var(--text-muted); }
.product-detail-info .description { margin: 1.5rem 0; color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }
.product-detail-info .quotation { margin: 3rem 0; font-style: italic; color: #fff; border-left: 4px solid var(--primary-color); padding: 1.5rem; background-color: var(--surface-color); border-radius: 6px; box-shadow: inset 0 0 10px rgba(0,0,0,0.2); }
.product-detail-info .btn { width: auto; margin-top: 2rem; padding: 15px 40px; font-size: 1.1rem; align-self: flex-start; }

/* CART & CHECKOUT PAGES */
.cart-page { max-width: 1000px; margin: 0 auto; }
.cart-page h1, .checkout-page h1 { margin-bottom: 3rem; }
.cart-items { border-top: 1px solid var(--border-color); }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border-color); align-items: center; }
.cart-item-image { width: 100px; height: 130px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border-color); }
.cart-item-details h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-color); }
.cart-item-details p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.3rem; }
.cart-item-actions { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.cart-item-actions .item-total-price { font-size: 1.4rem; font-weight: bold; color: #fff; margin-bottom: 1rem; }
.remove-btn { background: none; border: none; color: #ff6b6b; cursor: pointer; font-size: 0.9rem; letter-spacing: 0.5px; transition: color var(--transition-speed) ease, transform var(--transition-speed) ease; padding: 5px 10px; border-radius: 4px; }
.remove-btn:hover { color: #ff3838; transform: scale(1.05); }
.cart-summary { margin-top: 3rem; padding-top: 2.5rem; border-top: 2px solid var(--border-color); text-align: right; background: var(--surface-color); padding: 2.5rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.cart-summary h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #fff; }
.cart-summary .subtotal-text { color: var(--text-muted); font-weight: 500; font-family: var(--font-body); }
.cart-summary .btn { margin-top: 1.5rem; width: auto; }
.cart-empty-message { text-align: center; padding: 3rem 0; font-size: 1.1rem; color: var(--text-muted); }
.cart-empty-message .btn { margin-top: 2rem; }
.checkout-form { max-width: 650px; margin: 0 auto; background: var(--surface-color); padding: 3.5rem; border-radius: 10px; border: 1px solid var(--border-color); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.checkout-form h2 { text-align: center; margin-bottom: 2.5rem; font-size: 2rem; color: var(--primary-color); }
.order-summary { background: #222; padding: 1.5rem; border-radius: 6px; margin-bottom: 2.5rem; border: 1px solid var(--border-color); box-shadow: inset 0 0 8px rgba(0,0,0,0.2); }
.order-summary h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.4rem; color: #fff; }
.checkout-form .btn { width: 100%; margin-top: 2rem; padding: 15px 0; font-size: 1.1rem; }

/* FORMS */
.form-group { margin-bottom: 1.8rem; }
.form-group label { display: block; margin-bottom: 0.7rem; font-weight: 500; font-size: 0.95rem; color: var(--text-color); }
.form-group input, .form-group select { width: 100%; padding: 16px; background: #0f0f0f; border: 1px solid var(--border-color); color: #fff; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; }
.form-group input:focus, .form-group select:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3); }

/*
   =========================================
   NEW SITE-WIDE STYLES ADDED
   =========================================
*/

/* Info Page Styles (Contact & Refund) */
.info-page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-height: 60vh;
}
.info-page-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: var(--font-brand-sharp);
}
.info-page-container .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.contact-methods {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.contact-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    flex: 1;
}
.contact-card h2 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
}
.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.2s;
    text-transform: uppercase;
}
.contact-btn:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
    color: var(--background-color);
}
.social-links a {
    display: block;
    margin: 10px 0;
    color: var(--text-color);
    text-decoration: underline;
}
.policy-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.policy-section:last-child {
    border-bottom: none;
}
.policy-section h2 {
    margin-bottom: 15px;
    color: #fff;
}
.policy-section ul {
    list-style-position: inside;
    padding-left: 10px;
}
.policy-section li {
    margin-bottom: 10px;
}

/* Footer Styles */
.site-footer {
    background-color: #000;
    border-top: 1px solid var(--border-color);
    padding: 50px 5%;
    font-size: 0.9rem;
    font-family: var(--font-brand-clean);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-branding {
    flex: 2;
    min-width: 250px;
}
.footer-title {
    font-family: var(--font-brand-sharp);
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 3px;
    color: #fff;
}
.powered-by {
    margin: 5px 0 0 0;
    font-size: 1rem;
    color: var(--text-muted);
}
.footer-links {
    flex: 1;
    min-width: 150px;
}
.footer-links h4 {
    font-family: var(--font-brand-clean);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.footer-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 0;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #777;
}

/*
   =========================================
   RESPONSIVENESS & MOBILE FIXES
   =========================================
*/

/* Product Page Image Scrolling Fix for Mobile */
@media (max-width: 768px) {
    .product-detail-images {
        position: static; /* Disables the sticky behavior on mobile */
        height: auto;
        margin-bottom: 30px; /* Adds some space below the image stack */
    }
}

@media (max-width: 1200px) { .container { max-width: 1000px; } }
@media (max-width: 992px) { .container { max-width: 800px; } .hero h1 { font-size: 4rem; } .hero .subtitle { font-size: 1.2rem; } .products h2 { font-size: 2.8rem; } .product-grid { gap: 2rem; } }
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: 3.2rem; letter-spacing: 2px; }
    .hero .subtitle { font-size: 1rem; margin-bottom: 1.5rem;}
    .hero .summary { font-size: 0.95rem; max-width: 500px; margin-bottom: 2rem; }
    .hero .btn { padding: 12px 30px; font-size: 0.95rem; }
    header { padding: 0.75rem 1.5rem; flex-wrap: wrap; justify-content: center; } /* Mobile header */
    header nav { order: 3; width: 100%; justify-content: center; margin-top: 10px; gap: 1.5rem; }
    .logo img { height: 50px; }
    .header-icons { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); }
    .products h2 { font-size: 2.4rem; margin-bottom: 3.5rem;}
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    .product-card h3 { font-size: 1.2rem; }
    .current-price { font-size: 1.2rem; }
    .original-price { font-size: 0.9rem; }
    
    /* Responsive Footer and Info Pages */
    .footer-content { flex-direction: column; text-align: center; }
    .contact-methods { flex-direction: column; }
    .info-page-container { margin: 40px 20px; padding: 25px; }
}
@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero .subtitle { font-size: 0.9rem; }
    .hero .summary { font-size: 0.9rem; }
    .products h2 { font-size: 2rem; margin-bottom: 2.5rem;}
    .product-grid { grid-template-columns: 1fr; } /* Single column on small mobiles */
    .product-card-content { padding: 1.25rem; }
    .product-card h3 { font-size: 1.1rem; }
    .current-price { font-size: 1.1rem; }
    .original-price { font-size: 0.85rem; }
    .btn { padding: 10px 24px; font-size: 0.85rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    .cart-item { grid-template-columns: 80px 1fr auto; gap: 1rem; padding: 1rem 0; }
    .cart-item-image { width: 80px; height: 100px; }
    .product-detail-info h1 { font-size: 2rem; }
    .product-detail-info .current-price { font-size: 1.5rem; }
    header { padding: 0.5rem 1rem; }
    .header-icons { right: 1rem; }
    header nav { font-size: 0.9rem; }
}

@media (min-width: 768px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.site-header-main {
    /* --- The Frosted Glass Effect --- */
    background-color: rgba(10, 10, 10, 0.6); /* Semi-transparent dark background */
    backdrop-filter: blur(12px);             /* The magic blur effect */
    -webkit-backdrop-filter: blur(12px);     /* Support for Safari browser */

    /* --- Glossy Edge --- */
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Subtle white line for a glossy edge */

    /* --- Positioning --- */
    padding: 10px 5%;
    position: fixed; /* Use fixed positioning to keep it at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

/* Container for header content */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* Logo styling */
.header-brand {
    flex-shrink: 0; /* Prevents the logo from shrinking */
}

.header-logo {
    height: 45px; /* Adjust the height of your logo as needed */
    width: auto;
    display: block;
}

/* Navigation link styling */
.header-nav a,
.header-actions a {
    text-decoration: none;
    color: #f0f0f0; /* Use a slightly off-white for better readability */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.header-nav a:hover,
.header-actions a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* This adds a buffer to the top of your page content, 
   so it isn't hidden behind the fixed header */
body {
    padding-top: 80px; /* Adjust this value to match your header's height */
}
