/* ============================================
   FONTS
   ============================================ */

@font-face {
	font-family: "Dancing Script";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../assets/fonts/dancing-script.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Josefin Slab";
	font-style: normal;
	font-weight: 100 700;
	font-display: swap;
	src: url("../assets/fonts/josefin-slab.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Lora";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../assets/fonts/lora.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ============================================
   CSS VARIABLES & THEME
   ============================================ */

:root {
	/* Layout */
	--max-width: 1200px;
	--section-width: 800px;

	/* Transitions */
	--transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--secondary-transition: 0.5s ease-in-out;

	/* Light Theme Colors */
	--bg-primary: #f6f1e9;
	--bg-secondary: #f1ebe2;
	--text-primary: #2c241d;
	--text-secondary: #6a5f53;
	--accent-gold: #c8a84a;
	--shadow: rgba(0, 0, 0, 0.18);
	--dark: #1b1712;
}

[data-theme="dark"] {
	--bg-primary: #1a1613;
	--bg-secondary: #2b2621;
	--text-primary: #f6f1e9;
	--text-secondary: #d0c7ba;
	--shadow: rgba(0, 0, 0, 0.4);
}


/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

body {
	font-family: "Lora", "Georgia", "Times New Roman", serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	transition: background var(--transition), color var(--transition);
	overflow-x: hidden;
}

button {
	font-family: inherit;
	background: none;
	border: none;
	cursor: pointer;
}

a {
	color: var(--accent-gold);
}


/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3 {
	font-weight: 400;
	line-height: 1;
}

h1 {
	font-family: "Dancing Script";
	font-size: 2.75rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

h2 {
	font-family: "Josefin Slab";
	font-size: 2rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

h3 {
	font-family: "Josefin Slab";
	font-size: 1.8rem;
}

p {
	margin-bottom: 0.75rem;
}


/* ============================================
   ACCESSIBILITY
   ============================================ */

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: transparent;
	color: transparent;
	padding: 0;
	text-decoration: none;
	z-index: 100;
	border: none;
	outline: none;
}

.skip-link:focus {
	top: 0;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.center {
	display: flex;
	justify-content: center;
}

.gold {
	color: var(--accent-gold);
}


/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* Header Container */
header {
	position: fixed;
	width: 100%;
	background: var(--bg-secondary);
	transition: background var(--transition);
	filter: drop-shadow(0 0.2rem 0.1rem rgba(0, 0, 0, 0.1));
	z-index: 6;
}

.header-overlay {
	display: flex;
	margin: auto;
	max-width: var(--max-width);
	padding: 1rem 1.5rem;
	justify-content: space-between;
	align-items: center;
	transition: color var(--transition);
}

/* Logo */
.logo {
	position: relative;
	top: -0.75rem;
	left: 0.5rem;
}

.logo::before {
	content: "";
	position: absolute;
	top: -0.3rem;
	left: -1rem;
	width: 8rem;
	height: 6.16rem;
	border-radius: 100%;
	background: var(--bg-secondary);
	transition: background var(--transition);
	filter: drop-shadow(0 0.2rem 0.1rem rgba(0, 0, 0, 0.1));
}

.svg-logo {
	position: absolute;
	left: 0;
	top: 0;
	fill: var(--text-primary);
	width: 6rem;
	height: 4.62rem;
	transition: all var(--transition);
}

/* Header Toggles */
.toggles {
	display: flex;
	gap: 2rem;
}

/* Language Switcher */
.lang-switcher {
	display: flex;
	gap: 0.5rem;
	cursor: default;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lang-separator {
	display: inline-block;
}

.lang-btn {
	color: var(--text-primary);
}

.lang-word {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	transition: all var(--secondary-transition);
}

.en {
	width: 2.2ch;
}

.pt-1 {
	width: 1.05ch;
}

.pt-2 {
	width: 1.05ch;
}

.lang-btn:not(.active):hover {
	cursor: pointer;
	font-weight: bold;
}

.lang-btn:not(.active):hover .en {
	width: 7.2ch;
}

.lang-btn:not(.active):hover .pt-1 {
	width: 3.6ch;
}

.lang-btn:not(.active):hover .pt-2 {
	width: 6.6ch;
}

.lang-btn.active {
	color: var(--accent-gold);
}

/* Theme Toggle */
.theme-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--secondary-transition);
}

.theme-toggle:hover {
	transform: rotate(45deg);
}

.theme-toggle svg {
	stroke: var(--text-primary);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke var(--transition);
}

/* Menu Button */
.menu-btn {
	padding: 0.5rem;
}

.menu-icon {
	position: relative;
	display: block;
	width: 1.5625rem;
	height: 0.125rem;
	background: var(--text-primary);
	transition: background 0.3s ease-in, transform var(--secondary-transition);
}

.menu-icon::before,
.menu-icon::after {
	content: '';
	position: absolute;
	left: 0;
	width: 1.5625rem;
	height: 0.125rem;
	background: var(--text-primary);
	transition: background 0.3s ease-in, transform var(--transition);
}

.menu-icon::before {
	top: -0.5rem;
}

.menu-icon::after {
	top: 0.5rem;
}

.menu-btn:hover .menu-icon {
	transform: translateX(0.1rem)
}

.menu-btn:hover .menu-icon::before {
	transform: translateX(-0.1rem);
}

.menu-btn:hover .menu-icon::after {
	transform: translateX(0.125rem);
}

.menu-btn.active .menu-icon {
	background: transparent;
}

.menu-btn.active .menu-icon::before {
	transform: rotate(45deg) translate(0.3125rem, 0.375rem);
}

.menu-btn.active .menu-icon::after {
	transform: rotate(-45deg) translate(0.3125rem, -0.375rem);
}

/* Navigation Menu */
nav {
	position: fixed;
	top: 0;
	right: -120%;
	width: 100%;
	height: 100vh;
	padding: 8rem 2rem 2rem;
	background: var(--bg-secondary);
	box-shadow: -0.3125rem 0 1.25rem var(--shadow);
	transition: right var(--transition);
	z-index: 4;
}

nav.active {
	right: 0;
}

nav ul {
	list-style: none;
}

nav li {
	margin: 1.5rem 0;
}

nav a {
	color: var(--text-primary);
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color var(--secondary-transition), padding-left var(--secondary-transition);
	display: block;
}

nav a:hover {
	color: var(--accent-gold);
	padding-left: 1rem;
}

.submenu {
	margin-left: 1.5rem;
	margin-top: 0.5rem;
}

.submenu li {
	margin: 0.8rem 0;
}

.submenu a {
	font-size: 1rem;
	color: var(--text-secondary);
}


/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding-top: 3.95rem;
	background: var(--dark);
	overflow: hidden;
}

#about-me .hero {
	background: var(--bg-primary);
	padding-top: 5rem;
	z-index: initial;
	overflow: initial;
	transition: background var(--transition);
}

.hero-image {
	display: block;
	max-height: 32rem;
}

.hero-image-about-me {
	display: block;
	max-height: 25rem;
}

#contact .hero-image {
	object-fit: cover;
	height: auto;
	width: 100%;
	max-width: initial;
}


