/* ========================================
   Tailwind-Replacement: styles.css
   Generiert aus den genutzten Tailwind-Klassen
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Work Sans', sans-serif; color: #1b1c1c; background: #fbf9f8; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; }
h1, h2, h3 { font-family: 'Manrope', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* --- Material Symbols --- */
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* --- Glass Card --- */
.glass-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); }

/* --- Layout --- */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.w-full { width: 100%; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.h-1\.5 { height: 0.375rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.z-50 { z-index: 50; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.overflow-hidden { overflow: hidden; }

/* --- Spacing --- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.p-0 { padding: 0; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-20 { padding-top: 5rem; }

/* --- Max Width --- */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-lg { max-width: 32rem; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.font-headline { font-family: 'Manrope', sans-serif; }
.font-body { font-family: 'Work Sans', sans-serif; }
.font-manrope { font-family: 'Manrope', sans-serif; }
.font-work-sans { font-family: 'Work Sans', sans-serif; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.line-through { text-decoration: line-through; }
.italic { font-style: italic; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* --- Theme Colors --- */
.text-primary { color: #9a4600; }
.text-primary-container { color: #e8792b; }
.text-on-primary { color: #ffffff; }
.text-on-surface { color: #1b1c1c; }
.text-on-surface\/40 { color: rgba(27, 28, 28, 0.4); }
.text-on-surface\/50 { color: rgba(27, 28, 28, 0.5); }
.text-on-surface\/60 { color: rgba(27, 28, 28, 0.6); }
.text-on-surface\/70 { color: rgba(27, 28, 28, 0.7); }
.text-surface { color: #fbf9f8; }
.text-white { color: #ffffff; }
.text-\[\#1b1c1c\] { color: #1b1c1c; }
.text-\[\#1b1c1c\]\/60 { color: rgba(27, 28, 28, 0.6); }
.text-\[\#1b1c1c\]\/70 { color: rgba(27, 28, 28, 0.7); }

/* --- Background Colors --- */
.bg-primary { background-color: #9a4600; }
.bg-primary-container { background-color: #e8792b; }
.bg-surface { background-color: #fbf9f8; }
.bg-surface-container-low { background-color: #f5f3f3; }
.bg-surface-container-lowest { background-color: #ffffff; }
.bg-surface-container-high { background-color: #eae8e7; }
.bg-on-surface { background-color: #1b1c1c; }
.bg-white { background-color: #ffffff; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-\[\#fbf9f8\]\/80 { background-color: rgba(251, 249, 248, 0.8); }
.bg-\[\#f5f3f3\] { background-color: #f5f3f3; }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-primary { --tw-gradient-from: #9a4600; --tw-gradient-to: #9a4600; }
.to-primary-container { --tw-gradient-to: #e8792b; }

/* --- Border --- */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-primary { border-color: #9a4600; }
.border-outline-variant\/10 { border-color: rgba(221, 193, 178, 0.1); }
.border-outline-variant\/20 { border-color: rgba(221, 193, 178, 0.2); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-\[\#1b1c1c\]\/5 { border-color: rgba(27, 28, 28, 0.05); }
.border-\[\#1b1c1c\]\/10 { border-color: rgba(27, 28, 28, 0.1); }

/* --- Border Radius --- */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-bl-2xl { border-bottom-left-radius: 1rem; }

/* --- Shadows --- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-\[0_8px_32px_rgba\(27\,28\,28\,0\.04\)\] { box-shadow: 0 8px 32px rgba(27, 28, 28, 0.04); }

/* --- Opacity --- */
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* --- Backdrop --- */
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* --- Transitions --- */
.transition-all { transition: all 0.15s ease-in-out; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
.transition-shadow { transition: box-shadow 0.15s ease-in-out; }
.transition-transform { transition: transform 0.15s ease-in-out; }
.duration-300 { transition-duration: 300ms; }

/* --- Transforms --- */
.scale-95 { transform: scale(0.95); }

/* --- Hover States --- */
.hover\:text-\[\#9a4600\]:hover { color: #9a4600; }
.hover\:bg-primary:hover { background-color: #9a4600; }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:shadow-primary\/20:hover { box-shadow: 0 20px 25px -5px rgba(154, 70, 0, 0.2), 0 8px 10px -6px rgba(154, 70, 0, 0.2); }

/* --- Active States --- */
.active\:scale-90:active { transform: scale(0.9); }
.active\:scale-95:active { transform: scale(0.95); }

/* --- Group Hover --- */
.group:hover .group-hover\:text-primary { color: #9a4600; }
.group:hover .group-hover\:bg-primary { background-color: #9a4600; }
.group:hover .group-hover\:text-white { color: #ffffff; }

/* --- Details/Accordion --- */
details.group[open] .group-open\:rotate-180 { transform: rotate(180deg); }

/* --- Arbitrary Color Classes --- */
.dark\:text-\[\#fbf9f8\] { }
.dark\:text-\[\#fbf9f8\]\/60 { }
.dark\:text-\[\#fbf9f8\]\/70 { }
.dark\:bg-\[\#1b1c1c\] { }
.dark\:bg-\[\#1b1c1c\]\/80 { }


/* --- Austria Flag --- */
.flag-austria {
	display: inline-block;
	width: 1.6em;
	height: 1.1em;
	vertical-align: middle;
	border-radius: 2px;
	background: linear-gradient(
		to bottom,
		#ed2939 0%, #ed2939 33.3%,
		#fff 33.3%, #fff 66.6%,
		#ed2939 66.6%, #ed2939 100%
	);
	box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}


/* ========================================
   Responsive: md (768px+)
   ======================================== */
@media (min-width: 768px) {
	.md\:flex { display: flex; }
	.md\:hidden { display: none; }
	.md\:flex-row { flex-direction: row; }
	.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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
	.md\:col-span-2 { grid-column: span 2 / span 2; }
	.md\:col-span-3 { grid-column: span 3 / span 3; }
	.md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
	.md\:text-5xl { font-size: 3rem; line-height: 1; }
	.md\:text-7xl { font-size: 4.5rem; line-height: 1; }
	.md\:text-left { text-align: left; }
	.md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
	.md\:px-0 { padding-left: 0; padding-right: 0; }
	.md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
	.md\:p-10 { padding: 2.5rem; }
	.md\:h-20 { height: 5rem; }
	.md\:bg-white { background-color: #ffffff; }
	.md\:rounded-2xl { border-radius: 1rem; }
	.md\:shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
}
