@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Nunito:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
	--red: #b3382b;
	--yellow: #eed952;
	--blue: #5daac8;
	--red-dark: #8f2c21;
	--yellow-dark: #c9b630;
	--blue-dark: #3d8aa8;
	--white: #ffffff;
	--cream: #fffdf5;
	--text-dark: #2a1a0e;
	--text-mid: #5a3e2b;
	--shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
	--radius: 20px;
	--radius-lg: 32px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: "Nunito", sans-serif;
	color: var(--text-dark);
	overflow-x: hidden;
	cursor:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ctext y='20' font-size='20'%3E⚓%3C/text%3E%3C/svg%3E")
			12 12,
		auto;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: var(--cream);
}
::-webkit-scrollbar-thumb {
	background: var(--blue);
	border-radius: 10px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	line-height: 1.1;
}

.handwritten {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
}

/* ===== NAVIGATION ===== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: padding 0.4s ease;
}

nav.scrolled {
	padding: 12px 40px;
}

nav.scrolled::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(93, 170, 200, 0.95);
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: -1;
}

.nav-logo {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;

	font-size: 2rem;
	font-weight: 400;
	color: var(--white);
	text-decoration: none;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.3s ease;
}

.nav-logo:hover {
	transform: scale(1.05) rotate(-2deg);
}

.nav-logo span {
	font-size: 1.8rem;
	animation: bobbing 2s ease-in-out infinite;
}

@keyframes bobbing {
	0%,
	100% {
		transform: translateY(0) rotate(-5deg);
	}
	50% {
		transform: translateY(-5px) rotate(5deg);
	}
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 8px;
	align-items: center;
}

.nav-links a {
	font-family: "Kalam", cursive;
	font-weight: 400;
	font-style: normal;
	color: var(--white);
	text-decoration: none;
	padding: 8px 18px;
	border-radius: 50px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover,
.nav-links a.active {
	background: var(--yellow);
	color: var(--text-dark);
	border-color: var(--yellow-dark);
	text-shadow: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(238, 217, 82, 0.4);
}

.nav-links a.btn-nav {
	background: var(--red);
	color: var(--white);
	border-color: var(--red-dark);
}

.nav-links a.btn-nav:hover {
	background: var(--red-dark);
	color: var(--white);
	transform: translateY(-2px) scale(1.05);
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
	background: none;
	border: none;
}

.hamburger span {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--white);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ===== WAVES (decorative) ===== */
.wave-divider {
	width: 100%;
	overflow: hidden;
	line-height: 0;
	margin: 0;
}

.wave-divider svg {
	display: block;
	width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 120px 40px 80px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-bg-placeholder {
	display: block;
	justify-content: center;
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--blue) 0%,
		#3a7fa0 40%,
		var(--blue-dark) 100%
	);
	z-index: 0;
}

.hero-bg-placeholder img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-img-mobile {
	display: none;
}

.hero-bg-placeholder::after {
	content: "";
	position: absolute;
	inset: 0; /* pokriva ceo kontejner tj. sliku */
	background: rgba(0, 0, 0, 0.5); /* zatamnjenje po želji */
	pointer-events: none; /* da ne blokira klikove/hover na sadržaj iznad */
	z-index: 1;
}

