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

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

:root {
	--primary-dark: #ADA587;
	--secondary-dark: #C4B89A;
	--accent-gold: #8B7355;
	--accent-copper: #6B5D4F;
	--text-primary: #2D2520;
	--text-secondary: #4A3F35;
	--text-muted: #6B5D4F;
	--gold-gradient: linear-gradient(135deg, #8B7355 0%, #ADA587 50%, #8B7355 100%);
	--dark-gradient: linear-gradient(135deg, #ADA587 0%, #C4B89A 100%);
	--glass-bg: rgba(255, 255, 255, 0.15);
	--glass-border: rgba(107, 93, 79, 0.25);
	--shadow-elegant: 0 8px 32px rgba(45, 37, 32, 0.2);
	--shadow-gold: 0 8px 32px rgba(139, 115, 85, 0.25);
	--shadow-deep: 0 16px 64px rgba(45, 37, 32, 0.25);
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background: var(--primary-dark);
	overflow-x: hidden;
}

.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: 
		linear-gradient(45deg, transparent 0%, rgba(139, 115, 85, 0.08) 50%, transparent 100%),
		linear-gradient(-45deg, transparent 0%, rgba(196, 184, 154, 0.08) 50%, transparent 100%),
		radial-gradient(circle at 25% 25%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 75% 75%, rgba(107, 93, 79, 0.1) 0%, transparent 50%);
	animation: subtleFloat 30s ease-in-out infinite;
}

@keyframes subtleFloat {
	0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
	25% { transform: translateX(20px) translateY(-20px) rotate(1deg); }
	50% { transform: translateX(-10px) translateY(30px) rotate(-0.5deg); }
	75% { transform: translateX(15px) translateY(-10px) rotate(0.8deg); }
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(107, 93, 79, 0.95);
 	border-bottom: 1px solid rgba(139, 115, 85, 0.4);
	color: #FFFFFF;
	padding: 1rem 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: var(--shadow-elegant);
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Füge dies zu deinem CSS hinzu */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(139, 115, 85, 0.2);
	color: #2D2520;
	padding: 1rem 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 20px rgba(45, 37, 32, 0.1);
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo-img {
	height: 50px;
}

.navbar.hidden {
	transform: translateY(-100%);
	opacity: 0.8;
}

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

.navbar:hover {
	background: rgba(255, 255, 255, 0.98);
	border-bottom-color: rgba(139, 115, 85, 0.3);
}

.logo {
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
	filter: brightness(1);
}

.logo-img {
	height: 80px;
	display: block;
	transition: all 0.3s ease;
}

.logo:hover .logo-img {
	filter: brightness(1.1) drop-shadow(0 0 10px rgba(139, 115, 85, 0.4));
}

.nav-button {
	background: transparent;
	color: #2D2520;
	border: 1px solid transparent;
	padding: 0.8rem 2rem;
	cursor: pointer;
	font-weight: 500;
	text-decoration: none;
	font-size: 0.85rem;
	transition: all 0.3s ease;
	position: relative;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.nav-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gold-gradient);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-button:hover {
	color: #8B7355;
}

.nav-button:hover::before {
	width: 80%;
}

.dropdown-content {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + 15px);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(139, 115, 85, 0.2);
	box-shadow: 0 8px 32px rgba(45, 37, 32, 0.15);
	min-width: 240px;
	overflow: hidden;
	z-index: 1001;
	animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropdown.active .dropdown-content {
	display: block;
}

.dropdown-arrow {
	transition: transform 0.3s ease;
	display: inline-block;
	margin-left: 0.5rem;
	color: #2D2520;
}

.dropdown.active .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-item {
	color: #2D2520;
	padding: 1.2rem 2rem;
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
	position: relative;
	font-size: 0.9rem;
	letter-spacing: 0.3px;
	border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.dropdown-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: var(--gold-gradient);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: bottom;
}

.dropdown-item:hover {
	background: var(--glass-bg);
	color: #8B7355;
	padding-left: 2.5rem;
}

.dropdown-item:hover::before {
	transform: scaleY(1);
}

.hero {
	height: 100vh;
	background: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--text-primary);
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: opacity 1.5s ease-in-out;
	animation: heroZoom 25s ease-in-out infinite;
}

.hero-bg.active {
	opacity: 0.25;
}

.hero-bg:nth-child(1) {
	background-image: url('./img/bg.jpeg');
}

.hero-bg:nth-child(2) {
	background-image: url('./img/bg.jpeg');
}

.hero-bg:nth-child(3) {
	background-image: url('./img/bg.jpeg');
}

.hero-bg:nth-child(4) {
	background-image: url('./img/bg.jpeg');
}

.hero-bg:nth-child(5) {
	background-image: url('./img/bg.jpeg');
}

@keyframes heroZoom {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.08); }
}

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

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(3.5rem, 8vw, 7rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	animation: fadeInUp 1.2s ease 0.5s forwards;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	letter-spacing: -0.02em;
}

