/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Roboto:wght@300;400;500&display=swap');

/* Custom Properties - Color Palette */
:root {
    /* Primary Colors */
    --color-primary: #1a1a1a;
    --color-secondary: #f5f5f5;
    --color-accent: #d4af37;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-light: #f8f8f8;
    --color-gray: #666666;
    --color-dark: #333333;
    
    /* UI Colors */
    --color-success: #4caf50;
    --color-error: #f44336;
    
    /* Functional Colors */
    --color-background: var(--color-white);
    --color-text: var(--color-primary);
    --color-text-light: var(--color-white);
    --color-button: var(--color-accent);
    --color-button-hover: #b89a2f;
    
    /* Spacing & Sizes */
    --header-height: 80px;
    --container-padding: 2rem;
    --border-radius: 12px;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --transition-slow: 0.8s;
    
    /* Shadows */
    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: transparent;
    display: flex;
    align-items: center;
    transition: background var(--transition-fast);
    z-index: 1000;
}

.main-header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-small);
}

/* Container for Layout */
.header-container {
    width: 100%;
    padding: 0 clamp(1rem, 5vw, 3rem); /* Responsive padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 50px; /* Logo-Höhe */
    display: block;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2.5rem); /* Responsive spacing between links */
    margin: 0;
    padding: 0;
}
/*
.nav-links li {
    margin: 0 clamp(0.5rem, 2vw, 1.5rem);
}
*/
.nav-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem); /* Responsive font size */
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: #666;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Standardmäßig ausgeblendet */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: background 0.3s ease;
}

/* Dropdown Menu for Mobile */
.nav-links.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.nav-links.dropdown.active {
    display: flex;
}

.nav-links li {
    margin: 1rem 0;
}


/* Button Styles */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    color: var(--color-text-light);
    background-color: var(--color-button);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.button:hover {
    background-color: var(--color-button-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer Styles */
.main-footer {
    padding: 3rem 0;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.social-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Verstecke Navigation */
    }

    .hamburger {
        display: flex; /* Zeige Hamburger Menü */
    }
}