* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: "fonts/alex-brush/AlexBrush-Regular.ttf";
	background-color: #fcf9f2;
	overflow-x: hidden;
}
/* Justera 10px till din faktiska headerhöjd */

#wedding, #rsvp, #faq {
	scroll-margin-top: 10px;
}
/* NAVBAR */

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background-color: #fcf9f2;
	border-radius: 20px;
	z-index: 100;
	/* z-index skala: nav 100, overlay 999, toggle 1001, modal 9999 */
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	/* Centrerar hela navbaren på sidan */
}
.nav-side {
	display: flex;
	gap: 5rem;
	flex: 1;
	justify-content: space-evenly;
	align-items: center;
}
.nav-center {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-link {
	text-decoration: none;
	color: #141311;
	font-size: 0.8rem;
	position: relative;
	transition: color 0.3s ease;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	transform: translateX(-50%);
	width: 0%;
	height: 2px;
	background-color: #fa9d79;
	transition: width 0.3s ease;
}
.nav-link:hover::after {
	width: 100%;
}
.nav-link:hover {
	color: #141311;
}
/* LOGO */

.nav-logo img {
	height: 97px;
	max-width: 100%;
	object-fit: contain;
}
.nav-logo {
	padding: 0 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* TOGGLE BUTTON */

.nav-toggle {
	position: fixed;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 1001;
	/* högre än mobilmenyn */
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	cursor: pointer;
}
.nav-toggle span {
	height: 3px;
	width: 100%;
	background: #fa9d79;
	border-radius: 3px;
	transition: all 0.4s ease;
	transform-origin: center;
}
/* Animate to X */

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translateY(8px);
}
.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translateY(-8px);
}
/* MOBILE NAVIGATION */

.mobile-nav {
	position: fixed;
	/* ändra från absolute */
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fcf9f2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-20px);
	transition: all 0.4s ease;
	z-index: 999;
	/* högre än allt annat */
	/* Tekniskt tillägg för bättre tabb/fokus-hantering, påverkar inte visuellt läge */
	visibility: hidden;
}
.mobile-nav.active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}
.mobile-link {
	text-decoration: none;
	text-align: center;
	color: #141311;
	padding: 0.75rem 0;
	position: relative;
	transition: color 0.3s ease;
	margin-bottom: 2em;
	font-size: 1.3rem;
	font-family: "Montserrat", sans-serif;
}
.mobile-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	transform: translateX(-50%);
	width: 0%;
	height: 2px;
	background-color: #fa9d79;
	transition: width 0.3s ease;
}
.mobile-link:hover::after {
	width: 60%;
}
.mobile-link:hover {
	color: #141311;
}
/* animationen som du redan har */

@keyframes heroFadeZoom {
	to {
		opacity: 1;
		transform: scale(1);
	}
}
/* HEADER Hero Container */

.hero-section {
	width: 100%;
	height: 120vh;
	/* öka från 100vh */
	background-color: #fcf9f2;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.hero-inner {
	width: 90%;
	max-width: 1200px;
	height: 100%;
	/* var tidigare 90% i ena versionen */
	background-image: url('image/theCouple.jpg');
	background-size: cover;
	background-position: center 25%;
	/* ↓ flyttar bilden lite nedåt */
	background-repeat: no-repeat;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 8vh;
	animation: heroFadeZoom 2s ease-in-out forwards;
	opacity: 0;
	transform: scale(1.05);
}
.hero-text-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* <-- centrerar vertikalt */
	text-align: center;
	gap: 1rem;
	padding: 0 1rem;
	max-width: 90%;
}
/* Brudparens namn */

.hero-names {
	font-family: 'Cormorant Garamond', serif;
	font-size: 8rem;
	font-weight: 500;
	color: #fff;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
	letter-spacing: 1px;
	margin-bottom: 0;
	/* eller justera om du vill ha mer kontroll */
}
/* Datumtext under namnet */

.hero-date {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	font-weight: 400;
	color: #fff;
	margin-top: 0.1em;
	/* ← Ändra detta värde efter behov */
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}
.hero-names, .hero-date {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease;
}
/* Namn-animation in */