.hero p {
	font-size: clamp(1.3rem, 3vw, 2rem);
	margin-bottom: 3.5rem;
	opacity: 0;
	animation: fadeInUp 1.2s ease 0.8s forwards;
	color: var(--text-secondary);
	font-weight: 300;
	letter-spacing: 0.5px;
}

.hero-cta {
	display: inline-flex;
	gap: 2rem;
	opacity: 0;
	animation: fadeInUp 1.2s ease 1.1s forwards;
}

.cta-button {
	padding: 1.2rem 3rem;
	background: var(--primary-dark);
	color: #FFFFFF;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-gold);
}

.cta-button:hover::before {
	left: 100%;
}

.restaurants-section {
	padding: 10rem 3rem;
	background: var(--primary-dark);
	position: relative;
}

.restaurants-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	height: 1px;
	background: var(--gold-gradient);
	opacity: 0.5;
}

.restaurants-section h1 {
	text-align: center;
	color: var(--text-primary);
	margin-bottom: 5rem;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	font-weight: 600;
	position: relative;
	letter-spacing: -0.01em;
}

.restaurants-section h1::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: var(--gold-gradient);
}

.restaurants-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 4rem;
	max-width: 1500px;
	margin: 0 auto;
}

.restaurant-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	transition: all 0.4s ease;
	position: relative;
}

.restaurant-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gold-gradient);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.restaurant-card:hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-deep);
	border-color: rgba(139, 115, 85, 0.4);
}

.restaurant-card:hover::before {
	opacity: 0.12;
}

.card-image {
	height: 280px;
	width: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
	filter: brightness(0.7) contrast(1.1) sepia(0.2);
}

.restaurant-card:hover .card-image {
	filter: brightness(0.85) saturate(1.2) sepia(0.1);
	transform: scale(1.02);
}

.card-content {
	padding: 3rem;
	position: relative;
}

.card-content h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.card-content p {
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.7;
	font-size: 1.05rem;
}

.card-button {
	background: transparent;
	color: var(--accent-copper);
	border: 1px solid var(--accent-copper);
	padding: 1rem 2.5rem;
	cursor: pointer;
	font-weight: 600;
	width: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
}

.card-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #6B5D4F 0%, #8B7355 100%);
	transition: left 0.3s ease;
	z-index: -1;
}

.card-button:hover {
	color: #FFFFFF;
	border-color: var(--accent-copper);
}

.card-button:hover::before {
	left: 0;
}

