/* CSS Variables from Brand Guide */
:root {
	--color-primary: #000000;
	--color-white: #FFFFFF;
	--color-beige-light: #CFCFBF;
	--color-beige-medium: #b8b8a8;
	--color-gray-light: #E7E7DF;
	--color-text-gray: #666666;
	--color-error: #D32F2F;
	
	--font-primary: 'Poppins', sans-serif;
	--font-secondary: 'Pertili', serif;
	
	--spacing-xs: 0.5rem;
	--spacing-s: 1rem;
	--spacing-m: 1.5rem;
	--spacing-l: 2rem;
	--spacing-xl: 3rem;
	--spacing-xxl: 4rem;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Account for fixed header */
}

/* Enhanced smooth scrolling for anchor links */
@supports (scroll-behavior: smooth) {
	html {
		scroll-behavior: smooth;
	}
	
	/* Smooth scrolling for all anchor links */
	a[href^="#"] {
		transition: all 0.5s ease-in-out;
	}
}

body {
	font-family: var(--font-primary);
	line-height: 1.6;
	color: var(--color-primary);
}

/* Remove underlines from all buttons and button-like elements */
button,
.cta-button,
.submit-button,
.download-button,
.sign-up-button,
.filter-btn,
.category-btn,
.tab-btn,
.level-cta,
.checkout-btn,
.back-btn,
.place-order-btn,
.newsletter-btn,
.preview-btn,
.nav-arrow,
.accordion-toggle,
.faq-toggle,
.suggestion-tag,
.filter-chip {
	text-decoration: none !important;
}

button:hover,
.cta-button:hover,
.submit-button:hover,
.download-button:hover,
.sign-up-button:hover,
.filter-btn:hover,
.category-btn:hover,
.tab-btn:hover,
.level-cta:hover,
.checkout-btn:hover,
.back-btn:hover,
.place-order-btn:hover,
.newsletter-btn:hover,
.preview-btn:hover,
.nav-arrow:hover,
.accordion-toggle:hover,
.faq-toggle:hover,
.suggestion-tag:hover,
.filter-chip:hover {
	text-decoration: none !important;
}

/* Header Styles */
.header {
	background-color: transparent;
	padding: 15px 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	pointer-events: auto;
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
}

.logo-img {
	height: 60px;
	width: auto;
}

.header-left {
	display: flex;
	justify-content: flex-start;
}

.header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}

.search-btn {
	background: none;
	border: none;
	color: var(--color-white);
	cursor: pointer;
	padding: 8px;
	border-radius: 5px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1002;
	pointer-events: auto;
}

.search-btn:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 30px;
	margin: 0;
}

.nav-link {
	text-decoration: none;
	color: var(--color-white);
	font-weight: 500;
	transition: color 0.3s ease;
}

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

.cta-button {
	background-color: var(--color-beige-light);
	color: var(--color-primary);
	border: none;
	padding: 12px 24px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-primary);
	position: relative;
	z-index: 1002;
	pointer-events: auto;
}

.cta-button:hover {
	background-color: var(--color-beige-medium);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.header-cta {
	background-color: var(--color-white);
	color: var(--color-primary);
}

.header-cta:hover {
	background-color: var(--color-gray-light);
}

/* Hero Section Styles */
.hero {
	position: relative;
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 50px;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #FFFFFF;
	max-width: 800px;
	padding: 0 20px;
}

.hero-title {
	font-family: 'Pertili', serif;
	font-size: 4rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero-subtitle {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	font-weight: 300;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Subpage Hero (half height) */
.subpage-hero {
	height: 35vh !important;
}

/* Mobile Menu Styles - Now handled by MobileMenu.astro component */

/* Footer Styles */
.footer {
	background-color: var(--color-beige-light);
	padding: 60px 0 20px 0;
	margin-top: 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-logo img {
	height: 60px;
	width: auto;
	margin-bottom: 20px;
}

.footer-description {
	font-size: 0.9rem;
	color: var(--color-text-gray);
	line-height: 1.6;
	max-width: 250px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-nav-link {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

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

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.contact-icon {
	width: 20px;
	height: 20px;
	color: var(--color-text-gray);
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-label {
	font-size: 0.9rem;
	color: var(--color-text-gray);
	margin-bottom: 5px;
}

.contact-value {
	font-size: 0.9rem;
	color: var(--color-primary);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--color-beige-medium);
}

.footer-copyright {
	font-size: 0.9rem;
	color: var(--color-text-gray);
}

.footer-social {
	display: flex;
	gap: 12px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--color-text-gray);
	font-size: 1.5rem;
	padding: 8px;
	transition: all 0.3s ease;
}

.social-link:hover {
	color: var(--color-primary);
	transform: translateY(-2px);
}

/* Hero Section (shared across all pages) */
.hero {
	position: relative;
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 50px;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #FFFFFF;
	max-width: 800px;
	padding: 0 20px;
}

.hero-logo {
	margin-bottom: 30px;
}

.hero-logo-img {
	width: auto;
	height: 256px;
	max-height: 256px;
}

.hero-icon {
	margin-bottom: 30px;
}

.hero-title {
	font-family: 'Pertili', serif;
	font-size: 4rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero-subtitle {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	font-weight: 300;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Subpage Hero Section (half height) */
.subpage-hero {
	height: 35vh !important;
}

/* Container and Section Styles (shared across all pages) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Pertili', serif;
  font-size: 3.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  color: #000000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 100px 0;
  background-color: #FFFFFF;
}

.content-section {
  background-color: #FFFFFF;
}

.alternate-section {
  background-color: #E7E7DF;
}

.footer-cta-section {
  background-color: #CFCFBF;
  padding: 0;
  position: relative;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content {
  background-color: #FFFFFF;
  padding: 20px 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: -50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-text {
  font-size: 1.1rem;
  color: #000000;
  margin: 0;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 1023px) {
	.nav {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-container {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		padding: 0 15px;
		position: relative;
		z-index: 1001;
		gap: 15px;
	}
	.header-left {
		justify-self: start;
	}
	.abaa-mobile-menu-toggle {
		display: flex !important;
		justify-self: end;
	}
}

@media (max-width: 768px) {
	.header-container {
		padding: 0 15px;
	}

	.logo-img {
		height: 45px;
	}

	.hero-title {
		font-size: 3.5rem;
		line-height: 1;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.footer-logo img {
		height: 180px;
		margin: 0 auto 20px auto;
		display: block;
	}

	.footer-description {
		max-width: none;
		margin: 0 auto;
	}

	.footer-nav {
		align-items: center;
	}

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

	.contact-item {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer-social {
		justify-content: center;
	}

	.footer-cta-section {
		padding-bottom: 24px;
	}
}

@media (max-width: 1024px) {
	.container {
		padding: 0 15px;
	}
	.section-title {
		font-size: 2.5rem;
	}
	.cta-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
		padding: 20px;
	}
	.cta-container {
		padding: 0 15px;
	}
} 