* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden !important;
	width: 100%;
	max-width: 100vw;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100vw;
	padding: 22px 0 20px;
	overflow-x: hidden;
}

section {
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
}

.cafe-container {
	width: 100%;
	max-width: 100%;
}

.header-container {
	margin-top: 40px;
}

/* Hero Section */
.hero-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	margin: 40px 0;
	max-width: 100%;
	width: 100%;
	padding: 0;
}

.hero-image {
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 3 / 4.5;
	border-radius: 0;
	object-fit: cover;
	object-position: center top;
	animation: slideInRight 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards;
}

.hero-cta {
	text-align: center;
	max-width: 550px;
	animation: fadeIn 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards;
}

.hero-cta h2 {
	font-family: var(--heading-font);
	font-size: 48px;
	margin: 0 0 8px 0;
	line-height: 1;
}

.hero-cta p {
	font-size: 18px;
	margin: 0 0 12px 0;
	line-height: 1.6;
	padding: 0 20px;
}

.hero-cta p:first-of-type {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	padding: 0;
}

.hero-btn {
	font-size: 18px;
	padding: 16px 32px;
	display: inline-block;
	margin-top: 8px;
}

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

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

/* About/What is STAMPR Section */
.about-section {
	max-width: 900px;
	margin: 200px auto;
	padding: 80px 40px;
	text-align: center;
	position: relative;
	overflow: visible;
}

.about-card-decoration {
	position: absolute;
	left: -100px;
	top: 50%;
	transform: translateY(-50%) rotate(15deg);
	width: 315px;
	height: auto;
	opacity: 1;
}

@keyframes slideCardInFromRight {
	from {
		opacity: 0;
		transform: translateY(-50%) rotate(15deg) translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateY(-50%) rotate(15deg) translateX(0);
	}
}

.about-card-decoration.reveal-anime {
	opacity: 0;
	transform: translateY(-50%) rotate(15deg) translateX(100px);
}

.about-card-decoration.reveal-anime.reveal-active {
	animation: slideCardInFromRight 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards;
}

.about-content {
	margin-bottom: 100px;
}

.about-content h3 {
	font-family: var(--heading-font);
	font-size: 42px;
	font-weight: 400;
	margin: 0 0 40px 0;
	line-height: 1.1;
}

.about-content p {
	font-family: var(--mono-font);
	font-size: 18px;
	line-height: 1.9;
	color: var(--text-color);
	margin: 0;
}

.inline-link {
	color: var(--orange);
	text-decoration: none;
	font-weight: 500;
	transition: transform 0.2s ease;
	white-space: nowrap;
	display: inline-block;
}

.inline-link:hover {
	color: var(--orange);
	transform: scale(1.05) rotate(-2deg);
	text-decoration: none;
}

/* Stats Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px;
	margin-top: 100px;
	position: relative;
	z-index: 1;
}

.stat-item {
	text-align: center;
	opacity: 0;
	transform: scale(0.75);
}

.stat-item:nth-child(1).reveal-active {
	animation: reveal 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards 0s;
}

.stat-item:nth-child(2).reveal-active {
	animation: reveal 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards 0.1s;
}

.stat-item:nth-child(3).reveal-active {
	animation: reveal 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards 0.2s;
}

.stat-item:nth-child(4).reveal-active {
	animation: reveal 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards 0.3s;
}

.stat-item h4 {
	font-family: var(--heading-font);
	font-size: 48px;
	font-weight: 400;
	margin: 0 0 12px 0;
	line-height: 1;
	color: var(--heading-color);
}

.stat-item p {
	font-family: var(--mono-font);
	font-size: 14px;
	color: var(--text-color);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Join CTA Section */
.join-cta-section {
	width: 100%;
	background: var(--white);
	padding: 0;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	align-items: center;
	margin-top: 0;
}

.join-cta-mobile {
	max-width: 1600px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
	padding: 0;
}

.join-cta-mobile > div:first-child {
	order: 1;
	padding: 0 0 0 40px;
}

.join-cta-image {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	order: 2;
	padding: 0;
}

.join-cta-image img {
	width: 100%;
	max-width: 900px;
	height: auto;
	max-height: 80vh;
	aspect-ratio: 3 / 4.5;
	object-fit: cover;
	object-position: center;
}

.join-cta-mobile h2 {
	font-family: var(--heading-font);
	font-size: 48px;
	margin: 0 0 24px 0;
	line-height: 1.2;
	color: var(--heading-color);
}

.join-cta-mobile p {
	font-size: 18px;
	line-height: 1.8;
	margin: 0 0 24px 0;
	color: var(--text-color);
}

.join-cta-mobile .btn {
	font-size: 18px;
	padding: 16px 32px;
	display: inline-block;
}

/* FAQ Section */
.faq-section {
	width: 100%;
	padding: 20px 20px;
	display: flex;
	justify-content: center;
	background: var(--white);
}

.faq-section > div {
	max-width: 900px;
	width: 100%;
}

.faq-section h2 {
	font-family: var(--heading-font);
	font-size: 48px;
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.2;
	color: var(--heading-color);
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-bottom: 1px solid #ddd;
}

.faq-question {
	width: 100%;
	padding: 24px 0;
	text-align: left;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-tap-highlight-color: transparent;
}

.faq-question h3 {
	font-family: var(--heading-font);
	font-size: 20px;
	margin: 0;
	color: var(--heading-color);
	pointer-events: none;
	flex: 1;
}

.faq-icon {
	font-size: 24px;
	color: var(--orange);
	pointer-events: none;
	flex-shrink: 0;
}

.faq-answer {
	display: none;
	padding-bottom: 24px;
}

.faq-answer p {
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
	color: var(--text-color);
}

/* homepage styles */
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	padding: 0 30px;
	position: sticky;
	top: 0;
	background: var(--white);
	z-index: 1000;
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 24px;
}
.dropdown{
	display: none;
}
.link-underline-hidden{
	text-decoration: none;
}
.header-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	width: 100%;
	min-height: 595px;
}
.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: 40px auto;
	padding: 0 30px;
}

