/* 
* Main Stylesheet for Wibora Rubesa
* Color Palette:
* - Deep Raspberry (#D72638) - Accent & buttons
* - Amber (#F49D37) - Secondary elements & hovers
* - Ice White (#F5F7FA) - Background & contrast
* - Graphite Black (#1E1E24) - Text & structure
* - Rich Lilac (#5F0F40) - Decorative elements & underlays
*/

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--raspberry: #d72638;
	--amber: #f49d37;
	--white: #f5f7fa;
	--black: #1e1e24;
	--lilac: #5f0f40;
	--gradient: linear-gradient(135deg, var(--raspberry), var(--lilac));
	--border-radius: 12px;
	--shadow: 0 4px 20px rgba(30, 30, 36, 0.1);
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--white);
	color: var(--black);
	line-height: 1.6;
	font-size: 16px;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

h2::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background: var(--gradient);
	margin: 10px auto 0;
	border-radius: 3px;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--raspberry);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--amber);
}

img {
	max-width: 100%;
	height: auto;
}

.btn {
	display: inline-block;
	background: var(--raspberry);
	color: var(--white);
	padding: 14px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	box-shadow: 0 4px 15px rgba(215, 38, 56, 0.3);
}

.btn:hover {
	background: var(--amber);
	color: var(--black);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(244, 157, 55, 0.4);
}

/* Header & Navigation */
header {
	background-color: var(--white);
	box-shadow: var(--shadow);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.logo img {
	height: 50px;
}

.menu-toggle {
	display: none;
}

.hamburger {
	display: none;
}

.main-nav ul {
	display: flex;
	list-style: none;
}

.main-nav li {
	margin-left: 30px;
}

.main-nav a {
	color: var(--black);
	font-weight: 600;
	position: relative;
}

.main-nav a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
	width: 100%;
}

/* Hero Section */
.hero {
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	background-color: var(--lilac);
	background-image: url("../img/WPVgPy.jpg");
	background-size: cover;
	background-position: center;
	color: var(--white);
	position: relative;
	margin-top: 80px;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(95, 15, 64, 0.9), rgba(30, 30, 36, 0.85));
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 600px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* About Section */
.about {
	background-color: var(--white);
}

/* Features Section */
.features {
	background-color: var(--white);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature-card {
	background: var(--white);
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--gradient);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
	border-radius: 50%;
	box-shadow: var(--shadow);
}

.feature-icon img {
	max-width: 60%;
}

.feature-card h3 {
	margin-bottom: 15px;
}

/* Courses Section */
.courses {
	background-color: var(--white);
	position: relative;
}

.courses::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/WPVgPy.jpg");
	background-size: 300px;
	background-repeat: repeat;
	opacity: 0.05;
	z-index: 0;
}

.courses .container {
	position: relative;
	z-index: 1;
}

.courses-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.course-card {
	background-color: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(95, 15, 64, 0.15);
}

.course-img {
	height: 200px;
	overflow: hidden;
}

.course-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}

.course-card:hover .course-img img {
	transform: scale(1.05);
}

.course-content {
	padding: 25px;
}

.course-title {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.course-price {
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--raspberry);
	margin-bottom: 15px;
}

.course-description {
	margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
	background-color: var(--lilac);
	color: var(--white);
}

.testimonials h2::after {
	background: var(--white);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-card {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 30px;
	border-radius: var(--border-radius);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: relative;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	font-size: 4rem;
	position: absolute;
	top: -20px;
	left: -15px;
	opacity: 0.3;
	color: var(--amber);
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-weight: 600;
}

/* Contact & Map */
.contact-map {
	position: relative;
}

.map-container {
	height: 400px;
	overflow: hidden;
	border-radius: var(--border-radius);
	margin-top: 30px;
}

.map-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-info {
	max-width: 500px;
	margin: 0 auto 30px;
	text-align: center;
}

/* Order Form */
.order-form-section {
	padding: 120px 0;
	background-color: var(--white);
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.order-form {
	background-color: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 40px;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.order-form::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background: var(--gradient);
	border-radius: 0 0 0 100%;
	opacity: 0.1;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 15px;
	border: 1px solid rgba(30, 30, 36, 0.2);
	border-radius: var(--border-radius);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--raspberry);
	outline: none;
	box-shadow: 0 0 0 3px rgba(215, 38, 56, 0.2);
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.radio-option {
	display: flex;
	align-items: center;
	padding: 15px;
	background-color: var(--white);
	border: 1px solid rgba(30, 30, 36, 0.1);
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	cursor: pointer;
}

.radio-option:has(input:checked) {
	border-color: var(--raspberry);
	background-color: rgba(215, 38, 56, 0.05);
}

.radio-option input[type="radio"] {
	margin-right: 15px;
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(30, 30, 36, 0.3);
	border-radius: 50%;
	position: relative;
}

.radio-option input[type="radio"]:checked {
	border-color: var(--raspberry);
}

.radio-option input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--raspberry);
}

