@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600;900&family=Playfair+Display:ital,wght@1,600&display=swap');

/* GLOBAL SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-washed-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-oxblood);
  border: 2px solid var(--color-washed-black);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-light-gray);
}

:root {
  /* Alequi Studio Palette */
  --color-cream: #F2EDE5;
  --color-faded-denim: #5C7EA1;
  --color-oxblood: #7A2630;
  --color-washed-black: #1F1F1F;
  --color-light-gray: #DAD6D1;

  /* Typography */
  --font-display: 'Anton', sans-serif; /* For bold, uppercase headings */
  --font-tagline: 'Playfair Display', serif; /* For italic taglines */
  --font-body: 'Inter', sans-serif; /* For general text */
}

html, body {
  background-color: var(--color-cream);
  color: var(--color-washed-black);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent; /* No ugly blue tap boxes */
}

/* Accessibility: Remove default outline, use focus-visible */
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 3px dashed var(--color-faded-denim);
  outline-offset: 4px;
}

main.container {
  flex: 1;
}

/* TOP BANNER */
.top-banner {
  background-color: var(--color-washed-black);
  color: var(--color-cream);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* HEADER */
header {
  border-bottom: 1px solid var(--color-light-gray);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-cream);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-left, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
  gap: 20px;
}

.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-washed-black);
}

.logo {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo a {
  text-decoration: none;
  color: var(--color-washed-black);
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 2px;
}

.logo .sub-logo {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 6px;
  font-weight: 900;
  color: var(--color-washed-black);
  margin-right: -6px; /* offset the extra letter spacing on the right */
}

.icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* UTILITIES & BUTTONS */
.btn-primary {
  background-color: var(--color-faded-denim);
  color: var(--color-cream);
  padding: 15px 35px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background-color: var(--color-washed-black);
    transform: translateY(-2px);
  }
}
.btn-primary:active {
  transform: translateY(1px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HERO SECTION */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  /* Grunge texture background overlay can be applied here */
  background-image: radial-gradient(circle at center, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 100%);
  border-bottom: 1px solid var(--color-light-gray);
}

.hero-text-wrapper {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.9;
  color: var(--color-oxblood);
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.hero-tagline {
  font-family: var(--font-tagline);
  font-size: 2.5rem;
  color: var(--color-washed-black);
  margin: 0 0 20px 0;
}

.hero-subtitle {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--color-washed-black);
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  max-width: 120%;
  height: auto;
  object-fit: cover;
}

/* GLOBAL RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .logo a {
    font-size: 2rem;
  }
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
}
