/* Font Face */
/* @font-face {
  font-family: 'Canela';
  src: url('../fonts/canela.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-Thin-Web.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

.Canela-Thin-Web {
  font-family: 'Canela Web';
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-ThinItalic-Web.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
}

.Canela-ThinItalic-Web {
  font-family: 'Canela Web';
  font-weight: 100;
  font-style: italic;
}

/*
@font-face {
  font-family: 'Canela Web';
  src: url('Canela-MediumItalic-Web.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
}

.Canela-MediumItalic-Web {
  font-family: 'Canela Web';
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-Medium-Web.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

.Canela-Medium-Web {
  font-family: 'Canela Web';
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-Black-Web.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

.Canela-Black-Web {
  font-family: 'Canela Web';
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-RegularItalic-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

.Canela-RegularItalic-Web {
  font-family: 'Canela Web';
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-Light-Web.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

.Canela-Light-Web {
  font-family: 'Canela Web';
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-LightItalic-Web.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}

.Canela-LightItalic-Web {
  font-family: 'Canela Web';
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-Regular-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

.Canela-Regular-Web {
  font-family: 'Canela Web';
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-BlackItalic-Web.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
}

.Canela-BlackItalic-Web {
  font-family: 'Canela Web';
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-Bold-Web.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

.Canela-Bold-Web {
  font-family: 'Canela Web';
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Canela Web';
  src: url('Canela-BoldItalic-Web.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

.Canela-BoldItalic-Web {
  font-family: 'Canela Web';
  font-weight: 700;
  font-style: italic;
} */

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

/* Custom Properties */
:root {
  --font-serif: 'Canela Web', serif;
  --font-sans: 'Inter', sans-serif;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F3;
  --color-warm-gray: #A8A29E;
  --color-dark: #1C1917;
  --spacing-unit: 1rem;
}

/* Base Styles */
html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--color-white);
  background-color: var(--color-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 2rem 4rem;
  /* Padding for the header */

  /* position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  /* Changed from center */
  /* padding-top: 15vh; */
  /* Positions content in top third */
  /* text-align: center; */
  /* */
  /* Full-screen background image */
  background-image:
    /* linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05)), */
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Header container - new wrapper needed */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.1); */
  /* Subtle transparent background */
  /* backdrop-filter: blur(10px); */
  /* Optional: adds glass effect */
  padding: 1.5rem 3rem;
  border-radius: 2px;
  /* Optional: slight rounding */
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1);
  /* margin-bottom: calc(var(--spacing-unit) * 3); */
}

.logo {
  /* width: 80px; */
  height: 87px;
  opacity: 0.95;
  flex-shrink: 0;
  margin-bottom: -7px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 100;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0;
}

.brand-location {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 100;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.25rem;
}


/* Tagline as brand philosophy - more prominent */
.tagline {
  font-family: var(--font-serif);
  /* Switch to Canela for emphasis */
  font-size: 1.125rem;
  /* Larger than before */
  font-weight: 100;
  letter-spacing: 0.08em;
  text-transform: none;
  /* Remove uppercase */
  font-style: italic;
  /* Optional: adds elegance */
  opacity: 0.9;
  /* More visible */
  margin: 0;
}

/* Or alternative treatment without italic */
.tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 100;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 1;
  /* Full opacity */
  margin: 0;
  position: relative;
}

/* Optional: add subtle quotes or decoration */
.tagline::before,
.tagline::after {
  content: "—";
  /* Em dash */
  opacity: 0.4;
  margin: 0 0.5em;
}

/* CTA container simplified */
.cta-container {
  flex-direction: row;
  /* Change to horizontal */
  gap: 2rem;
  margin: 0;
}

.cta-button {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-white);
  background-color: transparent;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.coming-soon {
  font-size: 0.813rem;
  opacity: 0.6;
  font-weight: 300;
}

/* Navigation Hint */
.nav-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  font-size: 1.5rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

/* Animations */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    width: 80px;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.813rem;
  }
}

/* Loading Animation */
.hero>* {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.logo-container {
  animation-delay: 0.2s;
}

.tagline {
  animation-delay: 0.4s;
}

.cta-container {
  animation-delay: 0.6s;
}

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

/* Mobile Responsive - Add this to your existing CSS */
@media (max-width: 1400px) {

  /* Stack header vertically */
  .header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  /* Center logo and text */
  .logo-container {
    justify-content: center;
  }

  /* Adjust logo size */
  .logo {
    height: 70px;
    margin-bottom: -5px;
  }

  /* Reduce font sizes */
  .brand-name {
    font-size: 2.5rem;
  }

  .brand-location {
    font-size: 1rem;
  }

  /* Make tagline more compact */
  .tagline {
    font-size: 1rem;
    text-align: center;
  }

  .tagline::before,
  .tagline::after {
    display: none;
    /* Remove em dashes on mobile */
  }

  /* Stack CTA vertically too */
  .cta-container {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
  }

  /* Make button full width */
  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  /* Show coming soon again */
  .coming-soon {
    display: block;
  }

  /* Reduce overall padding */
  .hero {
    padding: 1rem;
  }
}

/* Tablet/medium screens */
@media (max-width: 1400px) and (min-width: 769px) {
  .header {
    padding: 1.5rem 2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }
}