/* ===============================================
   HEADER STYLES
   =============================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	background-color: transparent;
}

.site-header[data-scrolled="true"] {
	background-color: rgba(248, 246, 240, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.logo-part-1 {
	font-family: 'Fraunces', serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
	color: white;
}

.site-header[data-scrolled="true"] .logo-part-1 {
	color: hsl(var(--deep-purple));
}

.logo-part-2 {
	font-family: 'Fraunces', serif;
	font-size: 1.25rem;
	font-weight: 400;
	transition: color 0.3s ease;
	color: white;
}

.site-header[data-scrolled="true"] .logo-part-2 {
	color: hsl(var(--deep-purple));
}

@media (min-width: 768px) {
	.logo-part-1 {
		font-size: 1.875rem;
	}
	.logo-part-2 {
		font-size: 1.5rem;
	}
}

/* Desktop Navigation */
.desktop-nav {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.desktop-nav {
		display: flex;
	}
}

.nav-link {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: color 0.3s ease;
	color: white;
}

.site-header[data-scrolled="true"] .nav-link {
	color: hsl(var(--foreground));
}

.nav-link:hover {
	color: hsl(var(--primary));
}

.instagram-link {
	transition: color 0.3s ease;
	color: white;
}

.site-header[data-scrolled="true"] .instagram-link {
	color: hsl(var(--foreground));
}

.instagram-link:hover {
	color: hsl(var(--accent));
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: color 0.3s ease;
	color: white;
}

.site-header[data-scrolled="true"] .mobile-menu-toggle {
	color: hsl(var(--foreground));
}

@media (min-width: 768px) {
	.mobile-menu-toggle {
		display: none;
	}
}

.menu-icon {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	width: 1.5rem;
}

.menu-icon .line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.is-open .menu-icon .line:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-open .menu-icon .line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.is-open .menu-icon .line:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
	display: none;
	margin-top: 1rem;
	padding-bottom: 1rem;
}

.mobile-nav.is-open {
	display: block;
	animation: fadeIn 0.3s ease;
}

@media (min-width: 768px) {
	.mobile-nav {
		display: none !important;
	}
}

.mobile-nav-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-nav-link {
	font-size: 1.125rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid hsl(var(--border));
	transition: color 0.3s ease;
	color: hsl(var(--foreground));
}

.mobile-nav-link:hover {
	color: hsl(var(--primary));
}

.mobile-nav-link.instagram {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-color: hsl(var(--deep-purple));
	padding: 8rem 0 6rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	min-height: 100vh;
	padding: 6rem 0;
}

@media (min-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.hero-content {
	text-align: center;
	order: 2;
}

@media (min-width: 1024px) {
	.hero-content {
		text-align: left;
		order: 1;
	}
}

.hero-heading {
	font-size: 3rem;
	color: white;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

@media (min-width: 768px) {
	.hero-heading {
		font-size: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.hero-heading {
		font-size: 4.5rem;
	}
}

.hero-heading-highlight {
	display: block;
	font-weight: 900;
	font-style: italic;
	color: hsl(var(--primary));
}

.hero-subheading {
	font-size: 1.25rem;
	color: white;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.hero-subheading {
		font-size: 1.5rem;
	}
}

.hero-description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 40rem;
	margin: 0 auto 2.5rem;
}

@media (min-width: 1024px) {
	.hero-description {
		margin: 0 0 2.5rem;
	}
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}
}

@media (min-width: 1024px) {
	.hero-buttons {
		justify-content: flex-start;
	}
}

.hero-image-wrapper {
	order: 1;
	display: flex;
	justify-content: center;
}

@media (min-width: 1024px) {
	.hero-image-wrapper {
		order: 2;
		justify-content: flex-end;
	}
}

.hero-image {
	position: relative;
	width: 100%;
	max-width: 32rem;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
}

.scroll-indicator-inner {
	width: 1.5rem;
	height: 2.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 1.5rem;
	display: flex;
	justify-content: center;
	padding-top: 0.5rem;
}

.scroll-dot {
	width: 0.25rem;
	height: 0.75rem;
	background-color: hsl(var(--primary));
	border-radius: 0.25rem;
}

/* ===============================================
   ABOUT SECTION
   =============================================== */

.about-section {
	padding: 6rem 0;
	background-color: hsl(var(--card));
}

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

@media (min-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.about-image-wrapper {
	position: relative;
}

.about-image {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 1rem;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.about-image img:hover {
	transform: scale(1.05);
}

.decorative-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	z-index: -1;
}

.decorative-circle-1 {
	bottom: -1.5rem;
	right: -1.5rem;
	width: 12rem;
	height: 12rem;
	background-color: rgba(184, 169, 201, 0.2);
}

.decorative-circle-2 {
	top: -1.5rem;
	left: -1.5rem;
	width: 8rem;
	height: 8rem;
	background-color: rgba(255, 109, 0, 0.3);
}

.section-heading {
	font-size: 2.5rem;
	color: hsl(var(--deep-purple));
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.section-heading {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.section-heading {
		font-size: 3.75rem;
	}
}

.about-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(45, 45, 45, 0.8);
}

.about-highlight {
	color: hsl(var(--foreground)) !important;
	font-weight: 500;
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem;
	background-color: rgba(255, 109, 0, 0.2);
	border-radius: 2rem;
	margin-top: 1rem;
}

.badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	background-color: hsl(var(--primary));
	border-radius: 50%;
}

.badge-text {
	font-weight: 500;
	color: hsl(var(--secondary));
}

/* ===============================================
   SERVICES SECTION
   =============================================== */

.services-section {
	padding: 6rem 0;
	background-color: hsl(var(--background));
}

.section-header {
	margin-bottom: 4rem;
}

.section-description {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 42rem;
	margin: 0 auto;
}

.services-group {
	margin-bottom: 5rem;
}

.services-group-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.divider-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(184, 169, 201, 0.5));
}