/* ===== RATING BOX STYLES ===== */
.rating-box {
	margin-top: 2rem;
	padding: 1.5rem;
	background: rgba(139, 115, 85, 0.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(139, 115, 85, 0.25);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.rating-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #FBBC04 0%, #F4B400 50%, #FBBC04 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
	transform-origin: center;
}

.restaurant-card:hover .rating-box {
	background: rgba(139, 115, 85, 0.18);
	border-color: rgba(139, 115, 85, 0.4);
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(251, 188, 4, 0.15);
}

.restaurant-card:hover .rating-box::before {
	transform: scaleX(1);
}

/* ===== RATING BOX STYLES ===== */
.rating-box {
	margin-top: 2rem !important;
	padding: 1.5rem !important;
	background: rgba(139, 115, 85, 0.12) !important;
	backdrop-filter: blur(10px) !important;
	border: 1px solid rgba(139, 115, 85, 0.25) !important;
	border-radius: 4px !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 1rem !important;
	transition: all 0.4s ease !important;
	position: relative !important;
	overflow: hidden !important;
}

.rating-box::before {
	content: '' !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 3px !important;
	background: linear-gradient(90deg, #FBBC04 0%, #F4B400 50%, #FBBC04 100%) !important;
	transform: scaleX(0) !important;
	transition: transform 0.4s ease !important;
	transform-origin: center !important;
}

.restaurant-card:hover .rating-box {
	background: rgba(139, 115, 85, 0.18) !important;
	border-color: rgba(139, 115, 85, 0.4) !important;
	transform: translateY(-5px) !important;
	box-shadow: 0 8px 24px rgba(251, 188, 4, 0.15) !important;
}

.restaurant-card:hover .rating-box::before {
	transform: scaleX(1) !important;
}

.about-section {
	padding: 10rem 3rem;
	background: linear-gradient(135deg, #C4B89A 0%, #ADA587 100%);
	position: relative;
}

.about-container {
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}

.about-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.8rem, 6vw, 4rem);
	color: var(--text-primary);
	margin-bottom: 3.5rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.about-content p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 3.5rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
}

.company-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4rem;
	margin: 6rem 0;
	padding: 4rem;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-elegant);
}

.stat-item {
	text-align: center;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold-gradient);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.15);
}

.stat-item:hover::before {
	transform: scaleX(1);
}

.stat-item h3 {
	font-family: 'Playfair Display', serif;
	font-size: 4.5rem;
	background: linear-gradient(135deg, #6B5D4F 0%, #8B7355 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	font-weight: 700;
	animation: countUp 2s ease-out;
}

@keyframes countUp {
	from {
		transform: scale(0);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.stat-item p {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.management-section {
	padding: 10rem 3rem;
	background: var(--primary-dark);
	min-height: 100vh;
}

.section-title {
	text-align: center;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.8rem, 6vw, 4rem);
	color: var(--text-primary);
	margin-bottom: 6rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.management-container {
	max-width: 1400px;
	margin: 0 auto;
}

.manager-wrapper {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.managers-row {
	display: flex;
	gap: 8rem;
	justify-content: center;
	align-items: flex-start;
}

.manager-item {
	flex: 1;
	max-width: 500px;
	display: flex; /* Wichtig für gleiche Höhe */
	flex-direction: column;
}

.manager-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	text-align: center;
	padding: 3.5rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	height: 100%; /* Nimmt volle Höhe des Containers */
	display: flex;
	flex-direction: column;
}

.manager-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gold-gradient);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.manager-card.hover-disabled:hover {
	transform: none;
}
.manager-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(45, 37, 32, 0.15);
}

.manager-card p {
	color: var(--text-secondary);
	line-height: 1.8;
	font-size: 1.05rem;
	margin-bottom: 2rem;
	font-weight: 300;
	flex-grow: 1; /* Text nimmt verfügbaren Platz */
}

.manager-card .card-button {
	margin-top: auto; /* Button bleibt unten */
}
.manager-photo {
	width: 200px;
	height: 100px;
	background: linear-gradient(135deg, #6B5D4F 0%, #8B7355 100%);
	margin: 0 auto 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-size: 4.5rem;
	font-weight: 800;
	box-shadow: var(--shadow-gold);
	transition: all 0.4s ease;
	font-family: 'Playfair Display', serif;
}
.manager-photo img {
	border-radius: 12px; /* Auch das Bild selbst abrunden */
}
.manager-card:hover .manager-photo {
	transform: scale(1.05);
	box-shadow: 0 16px 48px rgba(139, 115, 85, 0.4);
}

.manager-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.manager-card p {
	color: var(--text-secondary);
	line-height: 1.8;
	font-size: 1.05rem;
	margin-bottom: 2rem;
	font-weight: 300;
}

/* ===== CV CONTAINER - NEW BLOCK DESIGN ===== */
.cv-container {
	max-width: 900px;
	margin: 2rem auto 0;
	position: relative;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.6s ease, opacity 0.6s ease, margin-top 0.6s ease;
	padding: 0;
}

.cv-container.show {
	opacity: 1 !important;
	margin-top: 2rem;
}

/* CV Section Blocks */
.cv-section {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(15px);
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-elegant);
	transition: all 0.4s ease;
}

.cv-section:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-deep);
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(139, 115, 85, 0.3);
}

