:root {
	--pastel-pink: #fec5d8;
	--pastel-pink-light: #ffece9;
	--pastel-pink-deep: #ff91ae;
	--pastel-purple: #d8b7ea;
	--pastel-purple-light: #f4daf9;
	--pastel-purple-deep: #b69fd5;
	--periwinkle: #c6c7ff;
	--mint: #b5e5ff;
	--soft-lavender: #e1a9f6;
	--text-dark: #4a4a6a;
	--text-light: #7a7a9a;
	--white: #ffffff;
	--cream: #fffbfd;

	--gradient-main: linear-gradient(
		135deg,
		var(--pastel-pink-light) 0%,
		var(--pastel-purple-light) 50%,
		var(--periwinkle) 100%
	);
	--gradient-romantic: linear-gradient(
		135deg,
		var(--pastel-pink) 0%,
		var(--pastel-purple) 100%
	);
	--gradient-button: linear-gradient(
		135deg,
		var(--pastel-pink-deep) 0%,
		var(--pastel-purple-deep) 100%
	);

	--safe-area-top: env(safe-area-inset-top);
	--safe-area-bottom: env(safe-area-inset-bottom);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: "Poppins", sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Secret Code Entry Screen - NO AUDIO HERE */
#entry-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-main);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	transition:
		opacity 0.8s ease,
		visibility 0.8s;
	padding: var(--safe-area-top) 20px var(--safe-area-bottom);
}

#entry-screen.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.entry-container {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 2.5rem;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(182, 159, 213, 0.3);
	text-align: center;
	max-width: 90%;
	width: 400px;
	animation: float 6s ease-in-out infinite;
}

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

.entry-title {
	font-family: "Dancing Script", cursive;
	font-size: 2.5rem;
	color: var(--pastel-purple-deep);
	margin-bottom: 1rem;
}

.entry-subtitle {
	color: var(--text-light);
	margin-bottom: 2rem;
	font-size: 0.9rem;
}

.code-input {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--pastel-purple);
	border-radius: 15px;
	font-size: 1.5rem;
	text-align: center;
	letter-spacing: 1rem;
	background: var(--white);
	color: var(--text-dark);
	margin-bottom: 1rem;
	transition: all 0.3s;
	font-family: "Poppins", sans-serif;
}

.code-input:focus {
	outline: none;
	border-color: var(--pastel-pink-deep);
	box-shadow: 0 0 20px rgba(255, 145, 174, 0.3);
}

.btn-primary {
	background: var(--gradient-button);
	color: white;
	border: none;
	padding: 1rem 2.5rem;
	border-radius: 25px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
	box-shadow: 0 4px 15px rgba(182, 159, 213, 0.4);
	width: 100%;
	font-family: "Poppins", sans-serif;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(182, 159, 213, 0.6);
}

.btn-primary:active {
	transform: scale(0.98);
}

.error-message {
	color: #ff6b6b;
	margin-top: 1rem;
	font-size: 0.9rem;
	opacity: 0;
	transition: opacity 0.3s;
}

.error-message.show {
	opacity: 1;
}

/* Main App Container */
#main-app {
	display: none;
	min-height: 100vh;
	padding-top: 70px;
}

#main-app.visible {
	display: block;
	animation: fadeIn 1s ease;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 0 1rem;
	box-shadow: 0 2px 20px rgba(182, 159, 213, 0.1);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--safe-area-top);
}

.nav-brand {
	font-family: "Dancing Script", cursive;
	font-size: 1.6rem;
	background: var(--gradient-button);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	position: fixed;
	left: -100%;
	top: 70px;
	flex-direction: column;
	background: white;
	width: 100%;
	text-align: center;
	transition: 0.3s ease;
	box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
	padding: 2rem 0;
	gap: 1.5rem;
	margin: 0;
}

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

.nav-link {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 1.1rem;
	padding: 0.8rem 0;
	display: block;
	transition: color 0.3s;
}

.nav-link.active {
	color: var(--pastel-purple-deep);
}

