:root {
	--primary-color: #606060;
	--accent-darkblue: #1177D9;
	--accent-color: #12A2C7;
	--accent-secondary: #4ECDC4;
	--accent-tertiary: #FFE66D;
	--accent-gold: #FDC115;
	--accent-orange: #FC771A;
	--bg-primary: #ffffff;
	--bg-light: #f8f9fa;
	--text-dark: #2c2c2c;
	--shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
	--shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.15);
	--border-radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	background: var(--bg-primary);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
}

.content {
	flex: 1;
	padding: 2rem 1rem;
}

.header {
	text-align: center;
}

.logo {
	padding: 1rem;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	height: auto;
}

.logo:hover {
	transform: translateY(-2px);
}

h1 {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin: 1rem 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
	letter-spacing: -0.02em;
}

.category-title {
	color: var(--primary-color);
	font-size: 1.75rem;
	margin: 2rem 0 1rem 0;
	padding-bottom: 0.5rem;
	text-align: center;
	position: relative;
}

.category-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	height: 3px;
	width: 60%;
	background: linear-gradient(90deg, var(--accent-secondary), var(--accent-tertiary));
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.category-section {
	background: white;
	border-radius: var(--border-radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-medium);
	transition: all 0.3s ease;
	border-left: 5px solid var(--accent-color);
	overflow: hidden;
	position: relative;
}

.category-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary), var(--accent-tertiary));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.category-section:hover::before {
	transform: scaleX(1);
}

.category-section:hover {
	transform: translateY(-2px);
}

.drink-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.2s ease;
}

.drink-item:hover {
	padding-left: 0.5rem;
	background: var(--bg-light);
}

.drink-item:last-child {
	border-bottom: none;
}

.drink-info {
	flex: 1;
}

.drink-name {
	font-weight: 500;
	margin-bottom: 0.25rem;
	font-size: 1.05rem;
}

.drink-description {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 0.25rem;
}

.drink-stock {
	font-size: 0.8rem;
	color: #999;
}

.stock-available {
	color: #28a745;
}

.stock-low {
	color: #ffc107;
}

.stock-out {
	color: #dc3545;
}

.stock-unknown {
	color: #6c757d;
}

.drink-price {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 1.1rem;
	margin-left: 1rem;
}

.no-drinks {
	text-align: center;
	color: #999;
	font-style: italic;
	padding: 2rem;
}

.lead {
	font-size: 1.2rem;
	color: var(--text-dark);
	max-width: 600px;
	margin: 0 auto 1rem auto;
	line-height: 1.7;
}

.email-link {
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.email-link:hover {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
	text-decoration: none;
}

footer {
	background: linear-gradient(135deg, var(--accent-darkblue), var(--accent-color), var(--accent-secondary), var(--accent-tertiary), var(--accent-gold), var(--accent-orange));
	color: white;
	width: 100%;
	margin-top: 50px;
	font-weight: 400;
	text-align: center;
}

.footer-copyright {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 1.5rem;
}

.footer-credit {
	font-size: 0.85rem;
	opacity: 0.8;
	font-style: italic;
}

.social-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 1rem;
}

.social-links a {
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-light);
	display: inline-block;
}

.social-links a:hover {
	text-decoration: none;
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-medium);
}

