/* Base Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-family: 'Cormorant Garamond', Palatino;
	background-color: #f9f8f6;
	color: #333;
	line-height: 1.6;
	overflow-x: hidden; /* Prevent horizontal scroll */
}

img {
	display: block;
	max-width: 100%; /* Ensure images do not overflow */
}
h2 {
	font-size: 32px;
}
p { font-size: 18px; }
/* === Age Verification Modal === */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.age-modal-content {
  background: #f9f8f6;
  color: #1a1a1a;
  padding: 48px 32px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.age-modal h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.age-modal p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #444;
}

.age-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

body.age-locked {
  overflow: hidden;
}

/* Navbar */
nav {
	height: 60px;
	position: sticky;
	top: 0;
	background-color: #334;
	padding: 16px 32px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%; /* Ensure it doesn't overflow */
}

nav .logo {
	display: block;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	max-height: 60px;
	max-width: 100%; /* Ensure logo scales down on small screens */
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-end; /* Align items to the right on large screens */
	align-items: center;
	flex-wrap: nowrap; /* No wrapping of menu items */
	width: 100%;
}

nav ul li {
	margin: 0 24px;
}

nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	transition: all 0.3s ease;
	position: relative;
}

nav ul li a:hover {
	color: #f9f8f6;
}

nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #f9f8f6;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

nav ul li a:hover::after {
	transform: scaleX(1);
}

.nav-separator {
	display: none;
}
.logo-link img {
	transition: transform 0.3s ease, opacity 0.3s ease;
	display: block;
}

.logo-link:hover img {
	transform: scale(1.05);
	opacity: 0.85;
}

section {
	padding: 96px 32px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
}
section h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: 1px;
	border-bottom: 2px solid #ccc;
	display: inline-block;
	padding-bottom: 8px;
	
}
section:nth-of-type(odd) {
	background: linear-gradient(135deg, #eceae7 0%, #d9d9d9 100%);
}
/* Hero Section Styling */
.hero {
	background: url('../images/hero.jpg') no-repeat center center/cover;
	background-attachment: fixed;
	text-align: center;
	padding: 160px 32px;
	color: #1a1a1a;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3); /* Subtle dark overlay */
	z-index: 1;
}

.hero .content {
	position: relative;
	z-index: 2; /* Ensure content is on top of overlay */
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 16px;
	text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.7);
}

.hero p {
	font-size: 22px;
	margin-bottom: 32px;
	text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.7);
}
.buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.btn {
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 12px 32px;
	border: 2px solid #334;
	background-color: transparent;
	color: #334;
	font-size: 18px;
	border-radius: 5px;
	text-decoration: none;
	transition: color 0.4s ease;
}

.btn::after {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: #334;
	z-index: -1;
	transition: width 0.4s ease;
}

.btn:hover::after {
	width: 100%;
}

.btn:hover {
	color: #fff;
}

.btn-primary {
	background-color: #334;
	color: #fff;
}

.btn-primary:hover {
	background-color: #50506b;
	border-color: #334;
}

.btn-secondary {
	background-color: #fff;
}

/* Promise Section */
.promise {
	display: flex;
	flex-direction: column;
	gap: 32px;
	text-align: center;
	padding: 64px 32px;
}

.pillars {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 32px;
}

.pillar {
	flex: 1 1 250px;
	padding: 32px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #ddd; /* Subtle border */
	width: 200px;
}

.pillar:hover {
	transform: translateY(-8px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
}

/* About Section */
.about {
	padding: 64px 32px;
	text-align: center;
	margin: 0px auto;
}

.about h2 {
	font-size: 32px; /* Explicit font size for header */
	font-weight: 700;
	margin-bottom: 24px;
}

.about p {
	font-size: 18px; /* Explicit font size for paragraph */
	color: #555;
	line-height: 1.6;
	width: 80%;
	margin: 0px auto;
}

/* Flower Section */
.flower {
	text-align: center;
	padding: 64px 32px;
	background-color: #f9f8f6;
	max-width: 100%;
	overflow-x: hidden;
	justify-content: center;  /* Center the content horizontally */
}


.flower-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: center;
	margin-top: 15px;
	max-width: 100%;
	justify-content: center;
	align-items: flex-start;
}