.mobile-menu-btn {
	display: block;
	background: none;
	border: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: var(--pastel-purple-deep);
	padding: 0.5rem;
	z-index: 1001;
}

/* Sections */
.section {
	display: none;
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
	min-height: calc(100vh - 70px);
}

.section.active {
	display: block;
	animation: slideUp 0.6s ease;
}

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

.section-title {
	font-family: "Dancing Script", cursive;
	font-size: 2.2rem;
	text-align: center;
	margin-bottom: 2rem;
	background: var(--gradient-button);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Home / Invitation Section */
.hero {
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--gradient-main);
	border-radius: 25px;
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "💕";
	position: absolute;
	font-size: 8rem;
	opacity: 0.1;
	top: -10px;
	right: -10px;
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.2;
	}
}

.hero h1 {
	font-family: "Dancing Script", cursive;
	font-size: 2.2rem;
	color: var(--text-dark);
	margin-bottom: 0.8rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 1.5rem;
	line-height: 1.5;
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.countdown-item {
	background: rgba(255, 255, 255, 0.9);
	padding: 1rem;
	border-radius: 15px;
	min-width: 70px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	flex: 1;
	max-width: 80px;
}

.countdown-number {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--pastel-purple-deep);
	display: block;
	line-height: 1;
}

.countdown-label {
	font-size: 0.7rem;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 0.3rem;
	display: block;
}

/* The Ask Section (Interactive Buttons) */
.ask-container {
	background: white;
	padding: 2rem 1.5rem;
	border-radius: 25px;
	box-shadow: 0 10px 40px rgba(182, 159, 213, 0.2);
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}