.social-links img {
	display: block;
	transition: all 0.3s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content>* {
	animation: fadeInUp 0.8s ease forwards;
}

.content>*:nth-child(1) {
	animation-delay: 0.1s;
}

.content>*:nth-child(2) {
	animation-delay: 0.2s;
}

.content>*:nth-child(3) {
	animation-delay: 0.3s;
}

.content>*:nth-child(4) {
	animation-delay: 0.4s;
}

.content>*:nth-child(5) {
	animation-delay: 0.5s;
}

.content>*:nth-child(6) {
	animation-delay: 0.6s;
}

.content>*:nth-child(7) {
	animation-delay: 0.7s;
}

.content>*:nth-child(8) {
	animation-delay: 0.8s;
}

.content>*:nth-child(9) {
	animation-delay: 0.9s;
}

.content>*:nth-child(10) {
	animation-delay: 1.0s;
}

.content>*:nth-child(11) {
	animation-delay: 1.1s;
}

.content>*:nth-child(12) {
	animation-delay: 1.2s;
}

.content>*:nth-child(13) {
	animation-delay: 1.3s;
}

.content>*:nth-child(14) {
	animation-delay: 1.4s;
}

@media (max-width: 768px) {
	.content {
		padding: 1.5rem 1rem;
	}

	h1 {
		font-size: 2rem;
		margin: 1rem 0;
	}

	.category-title {
		font-size: 1.5rem;
	}

	.menu-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.category-section {
		padding: 1rem;
	}

	.drink-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.drink-price {
		margin-left: 0;
		margin-top: 0.5rem;
	}

	.social-links {
		gap: 15px;
	}

	.social-links img {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 480px) {
	.content {
		padding: 1rem 0.5rem;
	}

	h1 {
		font-size: 1.75rem;
	}

	.category-title {
		font-size: 1.3rem;
	}

	.category-section {
		padding: 0.75rem;
	}

	.social-links img {
		width: 40px;
		height: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Mobile category navigation - only visible on mobile */
.mobile-category-nav {
	display: none;
}

@media (max-width: 768px) {
	.mobile-category-nav {
		display: block;
		position: sticky;
		top: 0;
		z-index: 100;
		background: var(--bg-primary);
		padding: 1rem 0 5px 0;
	}

	.mobile-category-nav-toggle {
		width: 100%;
		padding: 0.75rem 1rem;
		background: linear-gradient(135deg, var(--accent-darkblue), var(--accent-color), var(--accent-secondary), var(--accent-tertiary), var(--accent-gold), var(--accent-orange));
		color: white;
		border: none;
		border-radius: 6px;
		font-size: 1rem;
		font-weight: 500;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: all 0.3s ease;
		box-shadow: var(--shadow-light);
	}

	.mobile-category-nav-toggle:active {
		transform: scale(0.98);
	}

	.mobile-category-nav-toggle i {
		transition: transform 0.3s ease;
		margin-left: 0.5rem;
	}

	.mobile-category-nav-toggle.open i {
		transform: rotate(180deg);
	}

	.mobile-category-nav-items {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		border: 1px solid #ddd;
		border-top: none;
		border-radius: 0 0 6px 6px;
		flex-direction: column;
		margin-top: -4px;
		padding: 0.5rem 0;
		box-shadow: var(--shadow-medium);
		z-index: 100;
	}

	.mobile-category-nav-items.open {
		display: flex;
	}

	.mobile-category-nav-items a {
		padding: 0.75rem 1rem;
		color: var(--primary-color);
		text-decoration: none;
		font-size: 0.95rem;
		transition: all 0.2s ease;
		border-left: 3px solid transparent;
	}

	.mobile-category-nav-items a:hover {
		background: #f8f8f8;
		border-left-color: var(--primary-color);
		padding-left: 1.2rem;
	}

	.mobile-category-nav-items a:active {
		background: #e8e8e8;
	}

	.menu-grid {
		margin-top: 1rem;
	}

	.category-section {
		scroll-margin-top: 75px;
	}
}

/* Admin-specific styles */
.category-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin: 2rem 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-color);
}

.category-header-title {
	color: var(--primary-color);
	font-size: 1.75rem;
	margin: 0;
}

.category-actions {
	display: flex;
	gap: 0.5rem;
}

.btn-edit-category,
.btn-remove-category {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 0.5rem;
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	cursor: pointer;
}

.btn-edit-category:hover {
	background: #505050;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.btn-remove-category {
	background: #dc3545;
}

.btn-remove-category:hover {
	background: #c82333;
	transform: translateY(-2px);
}

.btn-remove-category:disabled {
	background: #6c757d;
	cursor: not-allowed;
	opacity: 0.6;
}

.btn-remove-category:disabled:hover {
	background: #6c757d;
	transform: none;
}

.admin-controls {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}

.admin-btn {
	padding: 0.25rem 0.5rem;
	border: none;
	border-radius: 4px;
	font-size: 0.8rem;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

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

.btn-edit-drink:hover {
	background-color: #505050;
	color: white;
	text-decoration: none;
}

.btn-stock-up {
	background-color: #28a745;
	color: white;
}

.btn-stock-up:hover {
	background-color: #218838;
	color: white;
}

.btn-stock-down {
	background-color: #ffc107;
	color: #212529;
}

.btn-stock-down:hover {
	background-color: #e0a800;
	color: #212529;
}

.btn-remove {
	background-color: #dc3545;
	color: white;
}

.btn-remove:hover {
	background-color: #c82333;
	color: white;
}

.alert {
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.admin-header {
	background-color: #f8f9fa;
	padding: 1rem;
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	border-left: 4px solid var(--accent-color);
}

.admin-title {
	color: var(--primary-color);
	margin: 0;
	font-size: 1.5rem;
}

.admin-subtitle {
	color: #6c757d;
	margin: 0.5rem 0 0 0;
	font-size: 0.9rem;
}

.btn-add-drink-link {
	background-color: #28a745;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
	margin-top: 1rem;
	transition: all 0.2s ease;
}

.btn-add-drink-link:hover {
	background-color: #218838;
	color: white;
	text-decoration: none;
}

.btn-add-category-link {
	background-color: #17a2b8;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
	margin-top: 1rem;
	margin-left: 1rem;
	transition: all 0.2s ease;
}

.btn-add-category-link:hover {
	background-color: #138496;
	color: white;
	text-decoration: none;
}

/* Admin responsive styles */
@media (max-width: 768px) {
	.category-header {
		gap: 0.5rem;
		margin: 1.5rem 0 0.75rem 0;
	}

	.category-title {
		font-size: 1.5rem;
	}

	.btn-edit-category,
	.btn-remove-category {
		width: 32px;
		height: 32px;
		font-size: 0.8rem;
	}

	.admin-controls {
		width: 100%;
		justify-content: flex-start;
	}

	.admin-btn {
		flex: 0 0 auto;
		min-width: 70px;
	}

	.btn-add-drink-link,
	.btn-add-category-link {
		display: block;
		width: 100%;
		margin: 0.5rem 0 0 0;
		text-align: center;
	}
}

/* Tablet styles */
@media (max-width: 1024px) {
	.category-header {
		gap: 0.75rem;
	}

	.btn-edit-category,
	.btn-remove-category {
		width: 34px;
		height: 34px;
	}
}