/* home page grid */
.grid-title-container {
	padding: 0 0 10px;
	width: 100%;
	display: flex;
	gap:10px;
}
.grid-items-container{
	padding: 40px 15px 0;
	width: 100%;
	display: flex;
	gap:10px;
	flex-wrap: wrap;
	overflow: hidden;
}
.single-grid-item-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: calc((100% - 20px) / 3);
	gap: 30px;
	aspect-ratio: 1 / 1; 
}
.single-grid-item-border {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: calc((100% - 20px) / 3);
	aspect-ratio: 1 / 1; 
	gap: 30px;
	border-left: 0.5px solid #000;
	border-right: 0.5px solid #000;
}
.anime-container{
	width: calc((100% - 20px) / 3);
	gap: 30px;
	aspect-ratio: 1 / 1;
}
.anime-container-last-row{
	width: calc((100% - 10px) / 2);
	aspect-ratio: 1 / 1;
}
.single-grid-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: relative;
}
.single-grid-item p {
	pointer-events: none;
	text-decoration: none !important;
	font-weight: 500;
	font-size: 24px;
}
.grid-text-overlay {
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	z-index: 1;
	text-align: center;
	pointer-events: none;
}
.grid-text-overlay p {
	font-weight: 500;
	font-size: 22px;
	margin: 0;
	padding: 0 20px;
}
.instagram-bottom {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
}
.instagram-arrow {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
.instagram-handle {
	font-weight: 500;
	font-size: 22px;
	margin: 0;
}
.single-grid-item a {
	text-decoration: none !important;
	color: transparent !important;
}
.single-grid-item a:hover {
	text-decoration: none !important;
	color: transparent !important;
}
.single-grid-item.bg-orange p {
	color: var(--black) !important;
	text-decoration: none !important;
}
.single-grid-item.bg-orange a,
.single-grid-item.bg-orange a:hover {
	color: transparent !important;
	text-decoration: none !important;
}
.single-grid-item-last-row{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width:100%;
	height:100%;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.single-grid-item-last-row p {
	pointer-events: none;
	text-decoration: none !important;
}
.single-grid-item-last-row a {
	text-decoration: none !important;
	color: transparent !important;
}
.single-grid-item-last-row a:hover {
	text-decoration: none !important;
	color: transparent !important;
}
.single-grid-item-last-row.bg-blue p {
	color: var(--white) !important;
	text-decoration: none !important;
}
.single-grid-item-last-row.bg-blue a,
.single-grid-item-last-row.bg-blue a:hover {
	color: transparent !important;
	text-decoration: none !important;
}
.single-grid-item-last-row.bg-orange p {
	color: var(--black) !important;
	text-decoration: none !important;
}
.single-grid-item-last-row.bg-orange a,
.single-grid-item-last-row.bg-orange a:hover {
	color: transparent !important;
	text-decoration: none !important;
}

.grid-fill-image{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	z-index: 0;
}
.grid-image{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	object-fit: contain;
	object-position: center;
	padding: 15px 15px 90px 15px;
	box-sizing: border-box;
	position: absolute;
	inset: 0;
	z-index: 0;
}

.grid-text-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 100%;
	margin: 0;
	padding: 16px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	box-sizing: border-box;
}
.grid-text-container p {
	text-decoration: none !important;
	color: inherit !important;
	font-size: 18px;
	font-weight: 400;
}
/* Override link styles when grid-text-container is inside an anchor */
a .grid-text-container p {
	text-decoration: none !important;
	color: inherit !important;
}
a:hover .grid-text-container p {
	text-decoration: none !important;
	color: inherit !important;
}
.grid-text-container-last-row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 50%;
	margin: 0 auto;
}
.grid-text-container-last-row p{
	font-weight: 500;
}
.grid-text-container-last-row p:first-child {
	font-size: 24px;
	font-weight: 500;
}
.grid-text-container-last-row p:last-child {
	font-size: 18px;
	font-weight: 400;
}
.grid-text-container p:first-child {
	font-weight: 500;
}
.grid-text-container p:last-child {
	font-weight: 400;
}

/* reveal animation */
.reveal-anime {
  opacity: 0;
  transform: scale(0.75);
}

.reveal-anime.reveal-active {
  animation: reveal 0.8s cubic-bezier(0.22, 0.61, 0.35, 1) forwards;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* footer style*/
.footer-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 88px 30px 40px;
	margin-top: 0;
}

.footer-cta {
	width: 100%;
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
}

.sign-up-link-btn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	border: 2px solid #000;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.sign-up-link-btn h3 {
	margin: 0;
	font-size: clamp(16px, 3vw, 24px);
}

.sign-up-link-btn:hover {
	background-color: #f5f5f5;
	transform: translateY(-2px);
}

.sign-up-link-btn img{
	transition: transform 0.3s ease-out;
	width: 32px;
	height: 32px;
}

.sign-up-link-btn:hover img{
	transform: translateX(8px) translateY(-8px);
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	width: 100%;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid #ddd;
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}


.footer-bottom {
	width: 100%;
	text-align: center;
	padding-top: 20px;
}

.footer-cards {
	width: 100%;
	max-width: 1200px;
	height: 60px;
	margin: 20px auto 0;
	overflow: visible;
	position: relative;
}

.card-item {
	width: 120px;
	height: 160px;
	cursor: pointer;
	transform-origin: bottom center;
	position: absolute;
	bottom: 0;
	z-index: 1;
	transform: translateY(70%) rotate(var(--initial-rotate));
}

.card-item.flicked {
	animation: cardThrow 1.5s cubic-bezier(0.33, 0, 0.2, 1) forwards;
	z-index: 9999;
	position: fixed;
}

.card-item:nth-child(1) { 
	left: 10%;
	--initial-rotate: -8deg; 
	--throw-rotate: -45deg; 
	--x-offset: -200px; 
	--spin: -720deg;
}
.card-item:nth-child(2) { 
	left: 27.5%;
	--initial-rotate: -4deg; 
	--throw-rotate: -25deg; 
	--x-offset: -100px; 
	--spin: -540deg;
}
.card-item:nth-child(3) { 
	left: 45%;
	--initial-rotate: 0deg; 
	--throw-rotate: 0deg; 
	--x-offset: 0px; 
	--spin: 360deg;
}
.card-item:nth-child(4) { 
	left: 62.5%;
	--initial-rotate: 4deg; 
	--throw-rotate: 25deg; 
	--x-offset: 100px; 
	--spin: 540deg;
}
.card-item:nth-child(5) { 
	left: 80%;
	--initial-rotate: 8deg; 
	--throw-rotate: 45deg; 
	--x-offset: 200px; 
	--spin: 720deg;
}