.cv-section:last-child {
	margin-bottom: 0;
}

.cv-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Playfair Display', serif;
	border-bottom: 2px solid var(--accent-gold);
	padding-bottom: 0.8rem;
}

.cv-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cv-list li {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.95rem;
	font-weight: 300;
}

.cv-list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--accent-gold);
	font-weight: bold;
	font-size: 1.2rem;
}

.cv-list li:last-child {
	margin-bottom: 0;
}

.cv-list li strong {
	color: var(--text-primary);
	font-weight: 600;
}

@media (max-width: 928px) {
	.cv-section {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.cv-section-title {
		font-size: 1.3rem;
	}

	.cv-list li {
		font-size: 0.9rem;
		padding-left: 1.2rem;
	}
}

/* ===== TABLET RESPONSIVE (768px - 1065px) ===== */
@media (min-width: 769px) and (max-width: 1065px) {
	/* Management Section Anpassungen */
	.managers-row {
		gap: 3rem;
		flex-wrap: wrap;
	}
	
	.manager-item {
		max-width: 450px;
		flex: 1 1 calc(50% - 1.5rem);
		min-width: 350px;
	}
	
	.manager-card {
		padding: 2.5rem;
	}
	
	.manager-card h3 {
		font-size: 1.8rem;
	}
	
	.manager-card p {
		font-size: 0.95rem;
	}
	
	/* CV Container Anpassungen */
	.cv-container {
		max-width: 100%;
		padding: 0 1rem;
	}
	
	.cv-section {
		padding: 1.5rem;
	}
	
	.cv-section-title {
		font-size: 1.3rem;
	}
	
	.cv-list li {
		font-size: 0.9rem;
	}
	
	/* Restaurant Cards */
	.restaurants-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
	
	.restaurant-card {
		margin: 0;
	}
	
	/* About Section */
	.company-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
		padding: 2.5rem;
	}
	
	/* Navigation */
	.navbar {
		padding: 1rem 2.5rem;
	}
	
	.logo-img {
		height: 65px;
	}
	
	/* Section Padding */
	.management-section,
	.restaurants-section,
	.about-section {
		padding: 8rem 2.5rem;
	}
	
	.section-title {
		margin-bottom: 4rem;
		font-size: clamp(2.2rem, 5vw, 3.2rem);
	}
}

/* Spezielle Anpassung für den oberen Tablet-Bereich */
@media (min-width: 950px) and (max-width: 1065px) {
	.managers-row {
		gap: 4rem;
	}
	
	.manager-item {
		max-width: 480px;
	}
}

.nav-mobile {
	display: none;
}

.burger-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.burger-menu span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--gold-gradient);
	transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-item {
	padding: 1.8rem 0;
	color: #E0E0E0;
	text-decoration: none;
	font-size: 0.9rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mobile-menu-item::before {
	content: '';
	position: absolute;
	left: -3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: var(--gold-gradient);
	transition: height 0.3s ease;
}

.mobile-menu-item:hover {
	color: #FFFFFF;
	padding-left: 1.5rem;
}

.mobile-menu-item:hover::before {
	height: 60%;
}

.mobile-restaurants {
	padding-left: 2rem;
}

.mobile-only {
	display: none;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.suppliers-section {
	padding: 10rem 3rem;
	background: linear-gradient(135deg, #C4B89A 0%, #ADA587 100%);
	position: relative;
	overflow: hidden;
}

.suppliers-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	height: 1px;
	background: var(--gold-gradient);
	opacity: 0.5;
}

.suppliers-container {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.suppliers-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.8rem, 6vw, 4rem);
	color: var(--text-primary);
	margin-bottom: 3.5rem;
	font-weight: 600;
	position: relative;
	letter-spacing: -0.01em;
}

.suppliers-title::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: var(--gold-gradient);
}

.suppliers-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
}

.slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 3rem 0;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(15px);
	border: 1px solid var(--glass-border);
}

.slider-track {
	display: flex;
	animation: slide 35s linear infinite;
	gap: 5rem;
	align-items: center;
	width: max-content;
}

.slider-container:hover .slider-track {
	animation-play-state: paused;
}

