:root {
  --ev-bg: #fdfaf7;
  --ev-text: #2e2e2e;
  --ev-accent: #c56c3f;
  --ev-accent-light: #f4d5c5;
  --ev-muted: #8a8a8a;
  --ev-navbar-height: 72px;
}

html,
body {
  height: 100%;
}

/*---------------------
  Base Typography
----------------------*/
body {
  background-color: var(--ev-bg);
  color: var(--ev-text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ev-text);
}

a {
  color: var(--ev-accent);
  text-decoration: none;
}
a:hover {
  color: var(--ev-accent-light);
}

/*---------------------
  Utility
----------------------*/
.ev-muted {
  color: var(--ev-muted);
}
.ev-icon {
  font-size: 1.5rem;
  vertical-align: middle;
}
.fill-accent {
  fill: var(--ev-accent);
}

/*---------------------
  Navbar
----------------------*/
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}
.nav-link {
  font-weight: 500;
  color: var(--ev-text);
}
.nav-link:hover {
  color: var(--ev-accent);
}
.navbar-toggler {
  display: flex !important;
}

/*---------------------
  Custom Hamburger Toggler
----------------------*/
.custom-toggler {
  border: none;
  background: none;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1040;
  outline: none !important;
  box-shadow: none !important;
}
.toggler-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: var(--ev-text);
  border-radius: 2px;
}
.toggler-icon::before,
.toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: var(--ev-text);
  left: 0;
  border-radius: 2px;
}
.toggler-icon::before {
  top: -8px;
}
.toggler-icon::after {
  top: 8px;
}

/*---------------------
  Offcanvas Menu
----------------------*/
.offcanvas-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ev-text);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  display: inline-block;
}
.offcanvas-link:hover,
.offcanvas-link:focus {
  color: var(--ev-accent);
  border-bottom: 1px solid var(--ev-accent-light);
  text-decoration: none;
}
.offcanvas-social {
  font-size: 1.5rem;
  color: var(--ev-text);
  transition: color 0.2s ease;
}
.offcanvas-social:hover,
.offcanvas-social:focus {
  color: var(--ev-accent);
  text-decoration: none;
}

/*---------------------
  Hero Section
----------------------*/
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--ev-navbar-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-desktop,
.hero-image-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-image-desktop {
  background-image: url('/images/hero-desktop.jpg');
  display: block;
}
.hero-image-mobile {
  background-image: url('/images/hero-mobile.jpg');
  display: none;
}
@media (max-width: 991.98px) {
  .hero-image-desktop {
    display: none;
  }
  .hero-image-mobile {
    display: block;
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.hero-subtitle {
  color: #fdfaf7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--ev-text);
  z-index: 10;
  pointer-events: none;
  animation-delay: 2s;
  animation-duration: 1.2s;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/*---------------------
  Buttons
----------------------*/
.btn-ev-primary {
  background-color: var(--ev-accent);
  color: var(--ev-bg);
  border: none;
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn-ev-primary:hover,
.btn-ev-primary:focus {
  background-color: var(--ev-text);
  color: var(--ev-bg);
  text-decoration: none;
}
.btn-ev-outline {
  background: none;
  color: var(--ev-text);
  border: 2px solid var(--ev-text);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.btn-ev-outline:hover,
.btn-ev-outline:focus {
  background-color: var(--ev-text);
  color: var(--ev-bg);
  text-decoration: none;
}

/*---------------------
  Portfolio Section
----------------------*/
.portfolio-section {
  background-color: var(--ev-bg);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ev-text);
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease-out;
}
.portfolio-card.reveal-left {
  transform: translateX(-50px) translateY(10px);
}

.portfolio-card.reveal-right {
  transform: translateX(50px) translateY(10px);
}

.portfolio-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.portfolio-card img {
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}
.portfolio-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.portfolio-label-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .portfolio-label-overlay {
    opacity: 0;
  }
  .portfolio-image-wrapper:hover .portfolio-label-overlay {
    opacity: 1;
  }
}
.floral-divider {
  width: 80px;
  height: auto;
  opacity: 0.7;
  filter: brightness(0.8);
}
.about-section {
  background-color: #f9f4f0;;
}

.about-image-wrapper img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.review-card {
  background-color: var(--ev-bg);
  border: 1px solid #eaeaea;
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.stars {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.cta-section {
  background-color: var(--ev-accent-light);
  color: var(--ev-text);
}

.cta-section .section-title {
  color: var(--ev-text);
}

.cta-section p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}