@keyframes slideUpText {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Scroll-fade effect (bonus) */

.hero-inner.scrolled .hero-names {
	opacity: 0;
	transform: translateY(-40px);
	transition: all 1.4s ease;
}
.hero-inner.scrolled .hero-date {
	opacity: 0;
	transform: translateY(-40px);
	transition: all 1.4s ease;
}
.hero-inner.reset .hero-names, .hero-inner.reset .hero-date {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.6s ease;
}
/* COUNTDOWN */

.countdown-section {
	background-color: #fcf9f2;
	padding: 4rem 2rem;
	text-align: center;
}
.countdown-wrapper {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}
.countdown-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Cormorant Garamond', serif;
	color: #141311;
	min-width: 80px;
}
.countdown-number {
	font-size: 3rem;
	font-weight: 500;
	color: #fa9d79;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}
.countdown-label {
	font-size: 1rem;
	color: #141311;
	margin-top: 0.3rem;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
}
/* VIDEO Banner*/

.video-banner-section {
	width: 100%;
	overflow: hidden;
	position: relative;
}
/* Banner-videon */
.video-banner {
  width: 100%;
  height: 180px;         /* du kan behålla dina värden */
  object-fit: cover;
  display: block;
  filter: brightness(0.95);

  /* Viktigt för iOS – gör videon “dekorativ” */
  pointer-events: none;
  user-select: none;
  touch-action: none;
}

/* RSVP-videon (vänsterkolumn) */
.rsvp-video video {
  width: 100%;
  height: 750px;         /* dina värden */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);

  /* Viktigt för iOS */
  pointer-events: none;
  user-select: none;
  touch-action: none;
}
/* WEDDING SEKTION */

.wedding-section {
	background-color: #fcf9f2;
	padding: 6rem 2rem;
	display: flex;
	justify-content: center;
}
.wedding-box {
	border: 2px solid #141311;
	padding: 3rem 2rem;
	max-width: 700px;
	width: 100%;
	background-color: #fcf9f2;
	text-align: center;
}
.wedding-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #141311;
	letter-spacing: 1px;
}
.wedding-info {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	line-height: 1.8;
	color: #141311;
}
.wedding-info p {
	margin-bottom: 2rem;
}
/* Buttons wrapper */

.button-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin: 2rem 0;
	/* 🔧 NYTT: jämn luft ovan & under */
}
/* Shared button styles */

.map-button, .zoom-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
/* Map button */

.map-button {
	background-color: #141311;
	color: #fcf9f2;
}
.map-button:hover {
	background-color: #fa9d79;
	color: #141311;
}
/* Zoom button */

.zoom-button {
	background-color: #fa9d79;
	color: #141311;
}
.zoom-button:hover {
	background-color: #141311;
	color: #fff;
}
/* RSVP Section */

.rsvp-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6rem 2rem;
	background-color: #fcf9f2;
}
.rsvp-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	align-items: stretch;
	max-width: 1200px;
}
.rsvp-video video {
	width: 100%;
	max-width: 600px;
	/* redan i din kod */
	height: 750px;
	/* <-- bestäm själv önskad höjd */
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.rsvp-box {
	border: 2px solid #141311;
	padding: 2rem 2rem;
	/* ⬅️ Sänkt från 3rem till 2rem top/bottom */
	background-color: #fcf9f2;
	max-width: 600px;
	width: 100%;
	text-align: center;
}
.rsvp-video, .rsvp-box {
	flex: 1 1 0;
	min-width: 0;
}
.rsvp-video video, .rsvp-box {
	width: 100%;
	max-width: none;
}
.rsvp-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 600;
	color: #141311;
	margin-bottom: 1.5rem;
}
.rsvp-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: #141311;
	margin-bottom: 1.5rem;
}
.venue-message.warning {
	color: #9b2b2b;
	background-color: #ffece6;
	padding: 1rem;
	border-radius: 6px;
	margin-top: 1rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	text-align: left;
	line-height: 1.6;
}
.rsvp-form {
	margin-top: 4rem;
	font-family: 'Montserrat', sans-serif;
	text-align: left;
}
.rsvp-form h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}
.rsvp-form label {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 1rem;
}
.rsvp-form input[type="text"], .rsvp-form input[type="number"] {
	width: 100%;
	padding: 0.6rem;
	margin-bottom: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
}
.hidden-field {
	display: none;
}
.rsvp-form button {
	background-color: #fa9d79;
	color: #141311;
	font-weight: 600;
	padding: 0.7rem 1.5rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.rsvp-form button:hover {
	background-color: #141311;
	color: white;
}
.rsvp-options {
	display: flex;
	gap: 2rem;
	margin-bottom: 0.2rem;
	/* 🔧 Minskat från 1rem */
}
.rsvp-options label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	font-family: 'Montserrat', sans-serif;
	cursor: pointer;
}
.rsvp-options input[type="radio"] {
	accent-color: #fa9d79;
	width: 18px;
	height: 18px;
}
/* Grundinställning – dolt */