.card-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-item:hover img {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes cardThrow {
	0% {
		transform: translateY(70%) translateX(0) rotate(var(--initial-rotate)) scale(1);
		opacity: 1;
	}
	3% {
		transform: translateY(65%) translateX(calc(var(--x-offset) * 0.03)) rotate(calc(var(--initial-rotate) + 30deg)) scale(1.02);
		opacity: 1;
	}
	8% {
		transform: translateY(55%) translateX(calc(var(--x-offset) * 0.08)) rotate(calc(var(--initial-rotate) + 90deg)) scale(1.05);
		opacity: 1;
	}
	15% {
		transform: translateY(30%) translateX(calc(var(--x-offset) * 0.15)) rotate(calc(var(--initial-rotate) + 160deg)) scale(1.03);
		opacity: 1;
	}
	25% {
		transform: translateY(-50px) translateX(calc(var(--x-offset) * 0.25)) rotate(calc(var(--initial-rotate) + 270deg)) scale(1);
		opacity: 1;
	}
	35% {
		transform: translateY(-200px) translateX(calc(var(--x-offset) * 0.4)) rotate(calc(var(--initial-rotate) + 380deg)) scale(0.98);
		opacity: 1;
	}
	50% {
		transform: translateY(-400px) translateX(calc(var(--x-offset) * 0.6)) rotate(calc(var(--initial-rotate) + 520deg)) scale(0.93);
		opacity: 1;
	}
	65% {
		transform: translateY(-600px) translateX(calc(var(--x-offset) * 0.75)) rotate(calc(var(--initial-rotate) + 640deg)) scale(0.88);
		opacity: 1;
	}
	80% {
		transform: translateY(-800px) translateX(calc(var(--x-offset) * 0.9)) rotate(calc(var(--initial-rotate) + var(--spin) - 40deg)) scale(0.82);
		opacity: 1;
	}
	92% {
		transform: translateY(-950px) translateX(var(--x-offset)) rotate(calc(var(--initial-rotate) + var(--spin))) scale(0.75);
		opacity: 1;
	}
	100% {
		transform: translateY(-1100px) translateX(var(--x-offset)) rotate(calc(var(--initial-rotate) + var(--spin))) scale(0.7);
		opacity: 0;
	}
}

/* contact form style */
.contact-form-container{
	width:100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 0 10px;
}
.contact-form-title-container{
	display: flex;
	min-height: 250px;
	gap: 10px;
}
.contact-form-content-container{
	width: 100%;
	display: flex;
	gap: 10px;
}
.contact-form-left{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:30px;
	width:30%;
}
.contact-form-right{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding:15px;
	gap: 30px;
	width:70%;
	border-left: 0.5px solid #000;
	border-right: 0.5px solid #000;
}
.custom-form-group{
	display: flex;
	flex-direction: column;
	padding: 5px 0;
	gap:10px;
	text-align: left;
	margin: 0 auto;
	width: 100%;
}

/* partners style */
.map-container{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	margin-bottom: 80px;
}
.map-image-container img:hover{
	transform: scale(1.01);
}
.map-image-container{
	width: 100%;
	aspect-ratio: 2 / 1;
}
.map-image-container img{
	transition: transform 0.3s ease-out;
}
.map-point-container{
	position: absolute;
	z-index: 10;
}
/* give each pointer its own position by Id*/
#pointer1{
	top:25%;
	left:64%;
}
#pointer2{
	top:14%;
	left:62%;
}
#pointer3{
	top:48%;
	left:67%;
}
#pointer4{
	top:34%;
	left:65%;
}
#pointer5{
	top:46%;
	left:61%;
}

.map-point:hover{
	transform: scale(1.5);
}
.map-point {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  transition: transform 0.3s ease-out;
}
.cafe-info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  top: 0;
  left: 50px;
  transform: translateY(-50%) translateX(-10px);
  background: #fff;
  color: #000;
  padding: 16px;
  border-radius: 8px;
  font-size: 18px;
  opacity: 0;
  transition: 
    opacity 0.5s ease,
    transform 0.5s ease;
  white-space: nowrap;
  pointer-events: none; /* make sure the info box won't trigger hover effect */
}

.map-point-container:hover .cafe-info-box{
	z-index: 10;
	opacity: 1;
  	transform: translateY(-50%) translateX(0px); 
}

.partners-container{
	margin-top: 50px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}
.partners-container h3, .map-container h3{
	margin-bottom: 14px;
}
.partners-container p {
	line-height: 1.8;
	margin-bottom: 20px;
}
.partners-container p:last-child {
	margin-bottom: 0;
}

.partner-grid-items-container{
	width: 100%;
	padding: 10px 0;
	display: flex;
	gap:10px;
	flex-wrap: wrap;
}

/* .text-container{
	display: flex;
	gap: 20px;
	align-items: center;
	text-align: center;
	padding: 16px 0;
} */

/* cafe page style */
/* cafe details text reveal animation */
.details-reveal-anime {
  animation: details-reveal 0.6s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}

@keyframes details-reveal {
  0% {
    opacity: 0;
	transform: translateY(200px);
  }
  100% {
    opacity: 1;
	transform: translateY(0);
  }
}

.cafe-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 64px 240px;
	gap: 48px;
}
.cafe-container h6{
	align-self: flex-start;
}
.cafe-info-section h4 {
	margin-top: 30px;
	margin-bottom: 16px;
}
.cafe-info-section h4:first-child {
	margin-top: 0;
}
.cafe-info-section p {
	line-height: 1.8;
}
.cafe-text-container{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.right-part-container{
	display: flex;
	flex-direction: column;
	width: 60%;
	gap:24px;
}
/* join page style */
.join-form-container{
	width:60%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 0 10px;
}
.join-form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding:15px;
	gap: 30px;
	width:100%;
}
.form-button-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.align-center-button {
	align-self: center;
}

/* get-card page style */
.digit-card-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.digit-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 410px;
	height: 575px;
	margin: 0 auto;
	padding: 16px 24px;
	border-radius: 10px;
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.stampr-card-image{
	object-fit: fill;
}
.qr-code-container {
	align-self: center;
}
.digit-card-user-info{
	display: flex;
	justify-content: space-between;
}
.single-user-info{
	display: flex;
	flex-direction: column;
	gap:4px;
}

/* background */
.bg-blue {
	background: var(--blue) !important;
}
.bg-green {
	background: var(--green) !important;
}
.bg-orange {
	background: var(--orange) !important;
}
.bg-black {
	background: var(--black) !important;
	color: #fff !important;
}
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4, .bg-black h5, .bg-black h6,
.bg-black p {
	color: #fff !important;
}