/* ============================================
   MAIN LAYOUT
   ============================================ */

main {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 3rem 1.5rem;
}

section {
	max-width: var(--section-width);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
}

.gallery main {
	padding-top: 5rem;
}


/* ============================================
   BUTTONS
   ============================================ */

.read-more-btn,
.learn-more-btn {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.8rem 2rem;
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--text-secondary);
	border-radius: 5rem;
	text-decoration: none;
	letter-spacing: 0.15em;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all var(--secondary-transition);
}

.read-more-btn:hover,
.learn-more-btn:hover {
	background: var(--accent-gold);
	border-color: var(--accent-gold);
	color: #1a1a1a;
}


/* ============================================
   HOME PAGE - INTRODUCTION
   ============================================ */

.intro h1 {
	max-width: 9ch;
	margin-left: auto;
	margin-right: auto;
}

.intro p {
	color: var(--text-primary);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.intro .bio-preview {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--secondary-transition);
}

.intro .bio-preview.expanded {
	max-height: 500px;
}


/* ============================================
   HOME PAGE - COLLECTIONS
   ============================================ */

.collections-heading {
	text-transform: uppercase;
}

.collections h2 {
	text-transform: uppercase;
}

.gallery-links {
	display: grid;
	gap: 2rem;
	margin-top: 1.5rem;
}