.services-group-header .divider-line:last-child {
	background: linear-gradient(to left, transparent, rgba(184, 169, 201, 0.5));
}

.services-group-title {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: hsl(var(--foreground));
}

@media (min-width: 768px) {
	.services-group-title {
		font-size: 1.5rem;
	}
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card {
	overflow: hidden;
	background-color: hsl(var(--card));
	border-radius: 1rem;
	border: 1px solid hsl(var(--border));
	border-top: 4px solid;
	transition: all 0.3s ease;
}

.service-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.service-card.border-orange {
	border-top-color: hsl(var(--orange));
}

.service-card.border-pink {
	border-top-color: hsl(var(--pink));
}

.service-card.border-mint {
	border-top-color: hsl(var(--mint));
}

.service-card.border-teal {
	border-top-color: hsl(var(--teal));
}

.service-card.border-yellow {
	border-top-color: hsl(var(--yellow));
}

.service-card.border-primary {
	border-top-color: hsl(var(--primary));
}

.service-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

.service-content {
	padding: 1.5rem;
}

.service-title {
	font-size: 1.25rem;
	color: hsl(var(--foreground));
	margin-bottom: 0.5rem;
}

.service-description {
	color: hsl(var(--muted-foreground));
}

/* Custom Events */
.custom-events-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.custom-events-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.custom-events-image {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 1rem;
}

@media (min-width: 1024px) {
	.custom-events-image {
		aspect-ratio: 1 / 1;
	}
}

.custom-events-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.custom-events-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.custom-events-description {
	font-size: 1.125rem;
	color: rgba(45, 45, 45, 0.8);
}

.custom-events-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.custom-event-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background-color: hsl(var(--muted));
	border-radius: 0.5rem;
}

.custom-event-dot {
	width: 0.5rem;
	height: 0.5rem;
	background-color: hsl(var(--accent));
	border-radius: 50%;
	flex-shrink: 0;
}

.custom-event-text {
	font-size: 0.875rem;
	color: rgba(45, 45, 45, 0.8);
}

/* ===============================================
   GALLERY SECTION
   =============================================== */

.gallery-section {
	padding: 6rem 0;
	background-color: hsl(var(--card));
}

.gallery-carousel-wrapper {
	position: relative;
	max-width: 100%;
	overflow: visible;
	padding: 0 4rem;
}

@media (max-width: 767px) {
	.gallery-carousel-wrapper {
		padding: 0 3rem;
	}
}

.gallery-carousel {
	overflow: hidden;
}

.gallery-track {
	display: flex;
	gap: 1rem;
	transition: transform 0.5s ease;
}

.gallery-item {
	flex: 0 0 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 0.75rem;
	cursor: pointer;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.gallery-item {
		flex: 0 0 calc((100% - 1rem) / 2);
	}
}

@media (min-width: 1024px) {
	.gallery-item {
		flex: 0 0 calc((100% - 2rem) / 3);
	}
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: hsl(var(--deep-purple));
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	z-index: 10;
}

