:root {
  --off-white: #f7f5f2;
  --dark: #1a1a18;
  --gold: #c49a3c;
  --gray: #6f7c86;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
}

h1, h2, h3, h4, .display-5, .display-6 {
  font-family: 'Cormorant Garamond', serif;
}

i {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.section-padding {
  padding: 100px 0;
}

.text-accent {
  color: var(--gold) !important;
}

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

/* Navbar */

.navbar {
  transition: all 0.4s ease;
  padding: 25px 0;
}

.navbar.scrolled {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-brand .porta {
  color: var(--gray);
}

.navbar-brand .innova {
  color: var(--gold);
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 15px;
}

.navbar:not(.scrolled) .nav-link {
  color: #fff !important;
}

/* Hero */

.hero-logo {
  font-size: 3rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}

.hero-logo .porta {
  color: var(--gray);
}

.hero-logo .innova {
  color: var(--gold);
}

.tagline {
  font-size: 1.2rem;
  letter-spacing: 5px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
}

/* Features */

.feature-card {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background: white;
  border-left: 3px solid var(--gold);
}

.feature-card .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-right: 25px;
  line-height: 1;
}

.feature-card h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Gallery */

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 24, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
}

.gallery-item:hover .caption {
  opacity: 1;
}

/* Footer & Logos */

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo .porta {
  color: var(--gray);
}

.footer-logo .innova {
  color: var(--gold);
}

.bg-dark {
  background-color: var(--dark) !important;
}

/* Map */

.map-container {
  filter: grayscale(1) invert(1) contrast(0.8);
}