.strain {
    height: 350px;
	width: 300px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 0 0 32px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.strain:hover {
	transform: translateY(-8px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.strain img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.strain h3 {
	margin-top: 16px;
	font-size: 24px;
	color: #333;
}
.strain p {
    width: 80%;
}
.terpenes {
	list-style-type: none;
	padding: 0;
	margin-top: 16px;
}

.terpenes li {
	font-size: 16px;
	color: #555;
	margin-bottom: 8px;
}
/* Transparency Section */
.transparency {
	text-align: center;
}

/* Final CTA */
.final-cta {
	/*background: linear-gradient(135deg, #dddcd9 0%, #eae7e3 100%);*/
	color: #1a1a1a;
	padding: 96px 32px;
	text-align: center;
}

.cta-content {
	margin: 0 auto;
}

.final-cta h2 {
	font-size: 36px;
	margin-bottom: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.final-cta p {
	font-size: 20px;
	color: #444;
	margin-bottom: 32px;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.final-cta .btn {
	font-size: 18px;
	padding: 14px 36px;
}

.compact-footer {
	background-color: #334;
	color: #eae7e3;
	padding: 32px;
	font-size: 14px;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	gap: 24px;
}
.footer-top img {
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-top img:hover {
	transform: scale(1.05);
	opacity: 0.85;
}

.footer-logo {
	width: 200px;
}

.footer-nav {
	list-style: none;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

.footer-nav a {
	color: #ffffff; /* or any footer text color */
	position: relative;
	text-decoration: none;
}

.footer-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: #ffffff; /* make sure it’s visible */
	transition: width 0.3s ease;
}

.footer-nav a:hover::after {
	width: 100%;
}
.footer-contact a {
	color: #ffffff; /* or any footer text color */
	position: relative;
	text-decoration: none;
}

.footer-contact a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: #ffffff; /* make sure it’s visible */
	transition: width 0.3s ease;
}

.footer-contact a:hover::after {
	width: 100%;
}
.footer-bottom a {
	color: #ffffff; /* or any footer text color */
	position: relative;
	text-decoration: none;
}

.footer-bottom a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: #ffffff; /* make sure it’s visible */
	transition: width 0.3s ease;
}

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

.footer-contact {
	text-align: right;
	line-height: 1.4;
	font-size: 14px;
}

.footer-social a {
	color: #eae7e3;
	margin-left: 12px;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-social a:hover {
	color: #ccc;
}

.footer-bottom {
	text-align: center;
	margin-top: 24px;
	border-top: 1px solid #445;
	padding-top: 16px;
	font-size: 13px;
	color: #bdbab5;
}

.footer-bottom .disclaimer {
	margin-top: 4px;
	font-size: 16px;
	color: #aaa;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
	.hero {
		padding: 80px 32px;
		background-attachment: scroll;
	}

	.hero h1 {
		font-size: 32px;
	}

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

	.btn {
		font-size: 16px;
	}

	.pillars {
		flex-direction: column;
		align-items: center;
	}

	.pillar {
		flex: 1 1 100%;
		text-align: center;
		width: 75%;
	}

	.flower-grid {
		flex-direction: column;
		align-items: center;
	}

	.footer-top {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.footer-contact {
		text-align: center;
	}

	.footer-nav {
		justify-content: center;
	}
	/* Navbar Mobile Adjustments */
	nav {
		flex-direction: column;
		justify-content: flex-start;
		padding: 16px;
		position: relative;
		height: auto;
		z-index: 1000;
	}
	nav ul {
		flex-direction: column;
		width: 100%; /* Make the menu stack vertically */
		align-items: center;
	}

	nav ul li {
		margin: 8px 0;
	}

	nav ul li a {
		font-size: 16px; /* Adjust font size for mobile */
	}
	.footer-top img {
		transition: transform 0.3s ease, opacity 0.3s ease;
	}
	.footer-top img:hover {
		transform: scale(1.05);
		opacity: 0.85;
	}
	
	.mobile-separator {
		display: block;
		height: 1px;
		width: 40%;
		background-color: #ccc; /* adjust for brand palette */
		margin-top:15px;
	}
}