/* hover rotate animation */
.left:hover {
	transform: rotate(-1deg) scale(1.01);
}
.right:hover {
	transform: rotate(1deg) scale(1.01);
}

.left, .right {
	transition: transform 0.3s ease-out;
}

/* Buttons */
.btn {
	padding: 12px 24px;
	border: none;
	border-radius: 0px;
	font-size: 16px;
	cursor: pointer;
	font-family: var(--font-family);
	transition: transform 0.2s ease;
	text-decoration: none;
}

.btn:hover {
	transform: scale(1.1);
	text-decoration: none;
}

.full-width {
	width: 100%;
	max-width: 400px;
}
.orange-sharp {
	background: var(--orange);
	color: #000;
	font-family: var(--mono-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.apple-style {
	background: #000;
	color: white;
	font-family: var(--mono-font);
	border-radius: 0;
	border: none;
} 

/* Form elements */
input, textarea, select {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 0px;
	font-size: 18px;
	font-family: var(--mono-font);
	margin: 8px 0;
	box-sizing: border-box;
	background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--orange);
}

input.error,
textarea.error,
select.error {
	border-color: var(--red);
	background: var(--white);
}

input.error:focus,
textarea.error:focus,
select.error:focus {
	border-color: var(--red);
	background: var(--white);
}

/* Utility classes */
.line-breaker{
	line-break: anywhere;
}
.hidden{
	display: none;
}
.text-center {
	text-align: center;
}
.text-success {
	color: #28a745;
}
.text-fail{
	color: crimson;
}
.mb-20{
	margin-bottom: 20px;
}
.mb-10{
	margin-bottom: 10px;
}
.mt-15{
	margin-top: 15px;
}
.card-highlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	border: none;
	border-radius: 0;
	padding: 20px;
	margin: 200px auto;
}

/* Status messages - Top right notifications */
.status {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 15px 20px 15px 15px;
	border-radius: 0px;
	max-width: 400px;
	font-family: var(--mono-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	z-index: 1000;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	animation: slideInFromRight 0.3s ease-out;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.close-btn {
	background: none;
	border: none;
	color: inherit;
	font-size: 18px;
	cursor: pointer;
	padding: 0;
	margin: 0;
	line-height: 1;
	opacity: 0.7;
	flex-shrink: 0;
}

@keyframes slideInFromRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.success {
	background: var(--green);
	color: var(--black);
}
.error {
	background: var(--red);
	color: var(--black);
}

/* Responsive adjustments */

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
/* dropdown menu */
	.dropdown {
		width: auto;
		position: relative;
		display: block;
		z-index: 10000;
	}
	.dropdown-toggle {
		display: none;
	}
	.nav-menu-toggle {
		cursor: pointer;
		font-family: var(--mono-font);
		font-size: 14px;
	}
	.menu-text {
		display: block;
	}
	.dropdown-menu {
		display: none;
		position: fixed;
		top: 62px;
		left: 0;
		width: 100vw;
		height: calc(100vh - 62px);
		background: white;
		z-index: 9999;
		padding: 40px 60px 20px 40px;
		overflow-y: auto;
		transform: translateY(-100%);
		transition: transform 0.3s ease-in-out;
	}
	.mobile-menu-close {
		position: absolute;
		top: -42px;
		right: calc(5% + 30px);
		cursor: pointer;
		z-index: 10001;
		font-family: var(--mono-font);
		font-size: 14px;
	}
	.mobile-menu-close img {
		width: 100%;
		height: 100%;
		display: block;
	}
	.mobile-menu-header {
		display: none;
	}
	.mobile-menu-buttons {
		margin-top: 40px;
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding-top: 0;
		align-items: center;
		width: 100%;
	}
	.mobile-menu-buttons .btn {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
	/* Show menu when checkbox is checked */
	.dropdown-toggle:checked ~ .dropdown-menu {
		display: flex;
		flex-direction: column;
		gap: 24px;
		transform: translateY(0);
	}
	/* Lock body scroll when menu is open */
	body:has(.dropdown-toggle:checked) {
		overflow: hidden;
	}

	.dropdown-menu a {
		padding: 16px 20px;
		font-size: 18px;
		text-align: center;
	}
	.dropdown-menu .btn {
		margin: 10px 0;
		padding: 16px 20px;
	}
	.nav-dropdown-menu-btn{
		display: block;
		width: 30px;
		height: 30px;
	}
	.nav-right {
		display: none;
	}
	.header-container {
		min-height: 187px;
	}
	.grid-items-container{
		padding: 0 15px 112px;
	}
	.anime-container{
		width: 49%;
	}
	.anime-container-last-row{
		width: 49%;
		gap: 30px;
		aspect-ratio: 1 / 1;
	}
	.grid-text-container-last-row{
		width: 80%;
	}
	.sign-up-link-btn{
		flex-direction: row-reverse;
		gap: 40px;
		padding: 24px;
	}
	
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	
	.footer-section:first-child {
		grid-column: 1 / -1;
	}
	.map-image-container{
		width: 100%;
		aspect-ratio: 1 / 1;
	}
	.map-container{
		margin-top: 30px;
	}
	.cafe-container{
		padding: 32px 64px;
		gap: 40px;
	}
	.join-form-container{
		width:100%;
	}
	.join-form{
		margin-top: 40px;
	}
	.digit-card{
		margin-top: 40px;
	}
}

/* desktop styling for your-cafe image */
.single-grid-item-last-row.right {
	background-size: 80% !important;
}

@media (max-width: 767px) {
	    /* dropdown menu */
		.dropdown {
			width: auto;
			position: relative;
			display: block;
			z-index: 10000;
		}
		.dropdown-toggle {
			display: none;
		}
		.nav-menu-toggle {
			cursor: pointer;
			font-family: var(--mono-font);
			font-size: 14px;
		}
		.menu-text {
			display: block;
		}
		.dropdown-menu {
			display: none;
			position: fixed;
			top: 62px;
			left: 0;
			width: 100vw;
			height: calc(100vh - 62px);
			background: white;
			z-index: 9999;
			padding: 30px 40px 20px 20px;
			overflow-y: auto;
			transform: translateY(-100%);
			transition: transform 0.3s ease-in-out;
		}
		.mobile-menu-close {
			position: absolute;
			top: -42px;
			right: calc(0.5% + 10px);
			cursor: pointer;
			z-index: 10001;
			font-family: var(--mono-font);
			font-size: 14px;
		}
		.mobile-menu-close img {
			width: 100%;
			height: 100%;
			display: block;
		}
		.mobile-menu-header {
			display: none;
		}
		.mobile-menu-buttons {
			margin-top: 40px;
			display: flex;
			flex-direction: column;
			gap: 16px;
			padding-top: 0;
			align-items: center;
			width: 100%;
		}
		.mobile-menu-buttons .btn {
			width: 100%;
			max-width: 300px;
			text-align: center;
		}
		/* Show menu when checkbox is checked */
		.dropdown-toggle:checked ~ .dropdown-menu {
			display: flex;
			flex-direction: column;
			gap: 20px;
			transform: translateY(0);
		}
		/* Lock body scroll when menu is open */
		body:has(.dropdown-toggle:checked) {
			overflow: hidden;
		}

		.dropdown-menu a {
			padding: 14px 16px;
			font-size: 16px;
			text-align: center;
		}
		.dropdown-menu .btn {
			margin: 8px 0;
			padding: 14px 16px;
		}
		.nav-dropdown-menu-btn{
			display: block;
			width: 30px;
			height: 30px;
		}

	    .nav-container {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 90%;
		}
		.nav-right {
			display: none;
		}
		.header-container{	
			min-height: 118px;
		}
		.grid-title-container {
			flex-direction: column;
		}
		.grid-items-container{
			flex-direction: column;
			padding: 0 12px 0;
		}
		.single-grid-item-title {
			width: 100%;
			gap: 20px;
			height: 160px; 
		}
		.single-grid-item-border {
			width: 100%;
			height: 160px; 
			gap: 20px;
			border-left: none;
			border-right: none;
			border-top: 0.5px solid #000;
			border-bottom: 0.5px solid #000;
		}
		.anime-container{
			width: 100%;
			gap: 20px;
			aspect-ratio: 1 / 1;
		}
		.anime-container-last-row{
			width: 100%;
			aspect-ratio: 1 / 1; 
		}
		.single-grid-item-last-row {
			aspect-ratio: 1 / 1;
		}
		.grid-text-container-last-row{
			width: 80%;
		}
		.grid-text-container-last-row{
			width: 80%;
		}
		.left:hover, .right:hover {
			transform: none;
		}
		.sign-up-link-btn{
			flex-direction: column-reverse;
			padding: 24px 16px;
			gap: 16px;
			text-align: center;
		}
		
		.footer-content {
			grid-template-columns: 1fr;
			gap: 40px;
			text-align: left;
		}
		
		.footer-section {
			gap: 12px;
		}
		
		.footer-bottom {
			padding-top: 30px;
		}
		.contact-form-title-container{
			flex-direction: column;
			padding: 50px 0 62px;
			gap: 16px;
		}
		.contact-form-content-container{
			width: 100%;
			flex-direction: column;
		}
		.contact-form-left{
			padding: 0 0 30px;
			gap:20px;
			width:100%;
		}
		.contact-form-right{
			padding: 30px 0;
			gap: 20px;
			width:95%;
			border-left: none;
			border-right: none;
			border-top: 0.5px solid #000;
			border-bottom: 0.5px solid #000;
		}
		.map-image-container{
			width: 100%;
			aspect-ratio: 1 / 2;
		}
		.map-container{
			margin-top: 50px;
		}
		.cafe-container{
			width: 100%;
			padding: 24px;
			gap: 32px;
		}
		.partners-container{
			padding: 0 24px;
		}
		.partners-container h3{
			padding: 0 16px;
		}
		.right-part-container{
			display: flex;
			flex-direction: column;
			width: 100%;
		}
		.cafe-text-container{
			flex-direction: column;
			justify-content: space-between;
			gap: 16px;
		}
		.join-form-container{
			width:100%;
		}
		.join-form{
			margin-top: 40px;
		}
		.digit-card{
			width:80%;
			margin-top: 30px;
		}
		.form-button-container{
			flex-direction: column-reverse;
			gap: 24px;			
			align-items: center;
		}
}

/* Stripe Payment Form Styling */
#paymentForm {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}

#paymentForm .StripeElement {
	max-width: 100%;
	width: 100%;
}

#paymentSection {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}

/* Ensure all Stripe elements respect width constraints */
.StripeElement,
.StripeElement--focus,
.StripeElement--invalid,
.StripeElement--complete {
	max-width: 100% !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

/* Stripe inline payment element styles */
#payment-element {
	max-width: 100%;
	width: 100%;
	margin: 16px 0;
}

#payment-message {
	text-align: center;
	font-size: 0.875rem;
	padding: 12px;
	margin: 12px 0;
	border-radius: 4px;
	display: none;
}