/* Floating elements */
.floating-elements {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.float-el {
	position: absolute;
	font-size: 2.5rem;
	animation: floatAround 6s ease-in-out infinite;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.float-el:nth-child(1) {
	top: 15%;
	left: 8%;
	animation-delay: 0s;
	font-size: 3rem;
}
.float-el:nth-child(2) {
	top: 20%;
	right: 10%;
	animation-delay: 1s;
	font-size: 2rem;
}
.float-el:nth-child(3) {
	bottom: 30%;
	left: 5%;
	animation-delay: 2s;
	font-size: 2.2rem;
}
.float-el:nth-child(4) {
	bottom: 20%;
	right: 8%;
	animation-delay: 0.5s;
	font-size: 3.5rem;
}
.float-el:nth-child(5) {
	top: 50%;
	left: 3%;
	animation-delay: 1.5s;
	font-size: 1.8rem;
}
.float-el:nth-child(6) {
	top: 40%;
	right: 4%;
	animation-delay: 2.5s;
	font-size: 2rem;
}

@keyframes floatAround {
	0%,
	100% {
		transform: translateY(0) rotate(-5deg) scale(1);
	}
	33% {
		transform: translateY(-20px) rotate(5deg) scale(1.1);
	}
	66% {
		transform: translateY(10px) rotate(-3deg) scale(0.95);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
}

.hero-badge {
	display: inline-block;
	background: var(--yellow);
	color: var(--text-dark);
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 1.2rem;
	padding: 6px 24px;
	border-radius: 50px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(238, 217, 82, 0.4);
	animation: fadeInDown 0.8s ease both;
	transform: rotate(-2deg);
}

.hero h1 {
	font-size: clamp(3.5rem, 8vw, 7rem);
	color: var(--white);
	text-shadow:
		3px 3px 0 rgba(0, 0, 0, 0.2),
		6px 6px 20px rgba(0, 0, 0, 0.3);
	margin-bottom: 16px;
	animation: fadeInUp 0.8s 0.2s ease both;
	line-height: 1;
}

.hero h1 span {
	color: var(--yellow);
	display: block;
}

.hero p {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
	margin: 0 auto 36px;
	line-height: 1.7;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s 0.6s ease both;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Kalam", cursive;
	font-weight: 400;
	font-style: normal;
	font-style: normal;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 3px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition:
		width 0.5s,
		height 0.5s;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: var(--red);
	color: var(--white);
	border-color: var(--red-dark);
	box-shadow: 0 6px 20px rgba(179, 56, 43, 0.4);
}

.btn-primary:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 12px 30px rgba(179, 56, 43, 0.5);
}

.btn-secondary {
	background: var(--yellow);
	color: var(--text-dark);
	border-color: var(--yellow-dark);
	box-shadow: 0 6px 20px rgba(238, 217, 82, 0.4);
}

.btn-secondary:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 12px 30px rgba(238, 217, 82, 0.5);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

.btn-outline:hover {
	background: var(--white);
	color: var(--blue);
	transform: translateY(-4px) scale(1.05);
}

/* ===== SECTION BASE ===== */
section {
	position: relative;
	overflow: hidden;
}

.section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 40px;
}

.section-title {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(2.5rem, 5vw, 4rem);
	text-align: center;
	margin-bottom: 16px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background: var(--yellow);
	border-radius: 10px;
	margin: 12px auto 0;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--text-mid);
	max-width: 600px;
	margin: 0 auto 56px;
	line-height: 1.7;
}

/* ===== ABOUT BOOK SECTION ===== */
.about-book {
	background-size: cover;
	background-position: center;
}

.about-book-bg-placeholder {
	position: absolute;
	inset: 0;
	background: var(--cream);
	z-index: 0;
}

.about-book .section-inner {
	position: relative;
	z-index: 1;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.story-img img {
	display: flex;
	width: 100%;
}

.book-mockup {
	position: relative;
	display: flex;
	justify-content: center;
}

.book-cover {
	width: 280px;
	height: 380px;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	border-radius: 8px 24px 24px 8px;
	box-shadow:
		-8px 0 0 var(--blue-dark),
		-12px 4px 20px rgba(0, 0, 0, 0.3),
		0 20px 60px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	position: relative;
	animation: bookFloat 4s ease-in-out infinite;
	transition: transform 0.4s ease;
	overflow: hidden;
}

.book-cover:hover {
	transform: perspective(500px) rotateY(-15deg) scale(1.05);
}

@keyframes bookFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

.book-cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px 22px 22px 6px;
}

.book-cover-placeholder {
	text-align: center;
	padding: 13px;
	color: white;
}

