/*
 Theme Name:   Neckermann-LBC
 Theme URI:    https://example.com/generatepress-child/
 Description:  A custom child theme for the GeneratePress theme.
 Author:       Your Name
 Author URI:   https://example.com
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  my-gp-child
*/

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* ============================================
   GLOBAL TYPOGRAPHY - Homepage Style
   ============================================ */

/* Body text - Inter font */
body {
    font-family: var(--font-family-primary);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    color: #ffffff;
}

/* All headings - Oswald font with uppercase styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Responsive heading sizes using clamp() */
h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}