#rsvpStatus {
	display: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 6px;
	text-align: left;
	line-height: 1.6;
}
/* Lyckat svar */

#rsvpStatus.success {
	background-color: #e9f6ec;
	color: #215c34;
	border: 1px solid #b2dfc2;
	animation: fadeInUp 0.4s ease-out;
}
/* Felmeddelande */

#rsvpStatus.error {
	background-color: #ffece6;
	color: #9b2b2b;
	border: 1px solid #f5c2c2;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* VENUE section */

body.modal-open {
	overflow: hidden;
}
.venue-container {
	margin-top: 3rem;
	text-align: center;
	display: flex;
	justify-content: center;
	padding: 1rem;
	flex-wrap: wrap;
}
.venue-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Cormorant Garamond', serif;
}
.venue-subheading {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #141311;
}
.venue-button {
	padding: 0.75rem 1.5rem;
	background-color: #141311;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	max-width: 240px;
	width: 100%;
}
.venue-button:hover {
	background-color: #fa9d79;
	color: #141311;
}
.venue-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 1rem;
}
.venue-modal-overlay.active {
	display: flex;
}
.venue-modal {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	max-width: 500px;
	width: 100%;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
	position: relative;
	text-align: center;
	animation: fadeIn 0.3s ease-in-out;
	overflow-y: auto;
	max-height: 90vh;
}
.venue-close {
	position: sticky;
	top: 0.7rem;
	right: 1rem;
	float: right;
	font-size: 1.5rem;
	cursor: pointer;
	color: #333;
	z-index: 10;
	background: white;
	border-radius: 50%;
	padding: 0.2rem 0.5rem;
}
.venue-modal input {
	width: 80%;
	padding: 0.6rem;
	margin: 1rem 0;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.venue-modal button {
	padding: 0.7rem 1.5rem;
	background-color: #141311;
	color: white;
	border: none;
	font-size: 1rem;
	font-family: 'Montserrat', sans-serif;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.venue-modal button:hover {
	background-color: #fa9d79;
	color: #141311;
}
.venue-instructions {
	font-size: 1rem;
	color: #444;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
}
.error-message {
	color: red;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	font-family: 'Montserrat', sans-serif;
}
.venue-info {
	/* Konsoliderat för att spegla nuvarande effekt: horisontellt centrerad, utan topp/bottenmarginal */
	margin: 0 auto;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	color: #141311;
}
.venue-image {
	margin-top: 1rem;
	width: 100%;
	height: auto;
	border-radius: 6px;
	object-fit: cover;
	max-height: 240px;
}
.venue-help {
	margin-top: 1.5rem;
	font-size: 0.9rem;
	color: #444;
	line-height: 1.6;
}
.venue-help a {
	color: #141311;
	text-decoration: underline;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.98);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
/* FAQ section */

.faq-section {
	background-color: #fcf9f2;
	padding: 4rem 2rem;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 5em;
}
.faq-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	text-align: center;
	margin-bottom: 2.5rem;
	color: #141311;
}
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}
.faq-item {
	border-bottom: 1px dashed #ccc;
	padding: 1.5rem 0;
	cursor: pointer;
	transition: background 0.3s ease;
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1rem;
	color: #141311;
}
.faq-question h3 {
	font-weight: 550;
}
.faq-toggle {
	font-size: 1.8rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}