.gallery-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	display: block;
	max-width: 34rem;
	margin: 0 auto;
	height: 13rem;
	width: 100%;
	max-width: 25rem;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--secondary-transition);
}

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

.gallery-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 1.5rem 0.5rem;
	color: white;
	text-shadow: .05rem .05rem #000;
	background: rgba(0, 0, 0, 0.5);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);

}

.gallery-card-overlay h3 {
	font-weight: 500;
}

.gallery-card p {
	font-size: 0.9rem;
	opacity: 0.9;
}


/* ============================================
   ABOUT ME PAGE
   ============================================ */

#biography {
	margin-top: 2rem;
	margin-bottom: 4rem;
}

#biography h2 {
	font-family: "Dancing Script";
	margin-bottom: 1rem;
}


/* ============================================
   GALLERY PAGES
   ============================================ */

.collection-intro p {
	text-align: left;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	width: 100%;
	margin: 0 auto 4rem;
}

.gallery-item {
	display: flex;
	justify-content: center;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
}

.gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0 4px 6px var(--shadow);
	transition: box-shadow 0.3s ease;
}

.gallery-item:hover img {
	box-shadow: 0 8px 12px var(--shadow);
}


/* ============================================
   MODAL (IMAGE VIEWER)
   ============================================ */

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal.active {
	display: flex;
	opacity: 1;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: var(--bg-secondary);
	width: 100%;
	height: 100%;
	max-height: 100vh;
	overflow-y: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

.modal.active .modal-content {
	transform: scale(1);
}

.modal-image-wrapper {
	display: flex;
	height: 100%;
}

.modal-image-container {
	position: relative;
	display: flex;
	width: 100%;
	background: #000;
	overflow: hidden;
	touch-action: pan-y;
	user-select: none;
}

.modal-image {
	width: 100%;
	height: auto;
	max-height: 71dvh;
	object-fit: contain;
	background: #000;
	flex-shrink: 0;
	pointer-events: none;
	transition: transform 0.3s ease-out, opacity 0.2s ease;
	will-change: transform;
}

.modal-details {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-height: 29dvh;
	padding: 1.5rem;
	overflow-y: auto;
}

.modal-details h3 {
	font-size: 2rem;
	font-family: "Dancing Script";
	margin: 0;
}

.modal-detail-item {
	display: flex;
	flex-direction: column;
}

.modal-detail-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
}

.modal-detail-value {
	font-size: 1rem;
	line-height: 1.6;
}

/* Modal Controls */
.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	border: none;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: background 0.3s ease;
	z-index: 10;
}

.modal-close:hover {
	background: rgba(0, 0, 0, 0.95);
}

.modal-nav {
	position: absolute;
	bottom: 1rem;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
	z-index: 5;
}

.modal-nav:hover {
	background: rgba(0, 0, 0, 0.9);
}

.modal-nav-prev {
	left: 1rem;
}

.modal-nav-next {
	right: 1rem;
}

.modal-counter {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	z-index: 5;
}

/* Loading */
.modal-image-loading {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 4;
}

.modal-image-loading.active {
	opacity: 1;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}


/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

/* Contact Form */
.contact-form-wrapper h2,
.contact-info-wrapper h2 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
	color: var(--text-primary);
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-primary);
}

.form-group input,
.form-group textarea {
	padding: 0.75rem 1rem;
	border: 2px solid var(--text-secondary);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-gold);
}

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

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

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: 12px;
	background-color: var(--bg-secondary);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.contact-item svg {
	width: 28px;
	height: 28px;
	stroke: var(--text-primary);
	flex-shrink: 0;
}

.contact-item h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-primary);
}

.contact-item p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-secondary);
}