#payment-message.payment-message-info {
	display: block;
	color: #2c3e50;
	background-color: #e8f4f8;
	border: 1px solid #b8dce8;
}

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

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

/* Desktop styles for Hero (min-width: 992px) - moved from index.html */
@media (min-width: 992px) {
	.hero-container {
		flex-direction: row;
		align-items: center;
		gap: 100px;
		max-width: 1600px;
		padding: 0 40px;
		margin: 80px auto;
	}

	.hero-cta {
		text-align: left;
		flex: 1;
	}

	.hero-image {
		flex: 1;
		max-width: 900px;
		max-height: 80vh;
	}

	.hero-cta h2 {
		font-size: 64px;
	}

	.hero-cta p:first-of-type {
		font-size: 24px;
	}

	.hero-cta p {
		font-size: 18px;
		padding: 0;
	}
}

/* Mobile specific styles (767px and below) - moved from index.html */
@media (max-width: 767px) {
	/* About Section Mobile */
	.about-section {
		margin: 100px auto;
		padding: 0 24px;
	}

	.about-card-decoration {
		display: none;
	}

	.about-content {
		margin-bottom: 80px;
	}

	.about-content h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.about-content p {
		font-size: 16px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
		margin-top: 80px;
	}

	.stat-item h4 {
		font-size: 36px;
	}

	.stat-item p {
		font-size: 12px;
	}

	/* Mobile responsive for squares */
	.single-grid-item-last-row p {
		font-size: 16px !important;
	}

	.single-grid-item p {
		font-size: 18px !important;
	}

	.grid-text-overlay {
		top: 10px;
	}

	.grid-text-overlay p {
		font-size: 16px !important;
	}

	/* Mobile responsive for Join CTA */
	.join-cta-section {
		min-height: 100vh !important;
		padding: 20px 0 !important;
	}

	.join-cta-mobile {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
		padding: 20px !important;
		flex-direction: column !important;
	}

	.join-cta-mobile > div {
		order: unset !important;
		padding: 0 !important;
	}

	.join-cta-mobile > div:first-child {
		order: 2 !important;
		padding: 0 !important;
	}

	.join-cta-image {
		order: 1 !important;
		padding: 0 !important;
		justify-content: center;
	}

	.join-cta-image img {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		aspect-ratio: 3 / 4.5 !important;
		object-fit: cover !important;
		object-position: center top !important;
		max-height: none !important;
	}

	.join-cta-mobile h2 {
		font-size: 32px !important;
		margin-bottom: 20px !important;
	}

	.join-cta-mobile p {
		font-size: 16px !important;
		margin-bottom: 16px !important;
	}

	/* FAQ Mobile */
	.faq-section {
		padding: 30px 20px !important;
	}

	.faq-section > div {
		padding: 0 !important;
	}

	.faq-section h2 {
		font-size: 32px !important;
		margin-bottom: 30px !important;
	}

	.faq-question {
		padding: 16px 0 !important;
	}

	.faq-question h3 {
		font-size: 16px !important;
	}

	.faq-answer p {
		font-size: 14px !important;
	}
}

