:root {
    --primary-red: #b3001b;
    --dark: #111111;
	body {
    font-family: Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #fff;
}

    --light: #ffffff;
    --gray: #f4f4f4;
    --text: #333333;
    --container: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #fff;
}

img {
    width: 100%;
    display: block;
}

	.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

	.topbar {
    background: var(--primary-red);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

	.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

	.top-contact {
    display: flex;
    gap: 20px;
}

	.top-contact a {
    color: white;
    text-decoration: none;
}

	.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.logo small {
    letter-spacing: 6px;
    color: #222;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}



.logo {
    text-decoration: none;
    color: var(--primary-red);
    display: flex;
    flex-direction: column;
}

.logo span {
    font-size: 42px;
    font-weight: bold;
}

.logo small {
    letter-spacing: 6px;
    color: #222;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.dropdown:hover .dropdown-menu {
    display: flex;
}

.webshop-btn,
.primary-btn {
    background: var(--primary-red);
    color: white;
}

.webshop-btn:hover,
.primary-btn:hover {
    background: #8e0015;
}

.secondary-btn {
    border: 2px solid white;
    color: white;
}

.hero {
    position: relative;
    min-height: 85vh;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero-subtitle {
    text-transform: uppercase;
    color: #ffccd3;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.usp-section {
    background: var(--primary-red);
    color: white;
    padding: 40px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cards-section {
    padding: 100px 0;
    background: #fafafa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: white;
    overflow: hidden;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card-content {
    padding: 30px;
}

.card-content h2 {
    margin-bottom: 16px;
    font-size: 26px;
}

.card-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
}

.webshop-card {
    border: 3px solid var(--primary-red);
}

.cta-section {
    background: linear-gradient(135deg, #b3001b, #d40026);
    color: white;
    padding: 80px 0;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.white-btn {
    border: 2px solid white;
    color: white;
}

.footer {
    background: #0d0d0d;
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

@media (max-width: 1024px) {

    .cards-grid,
    .usp-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.hero h1 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {

    .mobile-toggle {
        display: block;
        background: var(--primary-red);
        color: white;
        border: none;
        padding: 12px 18px;
        cursor: pointer;
        font-size: 22px;
        margin-left: auto;
    }
	
	.main-nav {
        width: 100%;
        display: none;
    }
	
	 .main-nav.nav-open {
        display: block;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }
	
	.main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-top: 20px;
        gap: 18px;
    }
	
	.dropdown-menu {
        position: relative;
        display: flex;
        box-shadow: none;
        padding: 10px 0 0 15px;
        min-width: unset;
    }
	
	.cards-grid,
    .usp-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
	
	.hero {
        min-height: 70vh;
    }
	
	.hero h1 {
        font-size: 42px;
    }
	
	.hero-buttons,
    .cta-wrapper,
    .topbar-inner,
    .top-contact {
        flex-direction: column;
        gap: 20px;
    }

    .webshop-btn {
        width: 100%;
        text-align: center;
    }
}

.show {
    opacity: 1;
    transform: translateY(0);
}


.mobile-toggle {
    display: none;
}

.main-nav ul {
        flex-direction: column;
        align-items: center;
    }

.cards-grid,
    .usp-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

 .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 42px;
    }

.hero-buttons,
    .cta-wrapper,
    .topbar-inner {
        flex-direction: column;
        gap: 20px;
    }
}