.book-cover-placeholder .emoji {
	font-size: 4rem;
	margin-bottom: 10px;
}
.book-cover-placeholder p {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 1.8rem;
	font-weight: 400;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.book-stars {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.star {
	position: absolute;
	width: 6px;
	height: 6px;
	background: var(--yellow);
	border-radius: 50%;
	animation: twinkle 2s ease-in-out infinite;
}

.star:nth-child(1) {
	top: 15%;
	left: 20%;
	animation-delay: 0s;
}
.star:nth-child(2) {
	top: 30%;
	right: 15%;
	animation-delay: 0.5s;
}
.star:nth-child(3) {
	top: 60%;
	left: 10%;
	animation-delay: 1s;
}
.star:nth-child(4) {
	bottom: 20%;
	right: 20%;
	animation-delay: 1.5s;
}
.star:nth-child(5) {
	top: 70%;
	left: 60%;
	animation-delay: 0.8s;
}

@keyframes twinkle {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.3;
		transform: scale(0.5);
	}
}

.about-text h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--blue-dark);
	margin-bottom: 20px;
}

.about-text p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-mid);
	margin-bottom: 16px;
}

.features-list {
	list-style: none;
	margin: 24px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.features-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.05rem;
	color: var(--text-dark);
	font-weight: 600;
}

.features-list li span.icon {
	width: 36px;
	height: 36px;
	background: var(--yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(238, 217, 82, 0.4);
}

/* ===== STATS STRIP ===== */
.stats-strip {
	padding: 48px 40px;
	position: relative;
	overflow: hidden;
}

.stats-strip-bg {
	position: absolute;
	inset: 0;
	background: var(--red);
	z-index: 0;
}

.stats-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
	z-index: 1;
}

.stat-item {
	text-align: center;
	color: var(--white);
	padding: 16px;
}

.stat-number {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 3.5rem;
	font-weight: 400;
	color: var(--yellow);
	display: block;
	line-height: 1;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
	font-size: 0.95rem;
	opacity: 0.9;
	font-weight: 600;
	margin-top: 4px;
	display: block;
}

/* ===== PRODUCT CARDS ===== */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 32px;
}

.product-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	background: var(--white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border: 3px solid transparent;
	cursor: pointer;
}

.product-card:hover {
	transform: translateY(-12px) rotate(1deg);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
	border-color: var(--yellow);
}

.product-card:nth-child(even):hover {
	rotate: -1deg;
}

.video-wrapper {
	position: relative;
	width: 100%;
	max-width: 800px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 4px solid var(--white);
}

.video-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.product-img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	display: block;
	background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.product-img-placeholder {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-img-placeholder .p-emoji {
	font-size: 3.5rem;
}
.product-img-placeholder .p-text {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 1.2rem;
	text-align: center;
	padding: 0 12px;
}

.product-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--yellow);
	color: var(--text-dark);
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 1rem;
	padding: 4px 12px;
	border-radius: 50px;
	transform: rotate(3deg);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-info {
	padding: 20px;
}

.product-meta {
}

.product-info h3 {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 1.5rem;
	color: var(--text-dark);
	margin-bottom: 6px;
}

.product-info p {
	font-size: 0.9rem;
	color: var(--text-mid);
	line-height: 1.5;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* koliko linija da prikaže pre skraćivanja */
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: -webkit-line-clamp 0.3s ease;
}

.product-info p.expanded {
	-webkit-line-clamp: unset;
	overflow: visible;
}

.see-more-btn {
	background: none;
	border: none;
	color: var(--blue-dark);
	font-family: "Nunito", sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	padding: 0;
	margin-bottom: 16px;
	display: inline-block;
	text-decoration: underline;
}

.see-more-btn:hover {
	color: var(--red);
}

.product-footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.product-price {
	font-family: "Kalam", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--red);
}

.btn-order {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--blue);
	color: var(--cream);
	font-family: "Nunito", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 10px 30px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid var(--blue-dark);
}

.btn-order:hover {
	background: var(--red);
	color: var(--white);
	border-color: var(--red-dark);
	transform: scale(1.05);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
	position: relative;
}

.testimonials-bg {
	position: absolute;
	inset: 0;
	background: var(--blue);
	z-index: 0;
}

.testimonials .section-inner {
	position: relative;
	z-index: 1;
}

.testimonials .section-title,
.testimonials .section-subtitle {
	color: var(--white);
}

.testimonials .section-subtitle {
	color: rgba(255, 255, 255, 0.8);
}

.testimonials .section-title::after {
	background: var(--yellow);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-6px);
}

.testimonial-stars {
	color: var(--yellow);
	font-size: 1.2rem;
	margin-bottom: 12px;
	letter-spacing: 3px;
}

