/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap");

/* CSS Variables */
:root {
    --background: hsl(48, 28%, 97%);
    --foreground: hsl(24, 14%, 20%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(24, 14%, 20%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(24, 14%, 20%);
    --primary: hsl(24, 60%, 35%);
    --primary-foreground: hsl(48, 28%, 97%);
    --secondary: hsl(35, 70%, 55%);
    --secondary-foreground: hsl(24, 14%, 20%);
    --muted: hsl(24, 20%, 75%);
    --muted-foreground: hsl(24, 14%, 35%);
    --accent: hsl(35, 70%, 55%);
    --accent-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --border: hsl(24, 20%, 88%);
    --input: hsl(24, 20%, 95%);
    --ring: hsl(24, 60%, 35%);
    --radius: 0.5rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-break: break-word;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
}

p, span, li, a, button, label {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Utility Classes */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-400 {
    min-height: 400px;
}

.min-h-\[600px\] {
    min-height: 600px;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.bg-background {
    background-color: var(--background);
}

.bg-card {
    background-color: var(--card);
}

.bg-primary {
    background-color: var(--primary);
}

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

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

.text-secondary {
    color: var(--secondary);
}

.text-foreground {
    color: var(--foreground);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-accent {
    color: var(--accent);
}

.text-white {
    color: white;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.font-light {
    font-weight: 300;
}

.leading-tight {
    line-height: 1.25;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.text-center {
    text-align: center;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-md {
    max-width: 28rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-20 {
    margin-top: 5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-border {
    border-color: var(--border);
}

.border-primary {
    border-color: var(--primary);
}

.rounded-lg {
    border-radius: var(--radius);
}

.overflow-hidden {
    overflow: hidden;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-85 {
    opacity: 0.85;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-95 {
    opacity: 0.95;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.hover-bg-primary-90:hover {
    background-color: hsl(24, 60%, 35%, 0.9);
}

.hover-bg-primary-5:hover {
    background-color: hsl(24, 60%, 35%, 0.05);
}

.hover-bg-secondary-90:hover {
    background-color: hsl(35, 70%, 55%, 0.9);
}

.hover-bg-gray-100:hover {
    background-color: #f3f4f6;
}

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

.hover-text-primary-80:hover {
    color: hsl(24, 60%, 35%, 0.8);
}

.hover-text-secondary:hover {
    color: var(--secondary);
}

.hover-underline:hover {
    text-decoration: underline;
}

.hover-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transform {
    transform: translateZ(0);
}

.left-50 {
    left: 50%;
}

.translate-x-neg-50 {
    transform: translateX(-50%);
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.w-10 {
    width: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-200 {
    min-height: 200px;
}

.object-cover {
    object-fit: cover;
}

.flex-shrink-0 {
    flex-shrink: 0;
}


.hover-scale-105:hover {
    transform: scale(1.05);
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Background Gradients */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-accent-10 {
    --tw-gradient-from: hsl(35, 70%, 55%, 0.1);
    --tw-gradient-to: hsl(35, 70%, 55%, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent-30 {
    --tw-gradient-from: hsl(35, 70%, 55%, 0.3);
    --tw-gradient-to: hsl(35, 70%, 55%, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-background-80 {
    --tw-gradient-to: hsl(48, 28%, 97%, 0.8);
}

.to-background {
    --tw-gradient-to: var(--background);
}

.from-accent {
    --tw-gradient-from: var(--accent);
    --tw-gradient-to: hsl(35, 70%, 55%, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-secondary {
    --tw-gradient-to: var(--secondary);
}

.from-accent-20 {
    --tw-gradient-from: hsl(35, 70%, 55%, 0.2);
    --tw-gradient-to: hsl(35, 70%, 55%, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-accent-5 {
    --tw-gradient-to: hsl(35, 70%, 55%, 0.05);
}

.from-secondary-20 {
    --tw-gradient-from: hsl(35, 70%, 55%, 0.2);
    --tw-gradient-to: hsl(35, 70%, 55%, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-secondary-5 {
    --tw-gradient-to: hsl(35, 70%, 55%, 0.05);
}

.from-primary-20 {
    --tw-gradient-from: hsl(24, 60%, 35%, 0.2);
    --tw-gradient-to: hsl(24, 60%, 35%, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-primary-5 {
    --tw-gradient-to: hsl(24, 60%, 35%, 0.05);
}

.bg-primary-foreground-10 {
    background-color: hsl(48, 28%, 97%, 0.1);
}

.border-primary-foreground-20 {
    border-color: hsl(48, 28%, 97%, 0.2);
}

/* Responsive */
@media (min-width: 640px) {
    .sm-px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .sm-flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md-hidden {
        display: none;
    }
    .md-flex {
        display: flex;
    }
    .md-h-10 {
        height: 2.5rem;
    }
    .md-w-10 {
        width: 2.5rem;
    }
    .md-text-base {
        font-size: 1rem;
    }
    .md-text-2xl {
        font-size: 1.5rem;
    }
    .md-text-4xl {
        font-size: 2.25rem;
    }
    .md-text-5xl {
        font-size: 3rem;
    }
    .md-text-7xl {
        font-size: 4.5rem;
    }
    .md-min-h-screen {
        min-height: 100vh;
    }
    .md-py-0 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .md-py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .md-py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .md-py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md-gap-12 {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .lg-px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out;
}

/* Hidden utility */
.hidden {
    display: none;
}

@media (min-width: 768px) {
    .hidden.md-flex {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu.hidden {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--foreground);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

/* Buttons */
button {
    cursor: pointer;
    font-family: inherit;
}

/* Menu Hero Image */
.menu-hero-image {
    max-height: 250px;
    width: auto;
}

@media (min-width: 768px) {
    .menu-hero-image {
        max-height: 1000px;
        max-width: 100%;
    }
}

/* Kontakt Hero Image */
.kontakt-hero-image {
    max-height: 250px;
    width: auto;
}

@media (min-width: 768px) {
    .kontakt-hero-image {
        max-height: 800px;
        max-width: 100%;
    }
}

/* Icons */
.icon-clock,
.icon-map,
.icon-phone,
.icon-mail {
    display: inline-block;
}

/* Text sizes for icons */
.text-6xl {
    font-size: 4rem;
    line-height: 1;
}