.faq-answer {
	display: none;
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
}
.faq-answer ul {
	padding-left: 1.2rem;
	margin-top: 0.5rem;
}
.faq-item.active .faq-answer {
	display: block;
	animation: fadeIn 0.4s ease-in-out;
}
.faq-item.active .faq-toggle {
	/* 'content' har ingen effekt på icke-pseudo-element och tas bort tekniskt */
	transform: rotate(45deg);
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* === FOOTER SECTION (enhanced, no social icons) === */

.site-footer {
	position: relative;
	color: #fcf9f2;
	background: linear-gradient(135deg, #141311, #262522 45%, #2f2e2c);
	overflow: clip;
}
/* Dekorativ våg */

.footer-wave {
	display: block;
	width: 100%;
	height: 80px;
}
.footer-wave path {
	fill: #fcf9f2;
	opacity: 0.15;
}
/* Grid layout */

.footer-content.enhanced {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1.5rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(12, 1fr);
	align-items: start;
}
.footer-col {
	min-width: 0;
}
.footer-brand {
	grid-column: span 5;
	text-align: left;
}
.footer-links {
	grid-column: span 3;
}
.footer-contact {
	grid-column: span 4;
}
.footer-logo-link img {
	width: 84px;
	height: 84px;
	border-radius: 14px;
	display: block;
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}
.footer-logo-link:hover img {
	transform: translateY(-2px) scale(1.06) rotate(1.25deg);
}
.footer-tag {
	margin: .75rem 0 1rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.05rem;
	opacity: .9;
}
.footer-col h4 {
	margin: 0 0 .75rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	letter-spacing: .3px;
}
/* Länkar */

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .6rem;
}
.footer-link {
	position: relative;
	text-decoration: none;
	color: #eae6dc;
	font-family: 'Montserrat', sans-serif;
	font-size: .98rem;
	transition: color .25s ease, transform .18s ease;
}
.footer-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: #fa9d79;
	transition: width .25s ease;
}
.footer-link:hover {
	color: #ffffff;
	transform: translateX(2px) scale(1.02);
}
.footer-link:hover::after {
	width: 100%;
}
/* Telefon-chip (zoom in/out on hover) */

.footer-chip {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: .6rem 1rem;
	background: rgba(250, 157, 121, .12);
	border: 1px solid rgba(250, 157, 121, .35);
	border-radius: 999px;
	color: #ffe;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: .95rem;
	transition: transform .2s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
	will-change: transform;
}
.footer-chip:hover {
	transform: scale(1.05);
	background: rgba(250, 157, 121, .18);
	box-shadow: 0 10px 24px rgba(250, 157, 121, .25);
}
.footer-chip svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	fill: currentColor;
	opacity: .95;
}
/* Bottenrad */

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding: 1rem 1.5rem 1.6rem;
	text-align: center;
	font-size: .92rem;
	opacity: .9;
}
/* Back-to-top */

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fa9d79;
  color: #141311;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(250, 157, 121, .35);
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  z-index: 1002;
}

.to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  z-index: 1;
}

/* Progress ring (no masking) */
.to-top .to-top-progress {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  box-sizing: border-box;
  pointer-events: none;

  /* Draw the arc */
  background:
    conic-gradient(currentColor var(--p, 0%), transparent 0)
    border-box;

  /* Create a gap between the progress arc and the icon background */
  padding: 4px;
}
/* Circular progress ring */