.gallery-nav:hover {
	background-color: rgba(109, 90, 135, 0.9);
}

.gallery-prev {
	left: 0;
}

.gallery-next {
	right: 0;
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */

.testimonials-section {
	padding: 6rem 0;
	background-color: hsl(var(--card));
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

.testimonial-card {
	position: relative;
	padding: 2rem;
	background-color: hsl(var(--card));
	border-radius: 1rem;
	border: 1px solid hsl(var(--border));
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
	border-color: rgba(184, 169, 201, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: rgba(184, 169, 201, 0.2);
}

.testimonial-stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.star {
	width: 1.25rem;
	height: 1.25rem;
}

.star-orange {
	color: hsl(var(--orange));
}

.star-pink {
	color: hsl(var(--pink));
}

.star-mint {
	color: hsl(var(--mint));
}

.star-teal {
	color: hsl(var(--teal));
}

.star-yellow {
	color: hsl(var(--yellow));
}

.testimonial-text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(45, 45, 45, 0.8);
	margin-bottom: 1.5rem;
}

.testimonial-author {
	font-weight: 700;
	color: hsl(var(--foreground));
}

/* ===============================================
   CONTACT SECTION
   =============================================== */

.contact-section {
	padding: 6rem 0;
	background-color: hsl(var(--card));
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-form-wrapper {
	background-color: hsl(var(--background));
	padding: 2rem;
	border-radius: 1rem;
	border: 1px solid hsl(var(--border));
}

.contact-form-heading {
	font-size: 1.5rem;
	color: hsl(var(--foreground));
	margin-bottom: 1.5rem;
}

.contact-message {
	padding: 1rem;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
}

.contact-success {
	background-color: rgba(95, 196, 165, 0.1);
	color: hsl(var(--mint));
	border: 1px solid hsl(var(--mint));
}

.contact-error {
	background-color: rgba(239, 68, 68, 0.1);
	color: #ef4444;
	border: 1px solid #ef4444;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-field {
	display: flex;
	flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
	padding: 0.75rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	background-color: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: 0.5rem;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: hsl(var(--primary));
	box-shadow: 0 0 0 3px rgba(184, 169, 201, 0.1);
}

.form-textarea {
	resize: none;
}

.btn-block {
	width: 100%;
}

.button-icon {
	margin-right: 0.5rem;
}

/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-heading {
	font-size: 1.5rem;
	color: hsl(var(--foreground));
}

.contact-info-items {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background-color: hsl(var(--background));
	border-radius: 0.75rem;
	border: 1px solid hsl(var(--border));
	transition: all 0.3s ease;
	text-decoration: none;
}

.contact-info-item:hover {
	border-color: rgba(184, 169, 201, 0.5);
}

.contact-info-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-info-icon-primary {
	background-color: rgba(184, 169, 201, 0.1);
	color: hsl(var(--primary));
}

.contact-info-item:hover .contact-info-icon-primary {
	background-color: rgba(184, 169, 201, 0.2);
}

.contact-info-icon-secondary {
	background-color: rgba(255, 109, 0, 0.1);
	color: hsl(var(--secondary));
}

.contact-info-item:hover .contact-info-icon-secondary {
	background-color: rgba(255, 109, 0, 0.2);
}

.contact-info-icon-accent {
	background-color: rgba(244, 196, 48, 0.1);
	color: hsl(var(--accent));
}

.contact-info-item:hover .contact-info-icon-accent {
	background-color: rgba(244, 196, 48, 0.2);
}

.contact-info-content {
	flex: 1;
}

.contact-info-label {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

.contact-info-value {
	color: hsl(var(--foreground));
}

/* ===============================================
   FOOTER STYLES
   =============================================== */

.site-footer {
	padding: 3rem 0;
	background-color: hsl(var(--deep-purple));
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-logo {
	text-align: center;
}

@media (min-width: 768px) {
	.footer-logo {
		text-align: left;
	}
}

.footer-logo a {
	display: inline-block;
}

.footer-logo .logo-part-1 {
	color: white;
	font-size: 1.5rem;
}

.footer-logo .logo-part-2 {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.25rem;
}

.footer-tagline {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.5rem;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.5rem;
}

.footer-link {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: white;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 768px) {
	.footer-social {
		justify-content: flex-end;
	}
}

.social-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background-color: white;
	color: hsl(var(--deep-purple));
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.copyright,
.credit {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

.credit a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.credit a:hover {
	color: white;
}