/* About Page - Minimalist Startup Design */
.about-hero-section {
	width: 100%;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 140px 40px;
	background: var(--white);
}

.about-hero-content {
	max-width: 900px;
	text-align: center;
}

.about-hero-content h1 {
	font-size: 72px;
	margin: 0 0 24px 0;
	line-height: 1.1;
}

.about-hero-subtitle {
	font-size: 24px;
	color: var(--text-color);
	margin: 0;
}

.about-mission-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--background);
}

.about-mission-content {
	max-width: 1200px;
	margin: 0 auto;
}

.about-mission-text {
	max-width: 700px;
}

.about-mission-text h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
}

.about-mission-text h2 {
	font-size: 48px;
	margin: 0 0 32px 0;
	line-height: 1.2;
}

.about-mission-text p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
}

.about-stats-section {
	width: 100%;
	padding: 120px 40px;
	background: var(--white);
}

.about-stats-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px;
}

.about-stat-card {
	text-align: center;
}

.about-stat-card h2 {
	font-size: 56px;
	margin: 0 0 16px 0;
	color: var(--orange);
}

.about-stat-card p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.about-story-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--background);
}

.about-story-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 140px;
}

.about-story-block {
	max-width: 700px;
}

.about-story-block:nth-child(even) {
	margin-left: auto;
}

.about-story-block h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 16px 0;
	color: var(--orange);
}

.about-story-block h3 {
	font-size: 36px;
	margin: 0 0 24px 0;
	line-height: 1.2;
}

.about-story-block p {
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
}

.about-values-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--white);
}

.about-values-content {
	max-width: 1200px;
	margin: 0 auto;
}

.about-values-content h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
	text-align: center;
}

.about-values-content h2 {
	font-size: 48px;
	margin: 0 0 100px 0;
	line-height: 1.2;
	text-align: center;
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.about-value-item h4 {
	font-size: 24px;
	margin: 0 0 16px 0;
}

.about-value-item p {
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.about-cta-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--orange);
	color: var(--white);
}

.about-cta-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.about-cta-content h2 {
	font-size: 48px;
	margin: 0 0 32px 0;
	color: var(--white);
}

.about-cta-content p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0 0 48px 0;
	color: var(--white);
}

/* About Page Mobile Responsive */
@media (max-width: 767px) {
	.about-hero-section {
		padding: 60px 24px;
		min-height: 50vh;
	}

	.about-hero-content h1 {
		font-size: 36px;
	}

	.about-hero-subtitle {
		font-size: 18px;
	}

	.about-mission-section {
		padding: 60px 24px;
	}

	.about-mission-text h2 {
		font-size: 32px;
		margin-bottom: 24px;
	}

	.about-mission-text p {
		font-size: 16px;
	}

	.about-stats-section {
		padding: 60px 24px;
	}

	.about-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.about-stat-card h2 {
		font-size: 40px;
	}

	.about-stat-card p {
		font-size: 14px;
	}

	.about-story-section {
		padding: 60px 24px;
	}

	.about-story-content {
		gap: 60px;
	}

	.about-story-block:nth-child(even) {
		margin-left: 0;
	}

	.about-story-block h3 {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.about-story-block p {
		font-size: 16px;
	}

	.about-values-section {
		padding: 60px 24px;
	}

	.about-values-content h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.about-values-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-value-item h4 {
		font-size: 20px;
	}

	.about-value-item p {
		font-size: 14px;
	}

	.about-cta-section {
		padding: 60px 24px;
	}

	.about-cta-content h2 {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.about-cta-content p {
		font-size: 16px;
		margin-bottom: 32px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.about-hero-content h1 {
		font-size: 56px;
	}

	.about-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.about-values-content h2 {
		font-size: 40px;
	}
}

/* What is STAMPR Page - Minimalist Design */
.what-hero-section {
	width: 100%;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 140px 40px;
	background: var(--white);
}

.what-hero-content {
	max-width: 900px;
	text-align: center;
}

.what-hero-content h1 {
	font-size: 72px;
	margin: 0 0 24px 0;
	line-height: 1.1;
}

.what-hero-subtitle {
	font-size: 24px;
	color: var(--text-color);
	margin: 0;
}

.what-intro-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--background);
}

.what-intro-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.what-intro-content h2 {
	font-size: 48px;
	margin: 0 0 32px 0;
	line-height: 1.2;
}

.what-intro-content p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
}

.what-how-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--white);
}

.what-how-content {
	max-width: 1200px;
	margin: 0 auto;
}

.what-how-content h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
	text-align: center;
}

.what-how-content h2 {
	font-size: 48px;
	margin: 0 0 80px 0;
	line-height: 1.2;
	text-align: center;
}

.what-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

.what-step-card {
	text-align: center;
}

.what-step-number {
	width: 60px;
	height: 60px;
	background: var(--orange);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--heading-font);
	font-size: 32px;
	margin: 0 auto 24px;
}

.what-step-card h3 {
	font-size: 28px;
	margin: 0 0 16px 0;
}

.what-step-card p {
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.what-benefits-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--background);
}

.what-benefits-content {
	max-width: 1200px;
	margin: 0 auto;
}

.what-benefits-content h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
	text-align: center;
}

.what-benefits-content h2 {
	font-size: 48px;
	margin: 0 0 80px 0;
	line-height: 1.2;
	text-align: center;
}

.what-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