.supplier-logo {
	flex-shrink: 0;
	width: 200px;
	height: 140px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.supplier-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gold-gradient);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.supplier-logo:hover {
	transform: translateY(-12px) scale(1.05);
	box-shadow: var(--shadow-gold);
	border-color: rgba(139, 115, 85, 0.4);
}

.supplier-logo:hover::before {
	opacity: 0.12;
}

.supplier-logo img {
	width: 75%;
	height: 75%;
	object-fit: contain;
	filter: brightness(0.7) contrast(1.1) sepia(0.25) hue-rotate(15deg);
	transition: all 0.3s ease;
	z-index: 1;
	position: relative;
}

.supplier-logo:hover img {
	filter: brightness(0.85) contrast(1.2) sepia(0.15) hue-rotate(10deg);
}

.logo-placeholder {
	color: var(--text-secondary);
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	z-index: 1;
	position: relative;
	letter-spacing: 0.3px;
}

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

@keyframes slide {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.footer {
	background: rgba(255, 255, 255, 0.95);
	color: #2D2520;
	padding: 4rem 0 0;
	border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
}

.footer-row {
	display: flex;
	justify-content: space-between;
	gap: 4rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.footer-col {
	flex: 1;
	min-width: 200px;
}

.footer-col h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: #2D2520;
	font-weight: 600;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col li {
	margin-bottom: 0.8rem;
}

.footer-col a {
	color: #4A3F35;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.footer-col a:hover {
	color: #8B7355;
}

.footer-col span {
	color: #4A3F35;
	font-size: 0.95rem;
	display: block;
	margin-bottom: 0.5rem;
}

.footer-bar {
	text-align: center;
	padding: 2rem 0;
	font-size: 0.9rem;
	color: #6B5D4F;
}

.footer-bar a {
	color: #8B7355;
	text-decoration: none;
	font-weight: 500;
}

.footer-bar a:hover {
	text-decoration: underline;
}

.social-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.footer-logo img {
	height: 100px;
	width: auto;
	transition: transform 0.3s ease;
}

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

.footer-social {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.footer-social a {
	transition: transform 0.3s ease, opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social a:hover {
	transform: translateY(-5px);
	opacity: 0.8;
}

.footer-social svg {
	width: 35px;
	height: 35px;
}
.floating-elements {
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	z-index: 1000;
}

.scroll-to-top {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #6B5D4F 0%, #8B7355 100%);
	color: #FFFFFF;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-gold);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	transform: translateY(-4px) scale(1.1);
	box-shadow: 0 12px 48px rgba(139, 115, 85, 0.4);
}

.particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgba(139, 115, 85, 0.4);
	animation: float 8s infinite ease-in-out;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
		opacity: 0;
	}
	50% { opacity: 1; }
	100% {
		transform: translateY(-100vh) rotate(360deg);
		opacity: 0;
	}
}

#lebenslauf {
	overflow: hidden;
	transition: max-height 0.8s ease, opacity 0.6s ease;
	max-height: 0;
	opacity: 0;
}

#lebenslauf.show {
	max-height: 6000px;
	opacity: 1;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--gold-gradient);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-copper);
}

@media (min-width: 929px) {
	.cv-container.desktop-visible {
		display: block;
		opacity: 1;
		max-height: none;
		overflow: visible;
		margin-top: 3rem;
	}

	.cv-container.desktop-visible .skill-progress {
		animation: fillBar 2.5s ease forwards;
	}

	.cv-container.desktop-visible .skill-progress[data-width="85"] { width: 85%; }
	.cv-container.desktop-visible .skill-progress[data-width="60"] { width: 60%; }
	.cv-container.desktop-visible .skill-progress[data-width="75"] { width: 75%; }
	.cv-container.desktop-visible .skill-progress[data-width="80"] { width: 80%; }
	.cv-container.desktop-visible .skill-progress[data-width="90"] { width: 90%; }
	.cv-container.desktop-visible .skill-progress[data-width="95"] { width: 95%; }
}

@keyframes fillBar {
	from { width: 0; }
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
}

