@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Helvetica Neue',Arial, sans-serif; 
	font-size: 12pt;
	background: linear-gradient(to bottom, #6B9071 0%, #6B9071 70%, #E3EED4 100%);
	color: white;
	}

nav {
	background: none;
	padding: 0px 10px;
}

nav ul {
	list-style:none; 
	display: flex;
	justify-content: center;
	gap: 25px;
	margin:0; 
	padding:0;
}

nav ul li { 
	margin: 7px;
}

nav a {
	position: relative;
	text-decoration: none;
	color: #E3EED4;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 5px 0;
	transition: color 0.3s ease;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -3px;
	width: 0;
	height: 2px;
	background: #6B9071;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

nav a:hover {
	color: #6B9071;
}

nav a:hover::after {
	width: 100%;
}


.hero {
	height: 90vh;
	background: url("Bilder/headerPic1.webp");
	background-size: cover;
	background-position: center 20%;
	position: relative;
}

.hero-overlay {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.30) 35%,
		rgba(0, 0, 0, 0.18) 100%
	);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.hero-content {
	text-align: center;
	margin-bottom: 50px;
}

.hero h1,
.shop-hero h1,
.about-hero h1,
.contact-hero h1{
	font-size: 35px;
	letter-spacing: 10px;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 10px;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
}

/* Här börjar "korta sammanfattnings" texten */
.intro {
	text-align: center;
	padding: 70px 20px 30px 20px;
}

