* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
}

/* Navigation */
.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: linear-gradient(to bottom, rgba(255, 251, 235, 0.95), rgba(255, 228, 230, 0.95));
	backdrop-filter: blur(10px);
	padding-top: 0px;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0.75rem 2rem 0.75rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo a {
	display: block;
	background: #fff;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.logo a:hover {
	background: #FF6B9D;
}

.logo img {
	height: 50px;
	width: auto;
	display: block;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.9) 0%, rgba(225, 29, 72, 0.9) 50%, rgba(194, 65, 12, 0.9) 100%);
	border-radius: 15px;
	padding: 0.5rem 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.nav-item {
	position: relative;
}

.nav-link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: bold;
	padding: 0.6rem 1rem;
	display: block;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.nav-link:hover {
	color: #2C2C2C;
	background: #4ECDC4;
	transform: translateY(-2px);
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding-top: 1rem;
	z-index: 1001;
}

.nav-item:nth-last-child(1) .dropdown,
.nav-item:nth-last-child(2) .dropdown {
	left: auto;
	right: 0;
}

.dropdown-content {
	background: #FFFFFF;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 1rem 0;
	min-width: 220px;
	border: 3px solid #FF6B9D;
}

.dropdown-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-width: 360px;
	padding: 0.5rem;
}

.dropdown-two-col a {
	margin: 0.15rem;
}

.dropdown-content a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #2C2C2C;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	border-radius: 6px;
	font-weight: 500;
}

.dropdown-content a:hover {
	background: #4ECDC4;
	color: #FFFFFF;
	transform: translateX(5px);
}

.has-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.9) 0%, rgba(225, 29, 72, 0.9) 50%, rgba(194, 65, 12, 0.9) 100%);
	border: none;
	cursor: pointer;
	padding: 0.75rem;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #fff;
	transition: all 0.3s ease;
	display: block;
	border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Header Section */
.intro-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom right, #fffbeb, #ffe4e6, #e0f2fe);
	padding: 8rem 2rem 4rem;
}

.intro-content {
	max-width: 900px;
	text-align: center;
}

.intro-title {
	font-size: 3.5rem;
	font-weight: bold;
	background: linear-gradient(to right, #b45309, #e11d48, #c2410c);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 2rem;
	line-height: 1.2;
}

.intro-subtitle {
	font-size: 1.5rem;
	color: #4b5563;
	line-height: 1.8;
	margin-bottom: 3rem;
}

.scroll-hint {
	font-size: 0.9rem;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(10px); }
}

/* Horizontal Scroll Container */
.horizontal-scroll-wrapper {
	position: relative;
	height: 500vh;
}