.modal-content {
	background: var(--primary-dark);
	margin: 5% auto;
	padding: 3rem;
	border: 1px solid var(--glass-border);
	width: 90%;
	max-width: 700px;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: var(--shadow-deep);
	transform: scale(0.9) translateY(-30px);
	opacity: 0;
	transition: all 0.3s ease;
}

.modal.show .modal-content {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.close {
	color: var(--text-muted);
	float: right;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s;
}

.close:hover {
	color: var(--accent-copper);
}

.modal h2 {
	color: var(--text-primary);
	margin-bottom: 2rem;
	font-size: 1.8rem;
	font-family: 'Playfair Display', serif;
}

.modal ul {
	margin-left: 25px;
	margin-bottom: 20px;
}

.modal li {
	margin-bottom: 8px;
	color: var(--text-secondary);
}

.flow-node.active {
	background: var(--gold-gradient);
	color: #FFFFFF;
	transform: translateY(-12px) scale(1.03);
}

.node-connector {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 2px;
	background: var(--gold-gradient);
	transform: translateY(-50%);
	z-index: 2;
}

.flow-step:nth-child(odd) .node-connector {
	right: -40px;
}

.flow-step:nth-child(even) .node-connector {
	left: -40px;
}

.active .node-title,
.active .node-content {
	color: #FFFFFF;
}

.active .skill-bar {
	background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
	.nav-desktop { display: none; }
	.nav-mobile { display: block; }
	.navbar { padding: 1rem 2rem; }
	.logo-img { height: 70px; }
	.restaurants-grid { grid-template-columns: 1fr; gap: 3rem; }
	.management-container { grid-template-columns: 1fr; gap: 3rem; }
	.company-stats { grid-template-columns: 1fr; gap: 3rem; padding: 3rem; }
	.hero-cta { flex-direction: column; align-items: center; gap: 1.5rem; }
	.managers-row { flex-direction: column; gap: 3rem; }
	.manager-item { max-width: none; }
	.suppliers-section { padding: 6rem 2rem; }
	.supplier-logo { width: 160px; height: 120px; }
	.slider-track { gap: 3rem; }
	.cv-container { padding: 0 15px; }
	.timeline-line { left: 40px; transform: none; }
	.flow-step:nth-child(even) .flow-node,
	.flow-step:nth-child(odd) .flow-node {
		margin-left: 80px;
		margin-right: 0;
		width: calc(100% - 100px);
	}
	.timeline-indicator,
	.timeline-indicator1 {
		position: static;
		display: inline-block;
		margin-bottom: 1rem;
		transform: none;
	}
	.timeline-dot { left: 40px; display: none; }
	.flow-node { padding: 25px; }
}

@media (max-width: 928px) {
	.mobile-only { display: block; width: 100%; margin-top: 2rem; }
	.timeline-line { left: 30px; }
}

@media (max-width: 850px) {
	.footer-row { flex-direction: column; align-items: stretch; gap: 2.5rem; border-bottom: none; }
	.footer-col { max-width: none; margin-bottom: 1.5rem; }
	.footer-bar { margin-top: 2rem; }
	.footer-logo img { height: 75px; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
	.mobile-menu { width: 320px; }
	.navbar { padding: 1rem 1.5rem; }
	.manager-card, .restaurant-card { margin: 0 1rem; }
	.supplier-logo { width: 140px; height: 100px; }
	.slider-track { gap: 2rem; }
	.flow-node { padding: 20px; }
	.timeline-line { left: 25px; }
	.timeline-dot { left: 25px; }
	.flow-step:nth-child(even) .flow-node,
	.flow-step:nth-child(odd) .flow-node {
		margin-left: 65px;
		width: calc(100% - 80px);
	}
}

::selection {
	background: rgba(139, 115, 85, 0.3);
	color: var(--text-primary);
}

::-moz-selection {
	background: rgba(139, 115, 85, 0.3);
	color: var(--text-primary);
}

.nav-button:focus,
.cta-button:focus,
.card-button:focus {
	outline: 2px solid var(--accent-copper);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (prefers-contrast: high) {
	:root {
		--text-primary: #000000;
		--text-secondary: #2D2520;
		--accent-gold: #8B7355;
	}
}

@media print {
	.navbar, .floating-elements, .mobile-menu, .mobile-overlay, .animated-bg {
		display: none !important;
	}
	body { background: white !important; color: black !important; }
	.hero, .restaurants-section, .about-section, .management-section, .suppliers-section {
		background: white !important;
		color: black !important;
	}
}

html {
	scroll-behavior: smooth;
}

.text-gradient {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.glass-effect {
	background: var(--glass-bg);
	backdrop-filter: blur(15px);
	border: 1px solid var(--glass-border);
}

.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.shadow-deep { box-shadow: var(--shadow-deep); }

.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 350px;
	height: 100%;
	background: rgba(107, 93, 79, 0.98);
	backdrop-filter: blur(20px);
	border-left: 1px solid var(--glass-border);
	z-index: 999;
	padding: 130px 3rem 4rem 3rem;
	transition: right 0.3s ease;
	overflow-y: auto;
}

/* Thai für Dihei Banner Styles */
.thai-dihei-banner {
	grid-column: span 2;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	padding: 2rem 2.5rem;
	text-decoration: none;
	color: inherit;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.thai-dihei-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gold-gradient);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.thai-dihei-banner:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-deep);
	border-color: rgba(139, 115, 85, 0.4);
}

.thai-dihei-banner:hover::before {
	opacity: 0.15;
}

.banner-content {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.banner-icon {
	font-size: 2.5rem;
	flex-shrink: 0;
	filter: grayscale(0.3) sepia(0.2);
	transition: all 0.3s ease;
}

.thai-dihei-banner:hover .banner-icon {
	transform: scale(1.1);
	filter: grayscale(0) sepia(0);
}

.banner-text {
	flex: 1;
}

.banner-text h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.banner-text p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
	margin: 0;
}

.banner-arrow {
	font-size: 2rem;
	color: var(--accent-copper);
	flex-shrink: 0;
	transition: all 0.3s ease;
	font-weight: 300;
}

.thai-dihei-banner:hover .banner-arrow {
	transform: translateX(8px);
	color: var(--accent-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.thai-dihei-banner {
		grid-column: span 1;
		padding: 2rem 1.5rem;
	}
	
	.banner-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}
	
	.banner-icon {
		font-size: 3rem;
	}
	
	.banner-text h3 {
		font-size: 1.6rem;
	}
	
	.banner-text p {
		font-size: 1rem;
	}
	
	.banner-arrow {
		transform: rotate(90deg);
		font-size: 2rem;
	}
	
	.thai-dihei-banner:hover .banner-arrow {
		transform: rotate(90deg) translateX(10px);
	}
}
/* Sehr kleine Bildschirme: 340px - 410px */
@media (max-width: 410px) {
	/* Navigation */
	.navbar { 
		padding: 0.75rem 1rem;
	}
	.logo-img { 
		height: 50px;
	}
	.navbar.scrolled .logo-img {
		height: 40px;
	}
	.mobile-menu { 
		width: 90vw;
		max-width: 300px;
		padding: 100px 1.5rem 2.5rem 1.5rem;
	}
	.mobile-menu-item {
		padding: 0.9rem 1rem;
		font-size: 0.9rem;
	}
	.burger-menu {
		width: 28px;
	}
	.burger-menu span {
		height: 2px;
	}

	/* Hero Section */
	.hero {
		min-height: 100vh;
	}
	.hero-content {
		padding: 0 1rem;
	}
	.hero h1 {
		font-size: clamp(2rem, 12vw, 3rem);
		margin-bottom: 1rem;
		letter-spacing: -0.01em;
	}
	.hero p {
		font-size: clamp(1rem, 5vw, 1.2rem);
		margin-bottom: 2rem;
		padding: 0 0.5rem;
	}
	.hero-cta {
		gap: 1rem;
		width: 100%;
		padding: 0 1rem;
	}
	.cta-button {
		padding: 0.9rem 1.5rem;
		font-size: 0.8rem;
		width: 100%;
		max-width: 260px;
	}

	/* Restaurant Section */
	.restaurants-section {
		padding: 5rem 1rem;
	}
	.restaurants-section h1 {
		font-size: clamp(1.8rem, 10vw, 2.5rem);
		margin-bottom: 2.5rem;
		padding: 0 0.5rem;
	}
	.restaurants-section h1::after {
		width: 60px;
		height: 2px;
	}
	.restaurants-grid {
		gap: 2rem;
	}
	.restaurant-card {
		margin: 0;
		padding: 1.8rem 1.2rem;
	}
	.restaurant-title {
		font-size: 1.4rem;
		margin-bottom: 0.8rem;
	}
	.restaurant-description {
		font-size: 0.85rem;
		margin-bottom: 1.5rem;
		line-height: 1.5;
	}
	.card-button {
		padding: 0.8rem 1.5rem;
		font-size: 0.8rem;
	}

	/* Thai Dihei Banner */
	.thai-dihei-banner {
		padding: 1.5rem 1rem;
	}
	.banner-content {
		gap: 1rem;
	}
	.banner-icon {
		font-size: 1.8rem;
	}
	.banner-text h3 {
		font-size: 1.2rem;
	}
	.banner-text p {
		font-size: 0.8rem;
		line-height: 1.5;
	}
	.banner-arrow {
		font-size: 1.5rem;
	}

	/* About Section */
	.about-section {
		padding: 5rem 1rem;
	}
	.about-section h1 {
		font-size: clamp(1.8rem, 10vw, 2.5rem);
		margin-bottom: 2rem;
		padding: 0 0.5rem;
	}
	.about-content {
		font-size: 0.9rem;
		line-height: 1.6;
		padding: 0;
	}
	.about-content p {
		margin-bottom: 1.2rem;
	}

	/* Management Section */
	.management-section {
		padding: 5rem 1rem;
	}
	.section-title {
		font-size: clamp(1.8rem, 10vw, 2.5rem);
		margin-bottom: 2.5rem;
		padding: 0 0.5rem;
	}
	.manager-card {
		margin: 0;
		padding: 1.8rem 1.2rem;
	}
	.manager-image {
		width: 100px;
		height: 100px;
		margin-bottom: 1.2rem;
	}
	.manager-name {
		font-size: 1.4rem;
		margin-bottom: 0.5rem;
	}
	.manager-role {
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}
	.manager-description {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	.read-more-btn {
		padding: 0.7rem 1.3rem;
		font-size: 0.75rem;
		margin-top: 1rem;
	}

	/* Timeline/CV */
	.cv-container {
		padding: 0 0.5rem;
	}
	.timeline-line {
		left: 20px;
	}
	.timeline-dot {
		left: 20px;
		width: 10px;
		height: 10px;
	}
	.flow-step:nth-child(even) .flow-node,
	.flow-step:nth-child(odd) .flow-node {
		margin-left: 50px;
		width: calc(100% - 60px);
	}
	.flow-node {
		padding: 15px;
	}
	.node-title {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	.node-content {
		font-size: 0.8rem;
		line-height: 1.5;
	}
	.timeline-indicator,
	.timeline-indicator1 {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

	/* Company Stats */
	.company-stats {
		padding: 2rem 1rem;
		gap: 1.5rem;
	}
	.stat-item {
		padding: 1.5rem 1rem;
	}
	.stat-item h3 {
		font-size: 1.8rem;
		margin-bottom: 0.5rem;
	}
	.stat-item p {
		font-size: 0.85rem;
	}

	/* Footer */
	.footer-container {
		padding: 2.5rem 1rem 1.5rem;
	}
	.footer-row {
		gap: 2rem;
	}
	.footer-col {
		padding: 0;
	}
	.footer-col h3 {
		font-size: 1rem;
		margin-bottom: 0.8rem;
	}
	.footer-col ul {
		gap: 0.4rem;
	}
	.footer-col li,
	.footer-col span,
	.footer-col a {
		font-size: 0.8rem;
		line-height: 1.5;
	}
	.footer-logo img {
		height: 55px;
	}
	.footer-social {
		gap: 0.8rem;
	}
	.footer-social svg {
		width: 35px;
		height: 35px;
	}
	.footer-bar {
		font-size: 0.7rem;
		padding: 0.8rem 0;
		margin-top: 1.5rem;
	}

	/* Suppliers Section */
	.suppliers-section {
		padding: 4rem 1rem;
	}
	.supplier-logo {
		width: 120px;
		height: 90px;
	}
	.slider-track {
		gap: 1.5rem;
	}
}