@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

body {
	background: #f7f7f7;
	overflow: hidden;
}

.container {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	z-index: 1px;
	position: relative;

}
.logo h1 {
    white-space: nowrap;
}


.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.logo img {
	width: 100%;
}

.menu {
	display: flex;
	flex-direction: column;
	width: 100%;
	grid-area: 1/1/2/2;
	position: relative;
}

.menu a {
	font-family: Raleway, serif;
	color: #333;
	cursor: pointer;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	position: relative;
	text-align: center;
	margin: 1vh auto;
	padding: 2.5vh 0;
	width: 80%;
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(15px);
	border-radius: 5px;
	box-shadow: 1px 1px 0 0 rgba(255, 255, 255, 0.8) inset,
		3px 5px 10px 0 rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: all 0.3s ease;
}

.menu a:hover {
	transform: scale(1.1);
	background: rgba(255, 255, 255, 0.8);
}

.wrapper-images {
	display: flex;
	flex-direction: column;
	height: 150vh;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	opacity: 0.6;
	transform: translate3d(-50%, -50%, 0) rotate(22.5deg);
}

.images-line {
	animation: runner 20s linear infinite;
	display: flex;
	transform: translateX(25%);
}

.images-line .line {
	--tile-margin: 3vw;
	background-position: 50% 50%;
	background-size: cover;
	border-radius: 50%;
	flex: none;
	height: 30vh;
	margin: 3vw;
	width: 30vh;
	position: relative;
}

.images-line .line:after {
	content: "";
	background: inherit;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	top: 3vh;
	position: absolute;
	background-size: cover;
	z-index: -1;
	filter: blur(25px) opacity(0.8);
}

.images-line .line.large {
	border-radius: 20vh;
	width: 100vh;
}

@keyframes runner {
	to {
		transform: translateX(-25%);
	}
}

/* Dropdown Container */
.dropdown {
	position: relative;
	display: inline-block;
	text-align: center;
}

/* Dropdown Button */
.dropbtn {
	font-family: Raleway, serif;
	color: #333;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	margin: 1vh auto 6vh;
	padding: 10px 20px;
	width: 60%;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	box-shadow: 1px 1px 0 0 rgba(255, 255, 255, 0.8) inset,
		3px 5px 10px 0 rgba(9, 9, 9, 0.1);
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.dropbtn:hover {
	transform: scale(1.1);
	background: rgba(13, 12, 12, 0.8);
}

/* Dropdown Content */
.dropdown-content {
	display: none;
	position: absolute;
	min-width: 80px;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
	z-index: 1;
	left: 50%;
	transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: center;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropbtn {
	background-color: #887b7b;
}

/* Gallery Container */
.gallery-container {
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
	height: 100vh;
}

.gallery {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
}

.image {
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

.image img {
	width: 100%;
	height: auto;
	display: block;
}

.image:hover {
	transform: scale(1.05);
}

/* Mokador Text Style */
.logo h1 {
	font-size: 36px;
	color: #8B4513; /* Ngjyra kafe (SaddleBrown) */
	font-family: 'Arial', sans-serif;
	text-transform: uppercase;
	margin: 0;
	padding: 10px 0;
	text-align: center;
} 