:root {
	/* Color Palette - Soft, Romantic, Elegant */
	--primary-rose: #d4a5a5;
	--soft-blush: #f5e8e8;
	--cream: #faf7f5;
	--sage: #9ca986;
	--charcoal: #3a3a3a;
	--warm-white: #ffffff;
	--gold-accent: #c9a961;
	--soft-shadow: rgba(0, 0, 0, 0.08);
	--overlay: rgba(58, 58, 58, 0.7);

	/* Typography */
	--font-display: "Cormorant Garamond", serif;
	--font-body: "Montserrat", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--charcoal);
	line-height: 1.7;
	background-color: var(--cream);
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 0.95)
	);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	box-shadow: 0 2px 20px var(--soft-shadow);
	transition: all 0.3s ease;
	min-height: 80px;
	display: flex;
	align-items: center;
}

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

.logo-container {
	flex: 0 0 auto;
}

.logo {
	height: 80px;
	width: auto;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: var(--charcoal);
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	position: relative;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
	text-transform: uppercase;
	font-size: 0.85rem;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-rose);
	transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-rose);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.social-icons-header {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.social-icon {
	color: var(--charcoal);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	padding: 0.25rem;
}

.social-icon:hover {
	color: var(--primary-rose);
	transform: translateY(-2px);
}

.social-icon-img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.social-icon-img-footer {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 0.5rem;
}

.hamburger span {
	width: 25px;
	height: 2px;
	background: var(--charcoal);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	margin-top: 80px;
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(
		135deg,
		var(--cream) 0%,
		var(--soft-blush) 100%
	);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(
			circle at 20% 30%,
			rgba(212, 165, 165, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(156, 169, 134, 0.1) 0%,
			transparent 50%
		);
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(20px, 20px);
	}
}

.hero-content {
	text-align: center;
	z-index: 2;
	max-width: 800px;
	padding: 2rem;
	animation: fadeInUp 1s ease-out;
}

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

.hero-title {
	font-family: var(--font-display);
	font-size: 5rem;
	font-weight: 400;
	color: var(--charcoal);
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: 2px;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--charcoal);
	margin-bottom: 3rem;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-decoration {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(212, 165, 165, 0.2) 0%,
		transparent 70%
	);
	filter: blur(40px);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 0;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid;
}

.btn-primary {
	background: var(--primary-rose);
	color: var(--warm-white);
	border-color: var(--primary-rose);
}

.btn-primary:hover {
	background: transparent;
	color: var(--primary-rose);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(212, 165, 165, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--charcoal);
	border-color: var(--charcoal);
}

.btn-secondary:hover {
	background: var(--charcoal);
	color: var(--warm-white);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px var(--soft-shadow);
}

/* Section Styling */
section {
	padding: 6rem 0;
	animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.section-title {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--charcoal);
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.divider {
	width: 100px;
	height: 2px;
	background: var(--primary-rose);
	margin: 0 auto 3rem;
}

/* About Section */
.about {
	background: var(--warm-white);
}

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

.about-text {
	animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.lead {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--primary-rose);
	margin-bottom: 1.5rem;
	font-family: var(--font-display);
	line-height: 1.6;
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.about-image {
	position: relative;
	height: 500px;
	animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.image-frame {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--soft-blush) 0%,
		var(--cream) 100%
	);
	position: relative;
	border: 1px solid rgba(212, 165, 165, 0.3);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.decorative-corner {
	position: absolute;
	width: 60px;
	height: 60px;
	border: 2px solid var(--gold-accent);
}

.decorative-corner.top-left {
	top: -10px;
	left: -10px;
	border-right: none;
	border-bottom: none;
}

.decorative-corner.top-right {
	top: -10px;
	right: -10px;
	border-left: none;
	border-bottom: none;
}

.decorative-corner.bottom-left {
	bottom: -10px;
	left: -10px;
	border-right: none;
	border-top: none;
}

.decorative-corner.bottom-right {
	bottom: -10px;
	right: -10px;
	border-left: none;
	border-top: none;
}

/* Services Section */
.services {
	background: var(--soft-blush);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--warm-white);
	padding: 3rem 2rem;
	text-align: center;
	border: 1px solid rgba(212, 165, 165, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px var(--soft-shadow);
	border-color: var(--primary-rose);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 1rem;
	color: var(--charcoal);
}

.service-card p {
	color: var(--charcoal);
	line-height: 1.8;
}

/* Gallery Section */
.gallery {
	background: var(--warm-white);
}

.gallery-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--charcoal);
	margin-bottom: 3rem;
}

