/*
Theme Name: Grizzlyman
Theme URI: 
Author: Your Name
Author URI: 
Description: Custom theme for Grizzlyman
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grizzlyman
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-headings: 'Montserrat', var(--font-primary);
    --white: #ffffff;
    --color-gold: #DAA520;
}

/* ============================================
   BASE STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    background-image: linear-gradient(to top, rgba(218, 165, 32, 0.15) 0%, rgba(218, 165, 32, 0.08) 30%, rgba(218, 165, 32, 0) 60%);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    background-attachment: fixed;
    overflow-x: hidden;
}

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

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-headings);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2, h3, h4,
.h2, .h3, .h4 {
    color: #111111;
    font-weight: 900;
}

section h2,
#aktuality h2,
#zavody h2,
#kontakty h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-headings);
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding-top: 0.425rem;
    padding-bottom: 0.425rem;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: rgba(252,248,237,0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.site-main {
    padding-top: 85px;
}

.navbar-brand {
    font-family: var(--font-headings);
    font-weight: 800;
    padding: 0.425rem 0;
}

.navbar-brand img {
    max-height: 68px;
    height: auto;
    width: auto;
}

.navbar .nav-item {
    padding: 0 0.75rem;
}

.navbar .nav-link {
    padding: 0.425rem 1rem;
    position: relative;
    color: #111111;
    font-size: 1.02rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
    color: #111111;
    background-color: transparent;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #111111;
    background-color: transparent;
    text-decoration: none;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
    padding: 0.75rem 0;
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar .dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #111111;
    transition: all 0.3s ease;
    border-radius: 0;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background-color: transparent;
    color: #111111;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: var(--color-gold);
    color: #fff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    position: relative;
    padding-top: 6rem;
    padding-bottom: 8vh;
    background-image: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0) 100%), url('images/hero_grizzly.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 7rem;
    letter-spacing: -0.03em;
}

.hero .lead {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.8;
}

.hero-buttons .btn + .btn {
    margin-left: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn,
.btn-grizzly,
.btn:focus,
.btn:active,
.btn:visited {
    border-radius: 0 !important;
}

.btn-grizzly {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.61);
    border: 2px solid #fff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-grizzly:hover {
    color: #fff;
    background-color: rgba(218, 165, 32, 0.9);
    border-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
}

.btn-primary {
    color: #DAA520 !important;
    background-color: transparent !important;
    border: 2px solid #DAA520 !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0 !important;
    transition: all 0.18s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
    color: #fff !important;
    background-color: #DAA520 !important;
    border-color: #DAA520 !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.btn-sm.btn-primary {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.btn-outline-primary {
    color: #DAA520;
    border-color: #DAA520;
    background-color: transparent;
    border-radius: 0 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff;
    background-color: #DAA520;
    border-color: #DAA520;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    background-color: transparent;
    border-radius: 0 !important;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    font-weight: 600;
    border-width: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease-in-out;
    text-decoration: none;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-1px);
}

.btn-primary:focus-visible,
.btn-outline-primary:focus-visible,
.btn-outline-secondary:focus-visible {
    outline: 3px solid rgba(218,165,32,0.16);
    outline-offset: 3px;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    pointer-events: none;
    transform: none;
}

/* ============================================
   CARDS
   ============================================ */
.card,
.card .card-img-top,
.card-img-top,
.card-body {
    border-radius: 0 !important;
}

.card {
    border: 1px solid rgba(218, 165, 32, 0.3) !important;
}

.card-img-top img,
.card .card-img-top img {
    border-radius: 0 !important;
}

#aktuality .card {
    transition: all 0.2s ease-in-out;
}

#aktuality .card a {
    text-decoration: none;
}

#aktuality .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(218,165,32,0.1);
    border-color: rgba(218,165,32,0.25);
}

#aktuality .card:hover .btn-primary {
    color: #fff !important;
    background-color: #DAA520 !important;
    border-color: #DAA520 !important;
}

/* Race cards */
.race-card .d-flex.gap-2 {
    flex-wrap: wrap;
}

.race-card .btn-sm {
    white-space: nowrap;
    flex: 0 1 auto;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
    margin-top: 2rem;
}

.gallery-img {
    height: 70vh;
    object-fit: cover;
    width: 100%;
}

.gallery-section .carousel-caption {
    background: rgba(0,0,0,0.35);
    padding: 1rem 1.25rem;
    border-radius: 0;
}

/* ============================================
   KONTAKTY SECTION
   ============================================ */
.kontakty-section {
    color: #111;
}

.kontakt-box {
    background-color: #f8f9fa;
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 0;
}