.contact-item a {
	color: var(--text-primary);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.contact-item a:hover {
	opacity: 0.7;
	text-decoration: underline;
}

.gdpr-confirmation {
	font-size: .75rem;
}

.gdpr-confirmation input[type=checkbox] {
	transform: scale(1.5);
	margin-right: 0.5rem;
}

.gdpr-confirmation input[type=checkbox]:hover {
	cursor: pointer;
}

/* Contact Form Validation & Feedback Styles */

.form-group {
	position: relative;
	margin-bottom: 1.5rem;
	transition: margin-bottom 0.3s ease;
}

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

.form-group.has-error .gdpr-confirmation {
	padding: 1rem;
	border-radius: 8px;
	border: 2px solid;
}

.form-group.has-error .gdpr-confirmation,
.form-group.has-error input,
.form-group.has-error textarea {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

.field-error {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: block;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-message {
	padding: 1rem 1.25rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	animation: slideDown 0.4s ease;
	transition: opacity 0.3s ease;
}

.form-message-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.form-message-error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

/* Disabled button state */
.read-more-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

/* Honeypot field (keep hidden) */
input[name="website"] {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
}

/* Loading state animation */
@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.read-more-btn:disabled {
	animation: pulse 1.5s ease-in-out infinite;
}

/* Focus states for accessibility */
.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-color, #666);
	box-shadow: 0 0 0 0.2rem rgba(102, 102, 102, 0.1);
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.2);
}


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

footer {
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--bg-secondary);
	color: var(--text-secondary);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
}

.social-links {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-links a svg {
	transition: stroke var(--secondary-transition);
}

.social-links svg {
	width: 24px;
	height: 24px;
	stroke: var(--text-secondary);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.social-links a:hover svg {
	stroke: var(--accent-gold);
}

/* ============================================
   HERO SLIDESHOW
   ============================================ */

/* Zoom animaiton */
@keyframes zoomin {

	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.25);
	}
}

.hero-slideshow {
	position: relative;
}

.hero-slideshow .hero-image {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: all 1s ease-in-out;
	animation: zoomin 5s ease-in alternate-reverse;
}

.hero-slideshow .hero-image:first-child {
	position: relative;
}

.hero-slideshow .hero-image.active {
	opacity: 1;
	z-index: 1;
}

/* Slideshow Navigation Dots */
.slideshow-nav {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.75rem;
	z-index: 2;
}

.slide-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.slide-dot:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

.slide-dot.active {
	background: var(--accent-gold);
	border-color: var(--accent-gold);
	width: 12px;
	height: 12px;
}

/*
 PRIVACY POLICY PAGE
*/

.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	text-align: left;
}


/* ============================================
   RESPONSIVE - TABLET & DESKTOP
   ============================================ */

@media (min-width: 768px) {

	/* Header */
	.header-overlay {
		padding: 1rem 3rem;
	}

	.logo {
		top: -0.8rem;
		left: 0rem;
	}

	/* Navigation */
	nav {
		max-width: 50%;
		padding-top: 5rem;
	}

	/* Layout */
	main {
		padding: 5rem 3rem;
	}

	#about-me main {
		padding-top: 3rem;
	}

	/* Typography */
	h1 {
		font-size: 2.5rem;
	}

	.intro h1 {
		max-width: initial;
	}

	.intro p {
		max-width: 70ch;
	}

	/* Gallery Links */
	.gallery-links {
		grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	}

	/* Gallery Grid */
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
		max-width: initial;
	}

	.gallery-item {
		aspect-ratio: 3/3.4;
	}

	/* Modal */
	.modal.active {
		padding: 2rem;
	}

	.modal-content {
		max-width: 900px;
		max-height: 90vh;
		border-radius: 1rem;
		height: auto;
	}

	.modal-image {
		max-height: 60vh;
		border-radius: 8px 8px 0 0;
	}

	.modal-details {
		padding: 2rem;
	}

	.modal-details h3 {
		font-size: 1.75rem;
	}

	/* Contact Page */
	#contact .hero-image {
		width: auto;
	}

	.contact-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}

	.contact-form-wrapper h2,
	.contact-info-wrapper h2 {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}

	.contact-item {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		gap: 1.5rem;
	}

	.contact-item svg {
		margin-top: 0.25rem;
	}

	.hero-slideshow .hero-image {
		max-width: 58rem;
	}
}