.radio-label {
	flex: 1;
}

.radio-price {
	font-weight: 700;
	color: var(--raspberry);
}

.checkbox-group {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
	appearance: none;
	width: 22px;
	height: 22px;
	border: 2px solid rgba(30, 30, 36, 0.3);
	border-radius: 5px;
	margin-right: 15px;
	position: relative;
}

.checkbox-group input[type="checkbox"]:checked {
	border-color: var(--raspberry);
	background-color: var(--raspberry);
}

.checkbox-group input[type="checkbox"]:checked::after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	font-size: 14px;
}

.checkbox-group a {
	text-decoration: underline;
}

.form-actions {
	text-align: center;
}

.form-actions .btn {
	min-width: 200px;
}

/* FAQ section */
.faq {
	background-color: var(--white);
}

.faq-item {
	border-bottom: 1px solid rgba(30, 30, 36, 0.1);
	padding: 20px 0;
}

.faq-question {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 10px;
	position: relative;
	padding-left: 30px;
}

.faq-question::before {
	content: "Q";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: var(--raspberry);
}

.faq-answer {
	position: relative;
	padding-left: 30px;
}

.faq-answer::before {
	content: "A";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: var(--amber);
}

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--black);
	color: var(--white);
	padding: 15px 0;
	z-index: 9999;
}

.cookie-notice .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-notice p {
	margin-bottom: 0;
	margin-right: 20px;
}

.cookie-notice .btn {
	padding: 8px 20px;
}

/* Footer */
footer {
	background-color: var(--black);
	color: var(--white);
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.footer-col h3 {
	color: var(--white);
	font-size: 1.3rem;
	margin-bottom: 20px;
	position: relative;
}

.footer-col h3::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--raspberry);
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 10px;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.footer-col a:hover {
	color: var(--amber);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
}

/* Thank you page */
.thank-you {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
	padding: 20px;
}

.thank-you-icon {
	width: 120px;
	height: 120px;
	background: var(--gradient);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	margin-bottom: 30px;
}

.thank-you h1 {
	margin-bottom: 20px;
}

.thank-you p {
	max-width: 600px;
	margin-bottom: 30px;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 60px;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.legal-content h2 {
	text-align: left;
	margin-top: 40px;
}

.legal-content h2::after {
	margin-left: 0;
}

.legal-content h3 {
	margin-top: 30px;
}

.legal-content ul,
.legal-content ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.legal-content li {
	margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	section {
		padding: 60px 0;
	}

	.features-grid,
	.courses-grid,
	.testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hamburger {
		display: block;
		width: 30px;
		height: 22px;
		position: relative;
		cursor: pointer;
		z-index: 1001;
	}

	.hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: var(--black);
		position: absolute;
		transition: all 0.3s ease;
	}

	.hamburger span:nth-child(1) {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		top: 10px;
	}

	.hamburger span:nth-child(3) {
		top: 20px;
	}

	.menu-toggle:checked ~ .hamburger span:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
	}

	.menu-toggle:checked ~ .hamburger span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked ~ .hamburger span:nth-child(3) {
		transform: rotate(-45deg);
		top: 10px;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 350px;
		height: 100vh;
		background-color: var(--white);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		transition: all 0.4s ease;
		z-index: 1000;
		padding: 100px 30px 30px;
		overflow-y: auto;
	}

	.menu-toggle:checked ~ .main-nav {
		right: 0;
	}

	.main-nav ul {
		flex-direction: column;
	}

	.main-nav li {
		margin: 0 0 20px 0;
	}

	.main-nav a {
		display: block;
		font-size: 1.2rem;
		padding: 10px 0;
	}

	.features-grid,
	.courses-grid,
	.testimonial-grid,
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hero {
		padding: 80px 0;
		height: auto;
		text-align: center;
	}

	.hero-content {
		margin: 0 auto;
	}

	.cookie-notice .container {
		flex-direction: column;
	}

	.cookie-notice p {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.order-form {
		padding: 30px 20px;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.btn {
		padding: 12px 20px;
	}

	.feature-card,
	.course-card,
	.testimonial-card {
		padding: 20px;
	}
}