.testimonial-text {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 16px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	border: 3px solid rgba(255, 255, 255, 0.4);
}

.author-info strong {
	display: block;
	color: var(--white);
	font-size: 0.95rem;
	font-family: "Kalam", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: 1.1rem;
}

.author-info span {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.8rem;
}

/* ===== ABOUT PAGE ===== */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 56px;
}

.team-card {
	text-align: center;
	padding: 40px 24px;
	border-radius: var(--radius-lg);
	background: white;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	border: 3px solid transparent;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover {
	border-color: var(--blue);
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(93, 170, 200, 0.2);
}

.team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	border: 5px solid var(--yellow);
	box-shadow: 0 8px 24px rgba(93, 170, 200, 0.3);
	overflow: hidden;
	transition: transform 0.4s ease;
}

.team-card:hover .team-avatar {
	transform: scale(1.1) rotate(5deg);
}

.team-card h3 {
	font-size: 1.8rem;
	color: var(--text-dark);
	margin-bottom: 6px;
}

.team-card .role {
	color: var(--blue);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 14px;
}

.team-card p {
	color: var(--text-mid);
	line-height: 1.7;
	font-size: 0.95rem;
}

.mission-section {
	position: relative;
}

.mission-section-bg {
	position: absolute;
	inset: 0;
	background: var(--yellow);
	z-index: 0;
}

.mission-section .section-inner {
	position: relative;
	z-index: 1;
}

.mission-content {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.mission-content .big-quote {
	font-family: "Kalam", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 24px;
	position: relative;
	padding: 0 40px;
}

.mission-content .big-quote::before,
.mission-content .big-quote::after {
	content: '"';
	font-size: 5rem;
	color: var(--red);
	opacity: 0.3;
	position: absolute;
	font-family: Georgia, serif;
	line-height: 1;
}

.mission-content .big-quote::before {
	top: -20px;
	left: 0;
}
.mission-content .big-quote::after {
	bottom: -40px;
	right: 0;
}

/* ===== CONTACT / FOOTER ===== */
.footer {
	position: relative;
	padding: 64px 40px 32px;
	background: var(--text-dark);
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand .logo {
	font-family: "Kalam", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: 2.2rem;
	color: var(--yellow);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	text-decoration: none;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	font-size: 0.95rem;
	max-width: 280px;
}

.footer-col h4 {
	font-family: "Kalam", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 1.4rem;
	color: var(--yellow);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col ul a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-col ul a:hover {
	color: var(--yellow);
}

.social-links {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
	background: var(--yellow);
	transform: translateY(-3px);
	border-color: var(--yellow-dark);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.85rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
	min-height: 45vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 40px 80px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.page-header-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
	z-index: 0;
}

.page-header-content {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	font-size: clamp(3rem, 6vw, 5.5rem);
	color: var(--white);
	text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
	margin-bottom: 12px;
}

.page-header p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 500px;
	margin: 0 auto;
}

/* ===== SCROLL value-cardL ===== */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

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

.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Bubbles animation */
.bubbles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.bubble {
	position: absolute;
	bottom: -50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid rgba(255, 255, 255, 0.12);
	animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
	to {
		transform: translateY(-110vh);
		opacity: 0;
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.about-grid .book-mockup {
		order: -1;
	}
	.features-list {
		align-items: center;
	}
	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 14px 20px;
	}
	nav.scrolled {
		padding: 10px 20px;
	}
	.nav-links {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(61, 138, 168, 0.97);
		backdrop-filter: blur(20px);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 20px;
		z-index: 999;
	}
	.nav-links.open {
		display: flex;
	}
	.nav-links a {
		font-size: 2rem;
	}

	.nav-logo img {
		width: 4rem;
	}

	.hamburger {
		display: flex;
		z-index: 1001;
	}

	.hero {
		padding: 100px 24px 60px;
	}

	.hero-bg-placeholder img {
		display: block;
		object-fit: contain;
	}

	.section-inner {
		padding: 60px 24px;
	}
	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.page-header {
		padding: 100px 24px 60px;
	}
}

@media (max-width: 480px) {
	.shop-grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}
	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.btn {
		width: 100%;
		justify-content: center;
		max-width: 300px;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}