.what-benefit-card h4 {
	font-size: 24px;
	margin: 0 0 16px 0;
}

.what-benefit-card p {
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.what-cta-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--orange);
	color: var(--white);
}

.what-cta-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.what-cta-content h2 {
	font-size: 48px;
	margin: 0 0 32px 0;
	color: var(--white);
}

.what-cta-content p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0 0 48px 0;
	color: var(--white);
}

/* What is STAMPR Mobile Responsive */
@media (max-width: 767px) {
	.what-hero-section {
		padding: 60px 24px;
		min-height: 50vh;
	}

	.what-hero-content h1 {
		font-size: 36px;
	}

	.what-hero-subtitle {
		font-size: 18px;
	}

	.what-intro-section {
		padding: 60px 24px;
	}

	.what-intro-content h2 {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.what-intro-content p {
		font-size: 16px;
	}

	.what-how-section {
		padding: 60px 24px;
	}

	.what-how-content h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.what-steps-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.what-step-card h3 {
		font-size: 24px;
	}

	.what-step-card p {
		font-size: 14px;
	}

	.what-benefits-section {
		padding: 60px 24px;
	}

	.what-benefits-content h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.what-benefits-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.what-benefit-card h4 {
		font-size: 20px;
	}

	.what-benefit-card p {
		font-size: 14px;
	}

	.what-cta-section {
		padding: 60px 24px;
	}

	.what-cta-content h2 {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.what-cta-content p {
		font-size: 16px;
		margin-bottom: 32px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.what-hero-content h1 {
		font-size: 56px;
	}

	.what-steps-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.what-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.what-intro-content h2,
	.what-how-content h2,
	.what-benefits-content h2 {
		font-size: 40px;
	}
}

/* Partners/Café Map Page - Minimalist Design */
.partners-hero-section {
	width: 100%;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 40px 80px;
	background: var(--white);
}

.partners-hero-content {
	max-width: 900px;
	text-align: center;
}

.partners-hero-content h1 {
	font-size: 72px;
	margin: 0 0 24px 0;
	line-height: 1.1;
}

.partners-hero-subtitle {
	font-size: 24px;
	color: var(--text-color);
	margin: 0;
}

.partners-map-section {
	width: 100%;
	padding: 80px 40px;
	background: var(--background);
}

.partners-map-container {
	max-width: 1200px;
	margin: 0 auto;
}

.partners-map-container h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 16px 0;
	color: var(--orange);
	text-align: center;
}

.partners-map-container h2 {
	font-size: 48px;
	margin: 0 0 48px 0;
	line-height: 1.2;
	text-align: center;
}

.partners-map-controls {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
	align-items: center;
	justify-content: center;
}

.partners-search-input {
	flex: 1;
	max-width: 500px;
	padding: 14px 20px;
	font-size: 16px;
	font-family: var(--mono-font);
	border: 2px solid var(--grey-light);
	border-radius: 0;
	background: var(--white);
}

.partners-search-input:focus {
	outline: none;
	border-color: var(--orange);
}

.partners-location-btn {
	padding: 14px 24px;
	background: var(--orange);
	color: var(--black);
	border: none;
	font-family: var(--mono-font);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border-radius: 0;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.partners-location-btn:hover {
	opacity: 0.8;
}

.partners-map-wrapper {
	width: 100%;
	position: relative;
}

#map {
	width: 100%;
	height: 600px;
	border-radius: 0;
}

.partners-search-notification {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	color: var(--black);
	padding: 12px 24px;
	font-family: var(--mono-font);
	font-size: 14px;
	z-index: 1000;
	border-radius: 0;
	display: none;
	max-width: 90%;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.partners-search-notification.show {
	display: block;
}

.mapboxgl-popup-content {
	font-family: var(--mono-font);
	padding: 20px;
	border-radius: 0;
}

.mapboxgl-popup-content h6 {
	margin: 0 0 8px 0;
	font-family: var(--heading-font);
}

.mapboxgl-popup-content p {
	margin: 4px 0;
	font-size: 14px;
}

.popup-button {
	display: inline-block;
	margin-top: 12px;
	padding: 8px 16px;
	background: var(--orange);
	color: var(--black);
	text-decoration: none;
	font-family: var(--mono-font);
	font-size: 14px;
	transition: opacity 0.2s ease;
}

.popup-button:hover {
	opacity: 0.8;
}

.mapboxgl-marker {
	cursor: pointer;
}

.partners-grid-section {
	width: 100%;
	padding: 120px 40px;
	background: var(--white);
}

.partners-grid-container {
	max-width: 1200px;
	margin: 0 auto;
}

.partners-grid-container h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 16px 0;
	color: var(--orange);
	text-align: center;
}

.partners-grid-container h2 {
	font-size: 48px;
	margin: 0 0 60px 0;
	line-height: 1.2;
	text-align: center;
}

.partner-grid-items-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.partner-grid-items-container .anime-container,
.partner-grid-items-container .reveal-anime {
	width: calc((100% - 30px) / 4);
	flex-shrink: 0;
}

.partner-grid-items-container .single-grid-item {
	width: 100%;
}

.partners-load-more {
	display: flex;
	justify-content: center;
}

.partners-cta-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--orange);
	color: var(--white);
}

.partners-cta-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.partners-cta-content h2 {
	font-size: 48px;
	margin: 0 0 32px 0;
	color: var(--white);
}

.partners-cta-content p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0 0 48px 0;
	color: var(--white);
}

/* Partners Page Mobile Responsive */
@media (max-width: 767px) {
	.partners-hero-section {
		padding: 60px 24px 40px;
		min-height: 40vh;
	}

	.partners-hero-content h1 {
		font-size: 36px;
	}

	.partners-hero-subtitle {
		font-size: 18px;
	}

	.partners-map-section {
		padding: 60px 24px;
	}

	.partners-map-container h2 {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.partners-map-controls {
		flex-direction: column;
		gap: 12px;
	}

	.partners-search-input {
		max-width: 100%;
		width: 100%;
	}

	.partners-location-btn {
		width: 100%;
	}

	#map {
		height: 400px;
	}

	.partners-grid-section {
		padding: 60px 24px;
	}

	.partners-grid-container h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.partner-grid-items-container .anime-container,
	.partner-grid-items-container .reveal-anime {
		width: 100%;
	}

	.partners-cta-section {
		padding: 60px 24px;
	}

	.partners-cta-content h2 {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.partners-cta-content p {
		font-size: 16px;
		margin-bottom: 32px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.partners-hero-content h1 {
		font-size: 56px;
	}

	.partners-map-container h2,
	.partners-grid-container h2 {
		font-size: 40px;
	}

	#map {
		height: 500px;
	}
}

/* ==========================================
   CAFE PAGE STYLES
   ========================================== */

/* Cafe Hero Section */
.cafe-hero-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--white);
	text-align: center;
}