.to-top-progress {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid transparent;
  background:
    conic-gradient(#141311 var(--p, 0%), rgba(20, 19, 17, .25) 0) padding-box,
    linear-gradient(#141311, #141311) border-box;
}

/* täck det inre hålet */
.to-top-progress::before {
  content: "";
  position: absolute;
  inset: 6px;                 /* ringens tjocklek */
  background: #fcf9f2;        /* matcha sidans bakgrund */
  border-radius: 999px;
}
/* Slide-in on scroll (reveal) */

.reveal {
	opacity: 0;
	transform: translateY(18px) scale(.98);
	transition: transform .65s cubic-bezier(.22, 1, .36, 1), opacity .6s ease;
	will-change: transform, opacity;
}
.reveal.in-view {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.footer-brand.reveal {
	transition-delay: .05s;
}
.footer-links.reveal {
	transition-delay: .12s;
}
.footer-contact.reveal {
	transition-delay: .18s;
}
.footer-bottom.reveal {
	transition-delay: .24s;
}
/* Typografi från din befintliga */

.footer-content p, .footer-bottom small, .developer {
	font-family: 'Montserrat', sans-serif;
}
/* RESPONSIVE */

@media (max-width: 980px) {
	.footer-brand {
		grid-column: span 12;
	}
	.footer-links {
		grid-column: span 6;
	}
	.footer-contact {
		grid-column: span 6;
	}
}
@media screen and (max-width: 985px) and (max-height: 958px) {
	.nav-side {
		display: none;
	}
	.nav-toggle {
		display: flex;
	}
	.navbar {
		justify-content: space-between;
	}
	.nav-logo {
		justify-content: flex-start;
		padding: 0;
	}
	.nav-logo img {
		height: 100px;
	}
}
@media screen and (max-width: 768px) {
	.hero-section {
		height: 70vh;
		/* Anpassa för mobil om full höjd känns för mycket */
	}
	.hero-names {
		font-size: 3rem;
	}
	.hero-date {
		font-size: 1rem;
	}
	.hero-text-wrapper {
		gap: 0.5rem;
	}
	.video-banner {
		height: 120px;
		/* Lite lägre på mobil */
	}
	.rsvp-container {
		flex-direction: column;
	}
	.rsvp-video video, .rsvp-box {
		max-width: 100%;
	}
	.rsvp-video video {
		height: 700px;
	}
}
@media screen and (min-width: 769px) {
	.rsvp-container {
		align-items: center;
		/* 🧲 Nyckeln! Detta centrerar RSVP-boxen mot videons höjd */
	}
	.rsvp-box {
		align-self: center;
		/* Extra säkerhet om du vill ha pixel-exakt kontroll */
	}
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
	.hero-names {
		font-size: 5rem;
	}
	.hero-date {
		font-size: 1.6rem;
	}
	.hero-text-wrapper {
		gap: 0.8rem;
	}
}
@media (max-width: 640px) {
	.footer-content.enhanced {
		grid-template-columns: 1fr;
		padding: 2.2rem 1.2rem;
		gap: 1.4rem;
	}
	.footer-col {
		text-align: center;
	}
	.footer-brand {
		display: grid;
		place-items: center;
	}
	.footer-links ul {
		place-items: center;
	}
	.footer-chip {
		justify-content: center;
	}
	.footer-wave {
		height: 60px;
	}
}
@media screen and (max-width: 600px) {
	.wedding-title {
		font-size: 2.2rem;
	}
	.wedding-box {
		padding: 2rem 1.2rem;
	}
	.map-button {
		width: 100%;
	}
	.footer-text .developer {
		font-size: 1.1rem;
	}
	.footer-text p {
		font-size: 0.95rem;
	}
	.footer-logo img {
		width: 65px;
		height: 65px;
	}
}
@media screen and (max-width: 500px) {
	.countdown-number {
		font-size: 2.2rem;
	}
	.countdown-label {
		font-size: 0.85rem;
	}
	.countdown-wrapper {
		gap: 1rem;
	}
}
@media screen and (max-width: 480px) {
	.map-button {
		display: block;
		width: 100%;
		padding: 1rem;
		font-size: 1rem;
		box-sizing: border-box;
		text-align: center;
		word-wrap: break-word;
	}
	.venue-modal {
		padding: 1.2rem;
	}
	.venue-modal input {
		width: 100%;
	}
	.venue-image {
		max-height: 180px;
	}
	.venue-button {
		font-size: 0.9rem;
		padding: 0.7rem 1rem;
	}
}
@media screen and (max-width: 360px) {
	.map-button {
		font-size: 0.95rem;
		padding: 0.9rem;
	}
}
/* DESKTOP HIDING OF MOBILE NAV */

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