.instagram-container {
	max-width: 800px;
	margin: 0 auto 4rem;
	padding: 4rem 2rem;
	background: var(--soft-blush);
	border: 1px solid rgba(212, 165, 165, 0.3);
	text-align: center;
}

.instagram-notice p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: var(--charcoal);
}

.instagram-embed-container {
	max-width: 900px;
	margin: 0 auto;
	border: 1px solid rgba(212, 165, 165, 0.3);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px var(--soft-shadow);
}

.instagram-embed {
	display: block;
	width: 100%;
	min-height: 600px;
	max-height: 800px;
	border: none;
}

/* Portfolio Section */
.portfolio {
	background: var(--cream);
}

.portfolio-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--charcoal);
	margin-bottom: 3rem;
}

.portfolio-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 4px 15px var(--soft-shadow);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	aspect-ratio: 1;
}

.portfolio-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px var(--soft-shadow);
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.portfolio-loading {
	text-align: center;
	padding: 4rem 2rem;
	font-size: 1.1rem;
	color: var(--charcoal);
}

.portfolio-empty {
	text-align: center;
	padding: 4rem 2rem;
	background: var(--soft-blush);
	border: 1px solid rgba(212, 165, 165, 0.3);
}

.portfolio-empty p {
	font-size: 1.1rem;
	color: var(--charcoal);
	margin-bottom: 1rem;
}

/* Contact Section */
.contact {
	background: linear-gradient(
		135deg,
		var(--soft-blush) 0%,
		var(--cream) 100%
	);
}

.contact-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--charcoal);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-form {
	max-width: 800px;
	margin: 0 auto;
	background: var(--warm-white);
	padding: 3rem;
	box-shadow: 0 10px 40px var(--soft-shadow);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--charcoal);
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}

.required {
	color: var(--primary-rose);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(58, 58, 58, 0.2);
	background: var(--cream);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-rose);
	background: var(--warm-white);
	box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.btn-submit {
	width: 100%;
	cursor: pointer;
	border: 2px solid var(--primary-rose);
	background: var(--primary-rose);
	color: var(--warm-white);
	font-family: var(--font-body);
}

.btn-submit:hover {
	background: transparent;
	color: var(--primary-rose);
}

/* Footer */
.footer {
	background: var(--charcoal);
	color: var(--cream);
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-logo {
	height: 80px;
	width: auto;
	margin-bottom: 1rem;
}

.footer-section h4 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary-rose);
}

.footer-section p {
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--cream);
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.5rem 0;
}

.social-link:hover {
	color: var(--primary-rose);
	transform: translateX(5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(212, 165, 165, 0.3);
	opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
	.navbar {
		padding: 1.25rem 0;
		min-height: 85px;
	}

	.nav-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0;
		padding: 0 1.25rem;
		position: relative;
		width: 100%;
	}

	.hamburger {
		display: flex;
		order: 1;
		z-index: 1001;
		flex-shrink: 0;
		margin-right: 0;
		width: 50px;
	}

	.logo-container {
		order: 2;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
	}

	.logo {
		height: 55px;
	}

	.social-icons-header {
		order: 3;
		margin-left: auto;
		flex-shrink: 0;
		gap: 1rem;
		display: flex;
		width: 70px;
		justify-content: flex-end;
	}

	.social-icon {
		padding: 0.25rem;
	}

	.social-icon-img {
		width: 26px;
		height: 26px;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 85px;
		flex-direction: column;
		background: var(--warm-white);
		width: 100%;
		text-align: center;
		transition: left 0.3s ease-in-out;
		box-shadow: 0 10px 27px var(--soft-shadow);
		padding: 2rem 0;
		z-index: 999;
	}

	.nav-menu.active {
		left: 0;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.about-image {
		height: 400px;
	}

	.hero-title {
		font-size: 3.5rem;
	}

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

	.form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

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

	.services-grid {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 2rem 1.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.social-links {
		align-items: center;
	}
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.6s ease-out,
		transform 0.6s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}
