/**
 * Modern Styles - Marty's Moden
 * Inspiriert von westernandcowboy.de
 * Clean, modern Western Design mit Raleway Font
 */

/* RALEWAY FONT IMPORT (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Ubuntu:wght@500&display=swap');

/* CSS VARIABLES - Modern Western Color Palette */
:root {
    /* Hauptfarben nach westernandcowboy.de */
    --primary-gold: #c5a765;
    --primary-brown: #402314;
    --dark-brown: #29160d;
    --footer-brown: #2d180e;

    /* Neutrale Farben */
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f8f8f8;
    --border-gray: #e5e5e5;

    /* Schriften */
    --font-primary: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-cta: 'Ubuntu', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Container */
    --container-max: 1170px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

body {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    letter-spacing: 0.3px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY - Modern & Clean */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-brown);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--black);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-brown);
}

/* CONTAINER - Max-width 1170px wie westernandcowboy.de */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* HEADER - Modern & Sticky */
#main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

/* NAVIGATION - Clean & Modern */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-brown);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all var(--transition-fast);
    text-transform: capitalize;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    background: rgba(197, 167, 101, 0.08);
}

/* CTA Button in Navigation */
.btn-primary {
    font-family: var(--font-cta);
    background: var(--primary-brown);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* HERO SECTION - Modern & Clean */
.hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 35, 20, 0.85), rgba(197, 167, 101, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.5px;
}

/* SECTIONS - Clean Spacing */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-title p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* CARDS - Modern Design */
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.card-link:hover {
    gap: 12px;
}

/* GRID LAYOUTS - Responsive & Modern */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

/* BUTTONS - Modern Style */
.btn {
    font-family: var(--font-cta);
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-gold:hover {
    background: #b39555;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-brown {
    background: var(--primary-brown);
    color: var(--white);
}

.btn-brown:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
}

.btn-outline:hover {
    background: var(--primary-brown);
    color: var(--white);
}

/* FOOTER - Modern & Clean */
#main-footer {
    background: var(--footer-brown);
    color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h3,
.footer-column h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-column p,
#main-footer p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact,
.footer-hours {
    list-style: none;
    padding-left: 0;
}

.footer-contact li,
.footer-hours li {
    list-style: none;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* BRAND SHOWCASE - Clean Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.brand-card {
    background: var(--white);
    border-radius: 12px;
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.brand-logo {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.brand-card p {
    color: #666;
    font-size: 1rem;
}

/* IMAGE GALLERY - Modern Grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--primary-brown);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* SKIP LINK for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-brown);
    color: var(--white);
    padding: 8px 16px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.bg-light {
    background: var(--light-gray);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