.cafe-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.cafe-brand-image-container {
	width: 300px;
	height: 200px;
	margin: 0 auto 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cafe-brand-image-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cafe-hero-content h1 {
	font-size: 72px;
	margin: 0 0 20px 0;
	line-height: 1.1;
}

.cafe-subtitle {
	font-size: 24px;
	margin: 0;
	color: var(--grey);
	font-weight: 400;
}

/* Cafe About Section */
.cafe-about-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--white);
	position: relative;
}

.cafe-about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.cafe-about-content h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
}

.cafe-about-content h2 {
	font-size: 48px;
	margin: 0 0 32px 0;
	line-height: 1.2;
}

.cafe-description {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
}

/* Cafe Details Section */
.cafe-details-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--background);
}

.cafe-details-content {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
}

.cafe-info-group h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
}

.cafe-address {
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
	white-space: pre-line;
}

.cafe-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cafe-contact a {
	font-size: 18px;
	text-decoration: none;
	color: var(--text-color);
	transition: color 0.2s;
}

.cafe-contact a:hover {
	color: var(--orange);
}

/* Cafe Map Section */
.cafe-map-section {
	width: 100%;
	padding: 0;
	background: var(--white);
}

.cafe-map-wrapper {
	width: 100%;
	height: 600px;
	max-width: 1400px;
	margin: 0 auto;
}

#cafe-map {
	width: 100%;
	height: 100%;
}

/* Cafe Partners Section */
.cafe-partners-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--background);
}

/* Cafe CTA Section */
.cafe-cta-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--orange);
	color: var(--white);
	text-align: center;
}

.cafe-cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.cafe-cta-content h2 {
	font-size: 56px;
	margin: 0 0 24px 0;
	line-height: 1.2;
	color: var(--white);
}

.cafe-cta-content p {
	font-size: 24px;
	margin: 0 0 40px 0;
	color: var(--white);
}

/* Mapbox Popup Styles */
.mapboxgl-popup-content {
	font-family: var(--font-family);
	padding: 20px;
	border-radius: 0;
}

.mapboxgl-popup-content h6 {
	margin: 0 0 8px 0;
	font-family: var(--heading-font);
}

.mapboxgl-popup-content p {
	margin: 4px 0;
	font-size: 14px;
}

.social-icon {
	width: 20px;
	height: 20px;
	display: inline-block;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.cafe-hero-section {
		padding: 120px 20px 80px;
	}

	.cafe-hero-content h1 {
		font-size: 48px;
	}

	.cafe-subtitle {
		font-size: 18px;
	}

	.cafe-brand-image-container {
		width: 250px;
		height: 180px;
	}

	.cafe-about-section,
	.cafe-details-section,
	.cafe-partners-section,
	.cafe-cta-section {
		padding: 100px 20px;
	}

	.cafe-about-content h2 {
		font-size: 32px;
	}

	.cafe-description {
		font-size: 18px;
	}

	.cafe-details-content {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.cafe-map-wrapper {
		height: 400px;
	}

	.partner-grid-items-container .anime-container,
	.partner-grid-items-container .reveal-anime {
		width: 100%;
	}

	.cafe-cta-content h2 {
		font-size: 40px;
	}

	.cafe-cta-content p {
		font-size: 18px;
	}
}

/* ==========================================
   BUSINESS PAGE STYLES
   ========================================== */

/* Business Hero Section */
.business-hero-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--white);
	text-align: center;
}

.business-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.business-hero-content h1 {
	font-size: 72px;
	margin: 0 0 20px 0;
	line-height: 1.1;
}

.business-hero-subtitle {
	font-size: 24px;
	margin: 0;
	color: var(--text-color);
	font-weight: 400;
}

/* Business Intro Section */
.business-intro-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--white);
	position: relative;
}

.business-intro-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.business-intro-content h2 {
	font-size: 48px;
	margin: 0 0 32px 0;
	line-height: 1.2;
}

.business-intro-content p {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
}

/* Business Benefits Section */
.business-benefits-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--background);
}

.business-benefits-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.business-benefits-content h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
}

.business-benefits-content h2 {
	font-size: 48px;
	margin: 0 0 60px 0;
	line-height: 1.2;
}

.business-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	text-align: left;
}

.business-benefit-card {
	background: var(--white);
	padding: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.business-benefit-card h3 {
	font-size: 28px;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.business-benefit-card p {
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
}

/* Business Features Section */
.business-features-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--white);
}

.business-features-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.business-features-content h6 {
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0 0 24px 0;
	color: var(--orange);
}

.business-features-content h2 {
	font-size: 48px;
	margin: 0 0 60px 0;
	line-height: 1.2;
}

.business-feature-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	text-align: left;
}

.business-feature-item h4 {
	font-size: 24px;
	margin: 0 0 12px 0;
	line-height: 1.2;
}

.business-feature-item p {
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
}

/* Business CTA Section */
.business-cta-section {
	width: 100%;
	padding: 160px 40px;
	background: var(--orange);
	color: var(--white);
	text-align: center;
}

.business-cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.business-cta-content h2 {
	font-size: 56px;
	margin: 0 0 24px 0;
	line-height: 1.2;
	color: var(--white);
}

.business-cta-content p {
	font-size: 24px;
	margin: 0 0 40px 0;
	color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
	.business-hero-section {
		padding: 120px 20px 80px;
	}

	.business-hero-content h1 {
		font-size: 48px;
	}

	.business-hero-subtitle {
		font-size: 18px;
	}

	.business-intro-section,
	.business-benefits-section,
	.business-features-section,
	.business-cta-section {
		padding: 100px 20px;
	}

	.business-intro-content h2,
	.business-benefits-content h2,
	.business-features-content h2 {
		font-size: 32px;
	}

	.business-intro-content p {
		font-size: 18px;
	}

	.business-benefits-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.business-benefit-card {
		padding: 30px;
	}

	.business-benefit-card h3 {
		font-size: 24px;
	}

	.business-feature-item h4 {
		font-size: 20px;
	}

	.business-cta-content h2 {
		font-size: 40px;
	}

	.business-cta-content p {
		font-size: 18px;
	}
}