.horizontal-scroll-container {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

.horizontal-scroll-content {
	display: flex;
	height: 100vh;
	will-change: transform;
}

/* Scroll Panels */
.scroll-panel {
	min-width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem;
	position: relative;
}

.panel-content {
	max-width: 800px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.panel-content.visible {
	opacity: 1;
	transform: translateY(0);
}

.panel-title {
	font-size: 2.5rem;
	font-weight: bold;
	background: linear-gradient(to right, #b45309, #e11d48, #c2410c);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 1.5rem;
}

.panel-text {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #4b5563;
}

.panel-quote {
	font-size: 1.5rem;
	font-style: italic;
	line-height: 1.8;
	color: #6b7280;
	border-left: 4px solid #e11d48;
	padding-left: 2rem;
	margin: 2rem 0;
}

.panel-author {
	font-size: 1.1rem;
	color: #9ca3af;
	margin-top: 1rem;
}

/* Background styles for each panel */
.bg-1 {
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.bg-2 {
	background: linear-gradient(135deg, #fef3c7 0%, #fecaca 100%);
}

.bg-3 {
	background: linear-gradient(135deg, #fecaca 0%, #ffe4e6 100%);
}

.bg-4 {
	background: linear-gradient(135deg, #ffe4e6 0%, #dbeafe 100%);
}

.bg-5 {
	background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

/* Image placeholders */
.image-placeholder {
	position: absolute;
	width: 300px;
	height: 400px;
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.1) 0%, rgba(225, 29, 72, 0.1) 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.image-placeholder.visible {
	opacity: 1;
}

.image-placeholder-text {
	color: #9ca3af;
	font-size: 1rem;
	text-align: center;
	padding: 2rem;
}

/* Position variations for images */
.img-top-right {
	top: 10%;
	right: 10%;
	transform: rotate(5deg);
}

.img-top-right.visible {
	transform: rotate(5deg) translateY(0);
}

.img-bottom-left {
	bottom: 10%;
	left: 10%;
	transform: rotate(-5deg);
}

.img-bottom-left.visible {
	transform: rotate(-5deg) translateY(0);
}

.img-center-right {
	top: 50%;
	right: 5%;
	transform: translateY(-50%) rotate(3deg);
}

.img-center-left {
	top: 50%;
	left: 5%;
	transform: translateY(-50%) rotate(-3deg);
}

/* Final section */
.final-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom, #e0f2fe, #fffbeb);
	padding: 4rem 2rem;
}

.final-content {
	max-width: 800px;
	text-align: center;
}

/* Footer */
.footer {
	background: #2C2C2C;
	padding: 3rem 0 1.5rem;
	color: #FFFFFF;
	border-top: 3px solid #FF6B9D;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 4rem;
	gap: 3rem;
}

.footer-circles {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.circle-link {
	width: 110px;
	height: 110px;
	border: 3px solid #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 0.8rem;
	text-align: center;
	transition: all 0.3s ease;
	background: transparent;
	text-transform: uppercase;
}

.circle-link:hover {
	background: #4ECDC4;
	color: #2C2C2C;
	border-color: #4ECDC4;
	transform: scale(1.1);
}

.circle-link span {
	line-height: 1.2;
}

.footer-links-section {
	display: flex;
	gap: 4rem;
	flex: 1;
	justify-content: flex-end;
}

.footer-column {
	min-width: 200px;
}

.footer-column h3 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 1.2rem;
	color: #FF6B9D;
	text-transform: capitalize;
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 0.6rem;
}

.footer-column ul li a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
	font-weight: 500;
}

.footer-column ul li a:hover {
	color: #4ECDC4;
	transform: translateX(5px);
}

.footer-middle {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 2.5rem 0;
	border-top: 2px solid rgba(255, 255, 255, 0.15);
	border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-logo img {
	height: 70px;
	width: auto;
}

.address-column h3 {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #FF6B9D;
}

.address-column p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #FFFFFF;
	margin: 0;
}

.address-column a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}

.address-column a:hover {
	color: #4ECDC4;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	flex-wrap: wrap;
}

.footer-left {
	flex: 1;
	text-align: left;
	color: #FFFFFF;
}

.footer-social {
	flex: 1;
	text-align: center;
}

.footer-social a {
	color: #FFFFFF;
	margin: 0 10px;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	color: #4ECDC4;
	transform: scale(1.2);
}

.footer-right {
	flex: 1;
	text-align: right;
}

.footer-right .privacy-link {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-right .privacy-link:hover {
	color: #4ECDC4;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.nav-container {
		padding: 1rem 1.5rem;
	}

	.intro-section {
		padding: 6rem 1.5rem 3rem;
	}

	.intro-title {
		font-size: 2.5rem;
	}

	.intro-subtitle {
		font-size: 1.2rem;
	}

	.panel-title {
		font-size: 2rem;
	}

	.panel-text {
		font-size: 1.1rem;
	}

	.panel-quote {
		font-size: 1.2rem;
		padding-left: 1rem;
	}

	.scroll-panel {
		padding: 3rem 1.5rem;
	}

	.image-placeholder {
		display: none;
	}

	.mobile-toggle {
		display: flex;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, rgba(180, 83, 9, 0.98) 0%, rgba(225, 29, 72, 0.98) 50%, rgba(194, 65, 12, 0.98) 100%);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		border-radius: 0 0 15px 15px;
	}

	.nav-menu.active {
		max-height: 800px;
		padding: 1rem 0;
	}

	.nav-link {
		padding: 1rem 1.5rem;
		border-radius: 0;
	}
	
	.has-dropdown > .nav-link::after {
		content: ' ▾';
		font-size: 0.8em;
		margin-left: 0.5rem;
		transition: transform 0.3s ease;
	}
	
	.has-dropdown.active > .nav-link::after {
		transform: rotate(180deg);
	}

	.dropdown {
		position: static;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		overflow: hidden;
		padding-top: 0;
		transition: all 0.3s ease;
	}
	
	.has-dropdown.active .dropdown {
		opacity: 1;
		visibility: visible;
		max-height: 500px;
	}

	.dropdown-content {
		box-shadow: none;
		margin: 0 1rem;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.95);
	}

	.dropdown-two-col {
		grid-template-columns: 1fr;
		min-width: auto;
	}

	.final-section {
		padding: 3rem 1.5rem;
	}

	.footer-container {
		padding: 0 1.5rem;
	}

	.footer-top {
		flex-direction: column;
		align-items: center;
		margin-bottom: 3rem;
	}

	.footer-circles {
		justify-content: center;
	}

	.footer-links-section {
		width: 100%;
		justify-content: center;
		gap: 2rem;
	}

	.footer-middle {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.footer-left,
	.footer-social,
	.footer-right {
		text-align: center;
	}
}

@media (max-width: 480px) {
	.intro-title {
		font-size: 2rem;
	}

	.intro-subtitle {
		font-size: 1rem;
	}

	.panel-title {
		font-size: 1.75rem;
	}

	.panel-text {
		font-size: 1rem;
	}

	.panel-quote {
		font-size: 1.1rem;
	}

	.circle-link {
		width: 90px;
		height: 90px;
		font-size: 0.7rem;
	}
}