.kontakt-box h3 {
    color: #111111;
    font-weight: 900;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kontakt-box h4 {
    color: #111111;
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.kontakt-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.kontakt-email {
    color: var(--color-gold);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.kontakt-email:hover {
    color: #111;
    text-decoration: underline;
}

.poradatel-section p,
.press-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social media links */
.social-media {
    margin-top: 1.5rem;
}

.social-link {
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
}

.social-link svg {
    color: var(--color-gold);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover {
    color: var(--color-gold);
    text-decoration: none;
}

.social-link:hover svg {
    color: #111;
}

/* ============================================
   FOOTER & PARTNERS
   ============================================ */
.site-footer {
    border-top: 1px solid rgba(218, 165, 32, 0.3);
}

.partners-section h3 {
    font-family: var(--font-headings);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
}

.partner-logo {
    display: inline-block;
    padding: 1.5rem;
    transition: all 0.2s ease-in-out;
}

.partner-logo:hover {
    filter: grayscale(100%);
    opacity: 0.7;
    transform: translateY(-2px);
}

.partner-logo.main-partner {
    padding: 2rem;
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

footer .last-img {
    background-image: url(images/symbol_black.png);
    background-position: bottom center;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    padding-bottom: 350px;
}

/* ============================================
   SINGLE POST & PAGE TEMPLATES
   ============================================ */
.content-single {
    margin: 0 auto;
}

.entry-header {
    text-align: center;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
    padding-bottom: 2rem;
}

.entry-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 0;
}

.entry-meta {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.content-block {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.content-block h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-block h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block ul,
.content-block ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-block li {
    margin-bottom: 0.5rem;
}

.content-block img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 2rem 0;
}

.content-block blockquote {
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

/* Responsive iframe videos (YouTube, Vimeo, etc.) */
.content-block iframe,
.wp-block-embed iframe,
.wp-block-embed__wrapper iframe {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border: none;
}

/* Wrapper for embedded content */
.wp-block-embed {
    margin: 2rem 0;
}

.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
    .content-block iframe,
    .wp-block-embed iframe,
    .wp-block-embed__wrapper iframe {
        height: auto;
        min-height: 400px;
    }
}

.page-links {
    clear: both;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
}

/* ============================================
   RESPONSIVE - DESKTOP (992px and up)
   ============================================ */
@media (min-width: 992px) {
    /* Underline on hover for top-level links without dropdown */
    .navbar-nav > .nav-item:not(.dropdown) > .nav-link:hover,
    .navbar-nav > .nav-item:not(.dropdown) > .nav-link:focus {
        text-decoration: underline !important;
        text-decoration-line: underline !important;
        text-underline-offset: 4px;
    }
    
    /* Show dropdown on hover on desktop */
    .navbar .nav-item.dropdown {
        position: relative;
    }
    
    .navbar .dropdown-menu {
        display: none;
        position: absolute;
        margin-top: 0;
    }
    
    .navbar .nav-item.dropdown:hover > .dropdown-menu,
    .navbar .dropdown-menu:hover {
        display: block;
    }
    
    /* Add small gap bridge between nav-link and dropdown */
    .navbar .nav-item.dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
    }
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE (991px and down)
   ============================================ */
@media (max-width: 991.98px) {
    /* Navigation - Mobile */
    .navbar {
        background-color: rgba(252,248,237,0.95) !important;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
    
    /* Hamburger menu button */
    .navbar-toggler {
        border: none !important;
        padding: 0;
        position: relative;
        width: 60px;
        height: 60px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        box-shadow: none !important;
        z-index: 1031;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none !important;
    }
    
    .navbar-toggler .navbar-toggler-icon {
        background-image: none !important;
        width: 26px;
        height: 20px;
        position: relative;
        display: block;
        background-color: transparent !important;
        margin-bottom: 4px;
    }
    
    .navbar-toggler .navbar-toggler-icon::before,
    .navbar-toggler .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 26px;
        height: 3px;
        background-color: #111111;
        left: 0;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    
    .navbar-toggler .navbar-toggler-icon::before {
        top: 0;
    }
    
    .navbar-toggler .navbar-toggler-icon {
        background: linear-gradient(#111111, #111111) !important;
        background-size: 26px 3px !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .navbar-toggler .navbar-toggler-icon::after {
        bottom: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent !important;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    .navbar-toggler::after {
        content: 'MENU';
        display: block;
        color: #111111;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        font-family: var(--font-headings);
        line-height: 1;
        margin-top: 0;
    }
    
    /* Full-screen mobile menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255,255,255,0.98);
        padding: 80px 2rem 2rem 2rem;
        margin: 0;
        border-radius: 0;
        z-index: 1020;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        height: 100vh !important;
    }
    
    .navbar-collapse .navbar-nav {
        width: 100%;
    }
    
    .navbar .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(218, 165, 32, 0.2);
        text-align: center;
        border-radius: 0;
        color: #111111;
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
        color: #111111;
        background-color: transparent;
    }
    
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background-color: var(--color-gold) !important;
        color: #fff !important;
    }
    
    /* Mobile social media */
    .mobile-social-media {
        padding-top: 2rem;
        margin-top: 2rem;
    }
    
    .mobile-social-link {
        color: #111111;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(218, 165, 32, 0.2);
        display: flex;
    }
    
    .mobile-social-link svg {
        color: var(--color-gold);
        transition: color 0.3s ease;
        flex-shrink: 0;
    }
    
    .mobile-social-link:hover {
        color: var(--color-gold);
    }
    
    .mobile-social-link:hover svg {
        color: #111111;
    }
    
    .navbar-brand {
        z-index: 1031;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Unified button styles for mobile - all buttons same size */
    .race-card .btn,
    .race-card .btn-sm,
    #aktuality .card .btn,
    .card-body .btn {
        font-size: 0.875rem !important;
        padding: 0.625rem 1rem !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }
    
    .race-card .d-flex.gap-2 {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    /* Kontakty */
    .kontakty-section {
        padding: 3rem 0;
    }
    
    .kontakt-box {
        padding: 2rem !important;
    }
}

/* ============================================
   RESPONSIVE - MEDIUM TABLET (769px to 991px)
   ============================================ */
@media (min-width: 769px) and (max-width: 991px) {
    .hero h1 { 
        font-size: 4.5rem;
    }
    
    .hero .lead { 
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 70%;
        margin: 0 !important;
    }
}

/* ============================================
   RESPONSIVE - TABLET (577px to 768px)
   ============================================ */
@media (min-width: 577px) and (max-width: 768px) {
    .hero h1 { 
        font-size: 3.5rem;
    }
    
    .hero .lead { 
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 70%;
        margin: 0 !important;
        padding: 0.75rem 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* ============================================
   RESPONSIVE - TABLET & BELOW (768px and down)
   ============================================ */
@media (max-width: 768px) {
    /* Partners */
    .partner-logo {
        padding: 1rem;
    }
    
    .partner-logo.main-partner {
        padding: 1.5rem;
    }
    
    /* Gallery */
    .gallery-img { 
        height: 40vh;
    }
    
    .gallery-section {
        margin-top: 1rem;
    }
    
    .carousel-caption {
        font-size: 0.875rem;
        padding: 0.5rem !important;
    }
    
    /* Single/Page templates */
    .entry-header {
        text-align: left;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .content-block {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .content-block h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (576px and down)
   ============================================ */
@media (max-width: 576px) {
    /* Hero */
    .hero {
        padding: 2rem 0 4rem 0;
        min-height: 100vh;
        align-items: flex-end;
    }
    
    .hero h1 { 
        font-size: 3rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero .lead { 
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3;
        opacity: 1;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Typography */
    section h2,
    h2 {
        font-size: 1.75rem !important;
        letter-spacing: 0.5px;
    }
    
    h3 {
        font-size: 1.15rem !important;
    }
    
    h4 {
        font-size: 1.05rem !important;
    }
    
    /* Cards */
    #aktuality .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Race cards */
    .race-card {
        padding: 1rem !important;
    }
    
    .race-card .race-logo img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .race-card h3 {
        font-size: 1rem !important;
    }
    
    .race-card .small {
        font-size: 0.8rem !important;
    }
    
    /* Partners */
    .partners-section h3 {
        font-size: 1.25rem !important;
    }
    
    .partner-logo {
        padding: 0.75rem !important;
    }
    
    .partner-logo img {
        max-width: 90% !important;
    }
    
    /* Gallery */
    .gallery-img {
        height: 30vh;
    }
    
    .carousel-indicators {
        margin-bottom: 0.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    /* Kontakty */
    .kontakty-section {
        padding: 2rem 0;
    }
    
    .kontakt-box {
        padding: 1.5rem !important;
    }
    
    .kontakt-box h3 {
        font-size: 1.15rem;
    }
    
    .kontakt-box h4 {
        font-size: 1.05rem;
    }
    
    .kontakt-email {
        font-size: 0.9rem;
    }
    
    /* Footer */
    footer .last-img {
        background-size: 200px 200px;
        padding-bottom: 250px;
    }
    
    /* Container */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .site-main .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