.ask-question {
	font-family: "Dancing Script", cursive;
	font-size: 2rem;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.ask-details {
	background: var(--pastel-purple-light);
	padding: 1.2rem;
	border-radius: 15px;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.ask-details h3 {
	color: var(--pastel-purple-deep);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.ask-details p {
	font-size: 0.95rem;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.ask-details small {
	font-size: 0.8rem;
	color: var(--text-light);
}

.button-container {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	min-height: 150px;
	position: relative;
	flex-wrap: wrap;
	padding: 1rem 0;
}

.response-btn {
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	font-family: "Poppins", sans-serif;
	touch-action: manipulation;
}

.btn-yes {
	background: var(--gradient-button);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 145, 174, 0.4);
	min-width: 120px;
}

.btn-yes:hover,
.btn-yes:active {
	transform: scale(1.05);
}

.btn-no {
	background: #e0e0e0;
	color: var(--text-light);
	min-width: 100px;
}

.btn-no.moving {
	position: fixed !important;
	z-index: 9999;
	transition: all 0.3s ease;
}

.success-message {
	display: none;
	background: var(--gradient-main);
	padding: 2rem;
	border-radius: 20px;
	margin-top: 1.5rem;
	animation: bounceIn 0.6s;
}

@keyframes bounceIn {
	0% {
		transform: scale(0.3);
		opacity: 0;
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.success-message h2 {
	font-family: "Dancing Script", cursive;
	font-size: 2.5rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.success-message > p {
	font-size: 1.1rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.trip-details {
	margin-top: 1rem;
	padding: 1.5rem;
	background: white;
	border-radius: 20px;
	text-align: left;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trip-details p {
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
	line-height: 1.4;
}

.trip-details strong {
	color: var(--pastel-purple-deep);
}

/* Love Letter Section */
.letter-container {
	background: white;
	padding: 2rem 1.5rem;
	border-radius: 25px;
	box-shadow: 0 10px 40px rgba(182, 159, 213, 0.2);
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.letter-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 8px;
	background: var(--gradient-romantic);
	border-radius: 25px 25px 0 0;
}

.letter-header {
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--pastel-pink-light);
}

.letter-date {
	color: var(--text-light);
	font-style: italic;
	font-size: 0.9rem;
}

.letter-content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--text-dark);
	white-space: pre-wrap;
}

.letter-signature {
	margin-top: 2rem;
	text-align: right;
	font-family: "Dancing Script", cursive;
	font-size: 1.8rem;
	color: var(--pastel-purple-deep);
}

/* Wave Text Animation */
.wave-text span {
	display: inline-block;
	animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
	animation-delay: 0s;
}
.wave-text span:nth-child(2) {
	animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
	animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
	animation-delay: 0.6s;
}
.wave-text span:nth-child(5) {
	animation-delay: 0.8s;
}
.wave-text span:nth-child(6) {
	animation-delay: 1s;
}
.wave-text span:nth-child(7) {
	animation-delay: 1.2s;
}
.wave-text span:nth-child(8) {
	animation-delay: 1.4s;
}

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

/* Music Section */
.music-controls {
	background: white;
	padding: 1.5rem;
	border-radius: 20px;
	margin-bottom: 2rem;
	box-shadow: 0 5px 20px rgba(182, 159, 213, 0.1);
	text-align: center;
}

.now-playing {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 0.5rem;
}

.current-song {
	font-family: "Dancing Script", cursive;
	font-size: 1.5rem;
	color: var(--pastel-purple-deep);
	margin-bottom: 1rem;
}

.audio-controls {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.control-btn {
	background: var(--gradient-button);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(182, 159, 213, 0.3);
}

.control-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.volume-slider {
	width: 100px;
	height: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: var(--pastel-purple-light);
	border-radius: 3px;
	outline: none;
}

.volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	background: var(--pastel-purple-deep);
	border-radius: 50%;
	cursor: pointer;
}

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

@media (min-width: 640px) {
	.music-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.music-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(182, 159, 213, 0.15);
	transition: transform 0.3s;
	cursor: pointer;
	border: 2px solid transparent;
}

.music-card:hover,
.music-card.active {
	transform: translateY(-3px);
	border-color: var(--pastel-pink);
}

.music-cover {
	height: 150px;
	background: var(--gradient-romantic);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	position: relative;
}

.play-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.music-card:hover .play-overlay {
	opacity: 1;
}

.play-icon {
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.music-info {
	padding: 1.2rem;
}

.music-title {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.3rem;
	font-size: 1.1rem;
}

.music-artist {
	color: var(--text-light);
	font-size: 0.9rem;
}

.music-note {
	margin-top: 0.8rem;
	padding-top: 0.8rem;
	border-top: 1px solid var(--pastel-pink-light);
	font-style: italic;
	color: var(--pastel-purple-deep);
	font-size: 0.85rem;
	line-height: 1.4;
}

/* Gallery Section */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 640px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--gradient-romantic);
	cursor: pointer;
	transition: transform 0.3s;
}

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

.gallery-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
}

.gallery-placeholder p {
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	color: white;
	padding: 1.5rem 1rem 0.8rem;
	font-size: 0.85rem;
}

/* Notes Section */
.notes-controls {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.notes-controls {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.category-filters {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	overflow-x: auto;
	padding-bottom: 0.5rem;
}

.filter-btn {
	padding: 0.5rem 1rem;
	border: 2px solid var(--pastel-purple);
	background: transparent;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
	color: var(--text-dark);
	font-size: 0.85rem;
	font-family: "Poppins", sans-serif;
	white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
	background: var(--pastel-purple);
	color: white;
}

.add-note-btn {
	background: var(--gradient-button);
	color: white;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s;
	font-family: "Poppins", sans-serif;
	width: 100%;
}

@media (min-width: 640px) {
	.add-note-btn {
		width: auto;
	}
}

.add-note-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(182, 159, 213, 0.4);
}

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

@media (min-width: 640px) {
	.notes-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.notes-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.note-card {
	background: white;
	border-radius: 20px;
	padding: 1.2rem;
	box-shadow: 0 5px 20px rgba(182, 159, 213, 0.1);
	transition: all 0.3s;
	border-left: 4px solid var(--pastel-pink);
}

.note-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(182, 159, 213, 0.2);
}

.note-category {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	background: var(--pastel-purple-light);
	color: var(--pastel-purple-deep);
	border-radius: 15px;
	font-size: 0.75rem;
	margin-bottom: 0.8rem;
	font-weight: 500;
	text-transform: capitalize;
}

.note-content {
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
}

.note-date {
	font-size: 0.75rem;
	color: var(--text-light);
}

/* Note Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	padding: 1.5rem;
	border-radius: 25px;
	width: 100%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	animation: slideUp 0.3s;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.modal-title {
	font-family: "Dancing Script", cursive;
	font-size: 1.8rem;
	color: var(--pastel-purple-deep);
}

.close-modal {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text-light);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 0.8rem;
	border: 2px solid var(--pastel-purple-light);
	border-radius: 15px;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
	transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: var(--pastel-pink-deep);
}

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

/* Footer */
.footer {
	text-align: center;
	padding: 2rem 1rem;
	background: var(--gradient-main);
	margin-top: 3rem;
	color: var(--text-dark);
	padding-bottom: calc(2rem + var(--safe-area-bottom));
}

.footer-heart {
	color: var(--pastel-pink-deep);
	animation: heartbeat 1.5s ease-in-out infinite;
	display: inline-block;
}

@keyframes heartbeat {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

/* Floating hearts animation */
.floating-hearts {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	z-index: 9998;
}

.heart {
	position: absolute;
	color: var(--pastel-pink);
	font-size: 1.5rem;
	animation: floatUp 10s linear infinite;
	opacity: 0.6;
}

@keyframes floatUp {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 0.6;
	}
	90% {
		opacity: 0.6;
	}
	100% {
		transform: translateY(-100vh) rotate(720deg);
		opacity: 0;
	}
}

/* Audio Permission Overlay */
.audio-permission-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1500;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

.audio-permission-overlay.active {
	display: flex;
}

.audio-permission-content {
	background: white;
	padding: 2rem;
	border-radius: 25px;
	text-align: center;
	max-width: 400px;
	animation: slideUp 0.3s;
}

.audio-permission-content h3 {
	font-family: "Dancing Script", cursive;
	font-size: 2rem;
	color: var(--pastel-purple-deep);
	margin-bottom: 1rem;
}

.audio-permission-content p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.enable-audio-btn {
	background: var(--gradient-button);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 500;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
}

/* Tropical Island Vibe for Location Name */
.island-location {
	background: linear-gradient(
		135deg,
		#40e0d0 0%,
		#20b2aa 25%,
		#48d1cc 50%,
		#00ced1 75%,
		#5f9ea0 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	position: relative;
	animation:
		islandShimmer 3s ease-in-out infinite,
		islandFloat 4s ease-in-out infinite;
	display: inline-block;
	text-shadow: 0 0 30px rgba(64, 224, 208, 0.3);
}

@keyframes islandShimmer {
	0%,
	100% {
		filter: brightness(1) saturate(1);
		background-position: 0% 50%;
	}
	50% {
		filter: brightness(1.2) saturate(1.3);
		background-position: 100% 50%;
	}
}

@keyframes islandFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-2px) rotate(0.5deg);
	}
	50% {
		transform: translateY(0px) rotate(0deg);
	}
	75% {
		transform: translateY(-1px) rotate(-0.5deg);
	}
}

/* Add wave decoration */
.island-location::after {
	/* content: '🌊'; */
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.8rem;
	animation: wave 2s ease-in-out infinite;
	-webkit-text-fill-color: initial;
}

@keyframes wave {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-3px);
	}
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
	.section {
		padding: 30px;
	}

	.hero h1 {
		font-size: 3rem;
	}

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

/* Desktop Optimizations */
@media (min-width: 1024px) {
	.nav-menu {
		position: static;
		flex-direction: row;
		background: transparent;
		box-shadow: none;
		padding: 0;
		width: auto;
	}

	.mobile-menu-btn {
		display: none;
	}

	.section {
		padding: 40px;
	}

	.hero {
		padding: 4rem;
	}

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

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

	.ask-question {
		font-size: 2.5rem;
	}
}

/* iPhone-specific optimizations */
@supports (-webkit-touch-callout: none) {
	.btn-primary,
	.response-btn,
	.control-btn,
	.filter-btn,
	.add-note-btn {
		-webkit-appearance: none;
	}
}