.intro h2 {
	font-size: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.intro p {
	line-height: 1.8;
	margin-bottom: 15px;
}


.text-link {
	display: inline-block;
	margin-top: 10px;
	font-size: 15px;
	font-weight: 500;
	font-style: oblique;
	letter-spacing: 1px;
	color: #E3EED4;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.text-link:hover {
	opacity: 0.7;
}

.text-link::after {
	content: " >";
	transition: transform 0.3s ease;
	display: inline-block;
}

.text-link:hover::after {
	transform: translate(4px);
}

/*Här börjar Exemplar Produkter*/
.product-title {
	text-align: center;
	font-size: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 20px;
}

.container.narrow {
	max-width: 700px;
	text-align: center;
}

.products {
	text-align: center;
}

.products::before {
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	margin: 0px auto 80px auto;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
	text-align: center;
}

.product img {
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
}

.product h3 {
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 500;
	margin-bottom: 6px;
}

.product p {
	font-size: 13px;
	color: white;
}

.product img {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.product:hover img {
	transform: scale(1.05);
	opacity: 0.9;
}

.view-all-btn {
	display: inline-block;
	margin-top: 25px;
	padding: 12px 28px;
	background-color: #6B9071;
	color: white;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: none;
	border-radius: 0px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.view-all-btn:hover {
	background-color: #5A7A60;
}

.section-line {
	display: block;
	width: 90%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	margin: 50px auto 0 auto;
}

/* Footer delen */

.site-footer {
	padding: 60px 20px 30px 20px;
	position: relative;
}

.footer-socials {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-bottom: 40px;
}

.footer-socials img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	opacity: 0.9;
	transition: all 0.3s ease;
}

.footer-socials a:hover img {
	opacity: 0.6;
	transform: translateY(-2px);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	font-size: 11px;
	color: black;
}

.admin-icon img {
	width: 18px;
	height: 18px;
	opacity: 0.3;
	transition: opacity 0.3s ease;
}

.admin-icon:hover img {
	opacity: 1;
	transform: scale(1.1);
}


/* Övriga Kommentarer*/

/*

*/

/*SHOP CSS BÖRJAR HÄR*/

/* Butik header */
.shop-hero {
	height: 55vh;
	background: url("Bilder/headerPic2.webp")no-repeat;
	background-size: cover;
	background-position: center 45%;
	position: relative;
}

/* Shop intro */
.shop-intro {
	text-align: center;
	padding: 70px 20px 30px 20px;
}

.shop-intro h2 {
	font-size: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.shop-intro p {
	line-height: 1.8;
	margin-bottom: 15px;
}

/* Shop products */
.shop-products {
	text-align: center;
}

.shop-products::before {
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	margin: 0 auto 80px auto;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
	text-align: center;
}

.shop-grid p {
	grid-column: 1 / -1;
	text-align: center;
	font-size: 16px;
	color: #E3EED4;
}

.shop-product a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.shop-product {
	cursor: pointer;
}

.shop-product img {
	width: 100%;
	max-width: 195px;
	height: 195px;
	object-fit: cover;
	margin-bottom: 20px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.shop-product:hover img {
	transform: scale(1.05);
	opacity: 0.9;
}

.shop-product h3 {
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: 500;
	margin-bottom: 6px;
	color: white;
}


/* BUTIK DETALJER CSS BÖRJAR HÄR*/

.details-section {
	padding: 80px 20px;
}

.details-section::before {
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	margin: 0 auto 80px auto;
}

.details-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.details-image {
	text-align: center;
}

.details-image img {
	width: 100%;
	max-width: 450px;
	height: auto;
	object-fit: cover;
}

.details-text h2 {
	font-size: 28px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.details-date {
	margin-bottom: 15px;
	line-height: 1.6;
	color: #E3EED4;
}

.details-price {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #E3EED4;
}

.details-description {
	line-height: 1.8;
	margin-bottom: 30px;
	max-width: 500px;
}

.details-stock {
	font-size: 20px;
	letter-spacing: 1px;
	color: #E3EED4;
	margin: 20px 0px 20px 0px;
}




/* ABOUT US CSS BÖRJAR HÄR */

.about-hero {
	height: 45vh;
	background: url("Bilder/headerPic3.webp") no-repeat;
	background-size: cover;
	background-position: 0% 43%;
	position: relative;
}

.about-section {
	padding: 0 20px 80px 20px;
}

.about-section::before {
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	margin: 0 auto 80px auto;
}

.about-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 40px;
}

.about-images img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.about-main-title {
	text-align: center;
	font-size: 25px;
	letter-spacing: 6px;
	text-transform: uppercase;
	margin-top: 80px;
	margin-bottom: 20px;
}
.about-text h2 {
	font-size: 21px;
}

.about-text p {
	line-height: 1.8;
	margin-bottom: 15px;
}


/* CONTACT US CSS BÖRJAR HÄR */

.contact-hero {
	height: 45vh;
	background: url("Bilder/headerPic3.webp") no-repeat;
	background-size: cover;
	background-position: 78% 43%;
	position: relative;
}

.contact-section {
	padding: 80px 20px;
}

.contact-section::before {
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	margin: 0 auto 80px auto;
}

.layout {
	max-width: 750px;
	margin: 0 auto;
}

.layout fieldset {
	border: 1px solid rgba(255,255,255,0.35);
	background: rgba(15, 42, 29, 0.55);
	padding: 35px 30px;
}

.layout legend {
	color: #E3EED4;
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0 10px;
}

.layout p {
	margin-bottom: 20px;
}

.layout label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #E3EED4;
}

.layout input[type="text"],
.layout input[type="email"],
.layout input[type="date"],
.layout textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(255,255,255,0.35);
	background: rgba(255,255,255,0.08);
	color: white;
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

.layout input[type="text"]:focus,
.layout input[type="email"]:focus,
.layout input[type="date"]:focus,
.layout textarea:focus {
	border-color: #E3EED4;
	background: rgba(255,255,255,0.14);
}

.layout textarea {
	width: 100%;
	min-height: 140px;
	resize: vertical;
	padding: 12px 14px;
	border: 1px solid rgba(255,255,255,0.35);
	background: rgba(255,255,255,0.08);
	color: white;
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

.layout input[type="submit"] {
	display: inline-block;
	margin-top: 10px;
	padding: 12px 28px;
	background-color: #6B9071;
	color: white;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.layout input[type="submit"]:hover {
	background-color: #5A7A60;
}

.error {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: #ffe3e3;
	letter-spacing: 0.5px;
}

.box {
	max-width: 750px;
	margin: 30px auto 0 auto;
	padding: 20px 25px;
	background: rgba(15, 42, 29, 0.55);
	border: 1px solid rgba(255,255,255,0.25);
	color: #E3EED4;
	line-height: 1.7;
}

/* RESPONSIVITET TILL TELFONER OCH SURFPLATTOR */

/* Surfplatta */
@media (max-width: 900px) {
	.product-grid,
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}

	.details-layout,
	.about-layout {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.details-description {
		margin-left: auto;
		margin-right: auto;
	}
}

/* Telefon */
@media (max-width: 600px) {
	.contact-hero {
		height: 35vh;
	}

	.layout fieldset {
		padding: 25px 20px;
	}

	.layout legend {
		font-size: 16px;
	}
}

/* Mindre telefon */
@media (max-width: 500px) {
	.hero {
		height: 65vh;
		background-size: 200%;
		background-position: 72% 20%;
	}

	.shop-hero,
	.about-hero,
	.contact-hero {
		height: 35vh;
	}

	.hero-overlay {
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.65) 0%,
			rgba(0, 0, 0, 0.42) 45%,
			rgba(0, 0, 0, 0.25) 100%
		);
	}

	.hero h1,
	.shop-hero h1,
	.about-hero h1,
	.contact-hero h1 {
		font-size: 20px;
		letter-spacing: 4px;
		text-shadow:
			0 2px 6px rgba(0,0,0,1),
			0 6px 18px rgba(0,0,0,0.9);
	}

	.product-grid,
	.shop-grid {
		grid-template-columns: 1fr;
	}

	.details-text h2 {
		font-size: 22px;
	}
}






