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

:root {
	--primary: #2b2623;
	--secondary: #f6f5f3;
	--accent-cyan: #d6b98c;
	--accent-orange: #d6b98c;
	--accent-purple: #d6b98c;
	--accent-green: #10b981;
	--text: #1f1f1f;
	--text-light: #6f6a65;
	--text-muted: #6f6a65;
	--border: #efe5d6;
	--bg: #ffffff;
	--bg-light: #f6f5f3;
	--primary-gold: #c49a3a;
	--text-dark: #111827;
	;
	--border-light: #f3f4f6;
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--primary-brown: #8b5e3c;
	--border-tan: #eaddd1;
	--accent-tan: #d7b9a0;

	--living-glow: 0 0 20px rgba(214, 185, 140, 0.6);
	--pulse-glow: 0 0 30px rgba(214, 185, 140, 0.8);
	--kinetic-glow: 0 0 40px rgba(214, 185, 140, 1);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	background: linear-gradient(-45deg, var(--bg), var(--bg-light), var(--bg), var(--secondary));
	background-size: 400% 400%;
	animation: breathingBg 8s ease-in-out infinite;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	cursor: default;
}

@keyframes breathingBg {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

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


/* top navigation */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.hidden {
	transform: none;
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-bottom-color: transparent;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	height: 20px;
}

.logo {
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary);
	cursor: pointer;
}

.logo a {
	background: red;
	display: inline-block;
}

.logo-full {
	height: 48px;
	width: auto;
}
.nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.nav-link:hover::before {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.28s ease;
  z-index: 1100;
}

/* .nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
} */

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-item {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.nav-dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.header-right {
	display: flex;
	align-items: flex-end;
	gap: 1rem;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 20px;
	cursor: pointer;
}

.hamburger span {
	display: block;
	height: 3px;
	background: var(--text);
	border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.auth-buttons {
	display: flex;
	gap: 0.75rem;
}

.btn-login {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	padding: 0.65rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-login:hover {
	border-color: var(--text);
	background: var(--bg-light);
	transform: translateY(-2px);
}

.btn-signup {
	background: var(--primary);
	color: var(--bg);
	border: none;
	padding: 0.65rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.btn-signup:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(10, 14, 39, 0.3);
}

.btn-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

@keyframes shine {
	to {
		left: 100%;
	}
}

/* footer */
.footer {
	background: var(--primary);
	color: rgba(255, 255, 255, 0.8);
	padding: 50px 0 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
	.footer {
		padding: 50px 0;
	}
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 2.5fr;
	gap: 5rem;
	margin-bottom: 4rem;
}

.footer-brand .logo {
	margin-bottom: 1.5rem;
}

.footer-desc {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	font-size: 0.95rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.footer-col h3 {
	color: white;
	font-weight: 700;
	margin-bottom: 1.25rem;
	font-size: 1rem;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
	width: fit-content;
}

.footer-col a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent-cyan);
	transition: width 0.3s ease;
}

.footer-col a:hover {
	color: white;
}

.footer-col a:hover::after {
	width: 100%;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.footer-social {
	display: flex;
	gap: 1.5rem;
}

.footer-social a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	color: var(--accent-cyan);
	transform: translateY(-2px);
}

.footer-demo-btn {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	text-align: left;
	font: inherit;
	color: inherit;
	opacity: 0.8;
	cursor: pointer;
}

.footer-demo-btn:hover {
	opacity: 1;
}


/* ==========================================
   HEADER SMALL-SCREEN FIXES (480px and below)
   Prevents logo / auth-buttons / hamburger collision.
   These rules do not affect layouts above 480px.
   ========================================== */

@media (max-width: 480px) {

	/* Container: breathing room, no overflow */
	.header .container {
		gap: 0.4rem;
		padding: 0 1rem;
	}

	/* Logo: scale down so it doesn't crowd siblings */
	.logo-full {
		width: 110px;
	}

	/* Auth buttons: keep in a row (override the 425px column-stack rule)
     and reduce size so they fit next to the hamburger */
	.auth-buttons {
		flex-direction: row;
	}

	.btn-login,
	.btn-signup {
		padding: 0.45rem 0.75rem;
		font-size: 0.78rem;
	}
}

@media (max-width: 360px) {

	/* Further tighten logo and buttons */
	.logo-full {
		width: 80px;
	}

	.btn-login,
	.btn-signup {
		padding: 0.4rem 0.6rem;
		font-size: 0.72rem;
	}
}

@media (max-width: 320px) {

	/* Minimum viable header: hide Login to preserve space */
	.logo-full {
		width: 70px;
	}

	.btn-login {
		padding: 0.4rem 0.55rem;
	}

	.btn-signup {
		padding: 0.4rem 0.55rem;
	}
}

@media (max-width: 425px) {
	.auth-buttons {
		/* flex-direction: column; */
	}
}

@media (max-width: 1023px) {
	.header .container {
		display: flex;
		align-items: center;
	}

	.auth-buttons {
		gap: 1rem;
	}

	.hamburger {
		display: flex;
	}

	.nav {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		width: 200px;
		flex-direction: column;
		background: rgba(255, 255, 255, 0.95) !important;
		gap: 5px;
		padding: 1rem;
		border-radius: 0 0 8px 8px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-dropdown {
		min-height: 40px;
	}

	.nav.active {
		display: flex;
	}
}


.footer-main {
	grid-template-columns: 1.5fr 2.5fr;
	gap: 3rem;
}

.footer-links {
	grid-template-columns: repeat(3, 1fr);
}


@media (max-width: 767px) {
	.footer-links {
		grid-template-columns: 1fr;
	}

	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-col h3 {
		margin-bottom: 5px;
	}
}

.footer-bottom {
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
}


/* faq */
.faq-container {
  max-width: 860px;
  margin: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-align: left;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.6rem 1.8rem;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  text-align: start;
}

.faq-chevron {
  min-width: 12px;
  max-width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer-inner {
  padding: 0 1.8rem 1.8rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
.nav-link {
	padding-left: 0 !important;
}
 
.nav-dropdown-menu {
	min-width: 10px !important;
}
}