* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: #262626;
	font-family: arial, sans-serif;
}

p {
	font-size: 30px;
	color: #b8997a;
	margin: 0;
	padding: 0;
	cursor: default;
}

nav {

	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 30px 140px 0 0;
}

nav a {
	text-decoration: none;
	font-size: 23px;
	padding: 10px 15px;
	color: #ffffff;
	transition: scale .15s ease-out, color .15s ease-out;
}

nav a:hover {
	color: #b8997a;
	scale: 1.05;
}

main {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px;
	height: auto;
}

.div1 {
	display: flex;
	border: 1px solid #b8997a;
	justify-content: center;
	margin: 20px;
	flex-direction: column;
	align-items: center;
	width: 30%;
	height: 30%;
}

.div1 svg {
	margin: 20px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.div1 p {
	margin: 25px;
}

.button {
	border: 1px solid #b8997a;
	background-color: rgba(201, 179, 156, 0.4);
	padding: 10px 30px;
	cursor: pointer;
	margin-bottom: 10px;
	color: #dbccbd;
	font-size: 60px;
}

.button:hover {
	background-color: #b8997a;
}

.hr {
	background-color: #b8997a;
	margin: 10px 20px 10px 20px;
	border: none;
	height: 1px;
	width: 70%;
}
footer {
	margin: 20px;
	padding: 0;
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
	/* barazlargim horizontal */
	align-items: center;
	/* rreshtim vertikal */
	color: #ffffff;
}

.divend {
	border: 1px solid #b8997a;
	padding: 10px;
	flex: 1;
	/* të tre marrin të njëjtën gjerësi */
	margin: 0 10px;
}

footer ul {
	display: block;
	cursor: default;
}
footer li {
	color: #b8997a;
	font-size: 17px;
	padding: 25px 10px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
footer h3 {
	text-align: center;
	color: #b8997a;
	font-size: 25px;
	cursor: default;
}
footer a {
	text-decoration: none;
	color: #b8997a;
	padding: 10px;
}
footer a:hover {
	color: #ecd4bb;
}

.credits {
	margin: 5px 0 5px 20px;
}

.credits p {
	font-size: 15px;
	color: #ffffff;
	font-family: georgia, sans-serif;
	text-align: center;
}
.burger{
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 10000;
	top: 20px;
	left: 20px;
}
.burger span{
	width: 35px;
	height: 4px;
	margin: 5px 0;
	background-color: #b8997a;
	border-color: #b8997a;
	transition: 0.4s;
}
.side-menu{
    position:fixed;
    top:0;
    left:-250px;
    width:250px;
    height:100%;
    background-color:#1c1c1c;
    display:flex;
	flex-direction: column;
    padding-top:80px;
    transition:0.4s ease;
	z-index: 9999;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.side-menu a{
    color:#b8997a;
    text-decoration:none;
    padding:15px 30px;
    font-size:18px;
    transition:0.3s;
}
.side-menu a:hover{
    background:#333;
}
.side-menu.active{
    left:0;
}
.menu-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}
.menu-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* Language Toggle */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: #1c1c1c;
    border: 1px solid #b8997a;
    border-radius: 4px;
    padding: 5px 10px;
    display: flex;
    gap: 5px;
}
.lang-option {
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}
.lang-option:hover {
    color: #b8997a;
}
.lang-option.active {
    color: #b8997a;
}

@media (max-width: 420px) {
	nav {
		display: none;
	}
	main {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;

	}

	.div1 {
		position: relative;
		margin: 0;
		width: auto;
		height: auto;
		gap: 10px;
		padding: 10px;
		text-align: center;
		height: 100%;
		transition: background .2s ease-in;
	}

	.div1:hover {
		background-color: rgba(184, 153, 122, 0.15);
	}

	.div1 svg {
		width: 50px;
		height: auto;
		margin: 8px 0;
	}

	.button {
		padding: 0 15px;
		font-size: 45px;
		line-height: 40px;
		margin: 0;
		position: absolute;
		left: 50%;
		bottom: 12px;
		transform: translateX(-50%);
	}

	p {
		font-size: 18px;
		margin: 0 0 48px !important;
	}

	footer {
		flex-direction: column;
		justify-content: unset;
		align-items: unset;
	}

	footer svg {
		width: 60px !important;
		height: auto;
	}

	.divend {
		margin: 20px;
		padding: 0;
		border-radius: 2%;
	}

	footer h3 {
		margin: 16px 0;
	}

	footer ul {
		padding: 10px 24px !important;
	}

	footer li {
		padding: 0;
		justify-content: unset;
	}

	footer .divend:nth-child(2) li {
		margin-left: 48px;
	}
	.burger{
		display: flex;
	}
}