/*
Theme Name: Green Egg
Author: Aleksa Rabrenovic
Description: A custom WordPress theme developed for Green Egg.
Version: 1.0
Text Domain: green-egg
*/

/* Custom font declarations */
@font-face {
    font-family: 'Your Life';
    src: url('./src/fonts/your-life/Your%20Life%20Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Your Life';
    src: url('./src/fonts/your-life/Your%20Life%20Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Roboto Slab font declarations */
@font-face {
    font-family: 'Roboto Slab';
    src: url('./src/fonts/Roboto_Slab/static/RobotoSlab-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('./src/fonts/Roboto_Slab/static/RobotoSlab-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('./src/fonts/Roboto_Slab/static/RobotoSlab-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('./src/fonts/Roboto_Slab/static/RobotoSlab-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('./src/fonts/Roboto_Slab/static/RobotoSlab-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('./src/fonts/Roboto_Slab/static/RobotoSlab-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('./src/fonts/Roboto_Slab/static/RobotoSlab-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Global Font Styles */
/* All headings use 'Your Life' font */
h1, h2, h3, h4, h5, h6,
.title, .heading, .product-title, .main-title,
.card-overlay h3, .section-content-left h4, .section-content-right h4,
.text-only-content h4, .pages-temp-content .paragraph-title,
.product-details-section h1, .add-ons-section h3,
.product-description h3, .related-products-section h2,
.related-product-card h3 {
    font-family: 'Your Life', sans-serif !important;
}

/* All body text uses 'Segoe UI' */
body, p, .paragraph, .introduction-text p,
.product-compare-table tbody td, .product-compare-table thead th,
.category-name, .model-name, .pagination-wrapper .page-numbers,
.brand-text, .product-info, .product-price,
.single-product-page, .product-description .prose,
.info-sections details > div, .shop-locally-section details > div {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.container {
   max-width: 90%;
}

/* Accessories Page Responsive Background */
.accessories-page-gradient {
    background: linear-gradient(180deg, rgba(22, 34, 27, 0) 7%, rgba(22, 34, 27, 1) 17%) !important;
}

/* Mobile responsive gradient for accessories page */
@media (max-width: 768px) {
    .accessories-page-gradient {
        background: linear-gradient(180deg, rgba(22, 34, 27, 0) 2%, rgba(22, 34, 27, 1) 6%) !important;
    }
}

