/**
* Latte Theme Styles
* Elegant, warm-toned theme with gradient background and refined typography
* Inspired by luxury interior design aesthetics
*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  /* Typography */
  --default-font: 'Cormorant Garamond', serif;
  --heading-font: 'Cormorant Garamond', serif;
  --nav-font: 'Cormorant Garamond', serif;

  /* Global Colors */
  --background-color: #e7e0d6;
  --default-color: #3a3330;
  --heading-color: #3a3330;
  --accent-color: #5a5349;
  --accent-hover: #8b7d6b;
  --surface-color: rgba(255, 255, 255, 0.12);
  --contrast-color: #ffffff;
  --border-color: rgba(90, 83, 73, 0.2);
  --shadow-color: rgba(58, 51, 48, 0.08);

  /* Navigation Colors */
  --nav-color: #3a3330;
  --nav-hover-color: #8b7d6b;
  --nav-mobile-background-color: #ede7de;
  --nav-dropdown-background-color: #ede7de;
  --nav-dropdown-color: #3a3330;
  --nav-dropdown-hover-color: #8b7d6b;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
}

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  color: var(--default-color);
  background: #e7e0d6 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Full-width gradient applied to main content wrapper */
body > main,
body > .main-content,
body > div:not(.top-bar):not(#header):not(header):not(nav):not(footer) {
  background: linear-gradient(to bottom, #e7e0d6, #8b7d6b);
}

/* Make outer .website-section wrappers full-width — remove Bootstrap container constraint */
.website-section > .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Hero needs zero padding on wrapper */
.website-section[data-section-type="Hero"] > .container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Non-hero sections keep inner container for readable content */
.latte-services .container,
.latte-contact .container,
.about-section .container,
.contact-section .container,
.blog-section .container,
.testimonials-section .container,
.team-section .container {
  max-width: 1200px;
}

a:not(.btn) {
  color: #5a5349 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

a:not(.btn):hover {
  color: #8b7d6b !important;
  text-decoration: none !important;
}

/* Ensure button text stays white */
.btn-primary a, a.btn-primary, a.btn-primary:hover {
  color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.4rem; font-weight: 600; }
h3 { font-size: 1.8rem; font-weight: 600; }
h4 { font-size: 1.4rem; font-weight: 600; }
h5 { font-size: 1.2rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
  letter-spacing: 0.02em;
}

.section-title p {
  color: #8b7d6b;
  font-size: 1.1rem;
  font-style: italic;
}

/*--------------------------------------------------------------
# Top Bar — Same cream background as nav, dark text
--------------------------------------------------------------*/
.latte-top-bar {
  background-color: #ede7de !important;
  color: #5a5349 !important;
  font-family: var(--default-font);
  font-size: 11px !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(90, 83, 73, 0.12) !important;
}

.latte-top-bar .top-bar-content {
  height: 100%;
}

.latte-top-bar .top-bar-item {
  font-size: 11px !important;
  letter-spacing: 0.2em;
  color: #5a5349 !important;
  transition: opacity 0.3s ease;
}

.latte-top-bar .top-bar-item span {
  font-size: 11px !important;
  letter-spacing: 0.2em;
  color: #5a5349 !important;
}

.latte-top-bar .top-bar-item i {
  color: #5a5349 !important;
}

.latte-top-bar a.top-bar-item {
  color: #5a5349 !important;
}

.latte-top-bar .top-bar-social {
  color: #5a5349 !important;
  transition: opacity 0.3s ease;
}

.latte-top-bar .top-bar-social i {
  color: #5a5349 !important;
}

.latte-top-bar .top-bar-left {
  gap: 0 !important;
}

.latte-top-bar .top-bar-right {
  gap: 0 !important;
}

/* Top bar mobile — stack items, shrink font, truncate long emails */
@media (max-width: 768px) {
  .latte-top-bar {
    height: auto !important;
    line-height: 1.4 !important;
    padding: 6px 0 !important;
  }

  .latte-top-bar .top-bar-content {
    flex-wrap: wrap !important;
    height: auto !important;
    justify-content: center !important;
    gap: 2px 0;
  }

  .latte-top-bar .top-bar-left {
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100%;
  }

  .latte-top-bar .top-bar-right {
    justify-content: center !important;
    width: 100%;
  }

  .latte-top-bar .top-bar-item {
    font-size: 10px !important;
    letter-spacing: 0.1em;
    padding: 2px 8px !important;
    height: auto !important;
    white-space: nowrap;
  }

  .latte-top-bar .top-bar-item span {
    font-size: 10px !important;
    letter-spacing: 0.1em;
  }

  .latte-top-bar .top-bar-social {
    padding: 2px 6px !important;
    height: auto !important;
  }

  /* Hide separators on mobile */
  .latte-top-bar .top-bar-left > span[style*="width: 1px"],
  .latte-top-bar .top-bar-right > span[style*="width: 1px"] {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .latte-top-bar .top-bar-item {
    font-size: 9px !important;
    letter-spacing: 0.05em;
    padding: 2px 5px !important;
  }

  .latte-top-bar .top-bar-item span {
    font-size: 9px !important;
    letter-spacing: 0.05em;
  }
}

/*--------------------------------------------------------------
# Navigation — Cream background, centered logo with vertical line
--------------------------------------------------------------*/
.latte-nav {
  background-color: #ede7de;
  padding: 0;
  border-bottom: none;
  z-index: 997;
  position: relative;
}

/* Thin line under the nav */
.latte-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(90, 83, 73, 0.15);
}

/* Desktop three-column layout */
.latte-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  position: relative;
}

.latte-nav-left,
.latte-nav-right {
  flex: 1;
}

.latte-nav-left ul,
.latte-nav-right ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.latte-nav-left ul {
  justify-content: flex-end;
}

.latte-nav-right ul {
  justify-content: flex-start;
}

.latte-nav-left li,
.latte-nav-right li {
  position: relative;
}

.latte-nav-left a,
.latte-nav-right a,
.latte-nav-left span,
.latte-nav-right span {
  display: block;
  padding: 10px 28px;
  font-family: var(--nav-font);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: #3a3330 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.latte-nav-left a:hover,
.latte-nav-right a:hover,
.latte-nav-left a.active,
.latte-nav-right a.active {
  color: #8b7d6b !important;
}

/* Center logo — with vertical line extending above and below */
.latte-nav-logo {
  flex: 0 0 auto;
  padding: 12px 50px;
  text-align: center;
  position: relative;
}

.latte-nav-logo img {
  height: 75px;
  width: auto;
}

.latte-nav-logo .latte-site-name,
.latte-nav-mobile .latte-site-name {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-style: italic;
}

/* Mobile navigation */
.latte-nav-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 5px 0;
}

.latte-mobile-logo img {
  height: 50px;
  width: auto;
}

.latte-mobile-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--heading-color);
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.latte-mobile-toggle:hover {
  color: #8b7d6b;
}

.latte-mobile-menu {
  display: none;
  padding: 0 0 15px 0;
  border-top: 1px solid rgba(90, 83, 73, 0.12);
}

.latte-mobile-menu.open {
  display: block;
}

.latte-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 0 0;
}

.latte-mobile-menu li {
  border-bottom: 1px solid rgba(90, 83, 73, 0.08);
}

.latte-mobile-menu a,
.latte-mobile-menu span {
  display: block;
  padding: 12px 0;
  font-family: var(--nav-font);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #3a3330 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.latte-mobile-menu a:hover,
.latte-mobile-menu a.active {
  color: #8b7d6b !important;
}

/*--------------------------------------------------------------
# Hero Section — Full-bleed background image
--------------------------------------------------------------*/
.latte-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
}

.latte-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.latte-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(231, 224, 214, 0.1) 0%,
    rgba(231, 224, 214, 0.4) 60%,
    rgba(231, 224, 214, 0.75) 100%
  );
  z-index: 1;
}

.latte-hero .container {
  padding-bottom: 60px;
  padding-top: 80px;
}

.latte-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: var(--heading-color);
  font-style: italic;
}

.latte-hero .latte-hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 8px;
}

.latte-hero .latte-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.85;
  max-width: 600px;
}

.latte-hero-btn {
  font-family: var(--default-font) !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 12px 40px !important;
  border-radius: 0 !important;
  font-size: 0.85rem !important;
}

.latte-hero .btn-primary {
  background-color: #5a5349 !important;
  border-color: #5a5349 !important;
  color: #ffffff !important;
}

.latte-hero .btn-primary:hover {
  background-color: #8b7d6b !important;
  border-color: #8b7d6b !important;
}

.latte-hero .btn-outline-light {
  border-color: #5a5349 !important;
  color: #5a5349 !important;
  background-color: transparent !important;
}

.latte-hero .btn-outline-light:hover {
  background-color: #5a5349 !important;
  border-color: #5a5349 !important;
  color: #ffffff !important;
}

/* Featured / Secondary Image (right side) */
.latte-hero-featured-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 20px 20px;
  transform: translateX(min(180px, calc(100vw * 0.06)));
}

.latte-hero-featured-image img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Gradient button below featured image */
.latte-hero .latte-hero-featured-image .latte-hero-gradient-btn,
.latte-hero .latte-hero-featured-image .latte-hero-gradient-btn:link,
.latte-hero .latte-hero-featured-image .latte-hero-gradient-btn:visited,
a.latte-hero-gradient-btn {
  display: block;
  width: 40%;
  max-width: 100%;
  text-align: center;
  padding: 18px 40px;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: none !important;
  color: #f5f0eb !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  background: linear-gradient(to right, #bdb1a5, #c4bbae, #61534a, #b69f7f, #a89c8b) !important;
  border: none;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
  margin-top: 16px;
}

.latte-hero .latte-hero-featured-image .latte-hero-gradient-btn:hover,
a.latte-hero-gradient-btn:hover {
  opacity: 0.9;
  color: #ffffff !important;
  text-decoration: none !important;
}

@@media (max-width: 991.98px) {
  .latte-hero-featured-image {
    margin-top: 40px;
    padding: 0 20px;
    transform: none;
  }
  .latte-hero-featured-image img {
    max-height: 350px;
  }
  .latte-hero .latte-hero-featured-image .latte-hero-gradient-btn,
  a.latte-hero-gradient-btn {
    width: 80% !important;
    font-size: 1.1rem;
    padding: 14px 20px;
  }
}

@@media (max-width: 576px) {
  .latte-hero .latte-hero-featured-image .latte-hero-gradient-btn,
  a.latte-hero-gradient-btn {
    width: 100% !important;
    font-size: 1rem;
    padding: 14px 16px;
    letter-spacing: 0.08em;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.latte-about {
  background-color: #564f45 !important;
  padding: 80px 0 !important;
}

.latte-about-text {
  text-align: center;
}

.latte-about-title {
  color: #e7e0d6 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: italic;
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-align: center;
}

.latte-about-content {
  color: #d4cdc4 !important;
  font-size: 1rem;
  line-height: 1.9;
}

.latte-about-content p {
  color: #d4cdc4 !important;
  margin-bottom: 1rem;
}

.latte-about-image-wrapper {
  text-align: center;
}

.latte-about-image-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@@media (max-width: 991.98px) {
  .latte-about {
    padding: 50px 0 !important;
  }
  .latte-about-image-col {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Services Section - Alternating Tiles
--------------------------------------------------------------*/
.latte-services {
  padding: 60px 0;
}

.latte-service-tile {
  margin-bottom: 60px;
}

.latte-service-tile:last-child {
  margin-bottom: 0;
}

.latte-service-tile-image {
  text-align: center;
}

.latte-service-tile-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.latte-service-tile-text {
  text-align: center;
  padding: 20px 30px;
}

.latte-service-tile-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: italic;
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.latte-service-tile-short {
  font-size: 0.95rem;
  font-weight: 500;
  color: #5a5349;
  margin-bottom: 12px;
}

.latte-service-tile-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5a5349;
  opacity: 0.85;
}

.latte-service-tile-desc p {
  margin-bottom: 0.5rem;
}

@@media (max-width: 991.98px) {
  .latte-service-tile {
    margin-bottom: 40px;
  }
  .latte-service-tile-image {
    margin-bottom: 20px;
  }
  .latte-service-tile-image img {
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.latte-contact {
  background-color: #564f45 !important;
  padding: 80px 0 !important;
}

.latte-contact .section-title h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: italic;
  font-size: 2.4rem;
  color: #e7e0d6 !important;
}

.latte-contact .section-title p {
  color: #d4cdc4 !important;
}

.latte-contact-info {
  background: transparent;
  border: none;
  padding: 0;
}

.latte-contact-info h5 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #e7e0d6 !important;
}

.latte-contact-info .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.latte-contact-info .info-item:last-child {
  margin-bottom: 0;
}

.latte-contact-info .info-item i {
  font-size: 1.1rem;
  color: #c4bbae;
  margin-top: 3px;
  flex-shrink: 0;
}

.latte-contact-info .info-item span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d4cdc4 !important;
}

.latte-contact-info .info-item a {
  color: #d4cdc4 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.latte-contact-info .info-item a:hover {
  color: #ffffff !important;
}

.latte-contact-info .phone-label,
.latte-contact-info .email-label {
  font-weight: 500;
  margin-right: 4px;
  color: #c4bbae !important;
}

.latte-contact-info .opening-hours {
  font-size: 0.95rem;
  color: #d4cdc4;
}

.latte-contact-info .opening-hours > div {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.latte-contact-info .opening-hours > div span {
  color: #d4cdc4 !important;
}

.latte-contact-info .opening-hours > div:last-child {
  border-bottom: none;
}

.latte-contact-form {
  background: transparent;
  border: none;
  padding: 0;
}

.latte-contact-form h5 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #e7e0d6 !important;
}

.latte-contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0;
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0.95rem;
  color: #e7e0d6 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.latte-contact-form .form-control:focus {
  border-color: #c4bbae !important;
  box-shadow: 0 0 0 2px rgba(196, 187, 174, 0.15) !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
}

.latte-contact-form .form-control::placeholder {
  color: rgba(212, 205, 196, 0.5) !important;
}

.latte-contact-form .btn-primary {
  background-color: transparent !important;
  border: 1px solid #c4bbae !important;
  border-radius: 0 !important;
  padding: 14px 40px;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e7e0d6 !important;
  transition: all 0.3s ease;
}

.latte-contact-form .btn-primary:hover {
  background-color: #c4bbae !important;
  border-color: #c4bbae !important;
  color: #3a3330 !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* Background & base */
.latte-footer.site-footer {
  background-color: #3a3330 !important;
  color: #d4cdc4;
  padding: 60px 0 20px;
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 15px;
  border-top: 1px solid rgba(196, 187, 174, 0.15);
}

/* Grid layout */
.latte-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.latte-footer .footer-about {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.latte-footer .footer-contact {
  grid-column: 2;
  grid-row: 1;
}

.latte-footer .footer-info {
  grid-column: 2;
  grid-row: 2;
}

.latte-footer .footer-hours {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.latte-footer .footer-social {
  grid-column: 4;
  grid-row: 1 / span 2;
}

/* Section titles */
.latte-footer .footer-title {
  color: #e7e0d6 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.latte-footer .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, #c4bbae, transparent);
}

/* Description */
.latte-footer .footer-description {
  color: #b0a89e;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Contact items */
.latte-footer .contact-info {
  gap: 14px;
}

.latte-footer .contact-item {
  color: #d4cdc4;
}

.latte-footer .contact-item i {
  color: #c4bbae !important;
  font-size: 15px;
}

.latte-footer .contact-item a {
  color: #d4cdc4 !important;
  text-decoration: none;
}

.latte-footer .contact-item a:hover {
  color: #e7e0d6 !important;
}

/* Maps button */
.latte-footer .maps-button {
  background-color: rgba(196, 187, 174, 0.08);
  border: 1px solid rgba(196, 187, 174, 0.2);
  border-radius: 0;
  color: #d4cdc4 !important;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.03em;
}

.latte-footer .maps-button i {
  color: #c4bbae !important;
}

.latte-footer .maps-button:hover {
  background-color: rgba(196, 187, 174, 0.15);
  border-color: #c4bbae;
  color: #e7e0d6 !important;
}

.latte-footer .maps-button:hover i {
  color: #e7e0d6 !important;
}

/* Opening hours */
.latte-footer .opening-hours {
  gap: 6px;
}

.latte-footer .hours-row {
  color: #b0a89e;
  padding: 3px 0;
}

.latte-footer .day-name {
  color: #d4cdc4;
  font-weight: 500;
}

.latte-footer .day-hours .closed {
  color: #8b8078;
  font-style: italic;
}

/* Social links */
.latte-footer .social-link {
  background-color: rgba(196, 187, 174, 0.08);
  border: 1px solid rgba(196, 187, 174, 0.2) !important;
  border-radius: 0 !important;
  color: #c4bbae !important;
  width: 38px;
  height: 38px;
}

.latte-footer .social-link i,
.latte-footer .social-link svg {
  color: #c4bbae !important;
  fill: #c4bbae !important;
}

.latte-footer .social-link:hover {
  background-color: #c4bbae !important;
  border-color: #c4bbae !important;
  color: #3a3330 !important;
  transform: translateY(-2px);
}

.latte-footer .social-link:hover i,
.latte-footer .social-link:hover svg {
  color: #3a3330 !important;
  fill: #3a3330 !important;
}

/* Footer links */
.latte-footer .footer-link {
  color: #b0a89e !important;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.latte-footer .footer-link:hover {
  color: #e7e0d6 !important;
}

/* Email copy */
.latte-footer .footer-email-copy {
  color: #d4cdc4;
}

.latte-footer .footer-email-copy:hover {
  color: #e7e0d6;
}

/* Newsletter */
.latte-footer .footer-newsletter-wrapper {
  margin-bottom: 30px;
}

.latte-footer .footer-newsletter-box {
  background-color: rgba(196, 187, 174, 0.06);
  border: 1px solid rgba(196, 187, 174, 0.15);
  border-radius: 0;
  padding: 30px;
}

.latte-footer .footer-newsletter-title {
  color: #e7e0d6 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.latte-footer .footer-newsletter-desc {
  color: #b0a89e;
}

.latte-footer .newsletter-input-group {
  border: 1px solid rgba(196, 187, 174, 0.25);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.04);
}

.latte-footer .newsletter-input-group:focus-within {
  border-color: #c4bbae;
}

.latte-footer .newsletter-input {
  color: #e7e0d6 !important;
  font-family: 'Cormorant Garamond', serif;
}

.latte-footer .newsletter-input::placeholder {
  color: rgba(196, 187, 174, 0.4) !important;
}

.latte-footer .newsletter-button {
  background-color: #c4bbae !important;
  color: #3a3330 !important;
  border-radius: 0 !important;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.latte-footer .newsletter-button:hover {
  background-color: #d4cdc4 !important;
}

.latte-footer .newsletter-consent {
  color: #8b8078;
}

.latte-footer .newsletter-consent input[type="checkbox"]:checked {
  background-color: #c4bbae;
  border-color: #c4bbae;
}

/* Footer bottom */
.latte-footer .footer-bottom {
  border-top: 1px solid rgba(196, 187, 174, 0.15);
  padding-top: 20px;
}

.latte-footer .footer-bottom p {
  color: #8b8078;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* All links fallback */
.latte-footer a {
  color: #d4cdc4;
  transition: color 0.3s ease;
}

.latte-footer a:hover {
  color: #e7e0d6;
}

@media (max-width: 1200px) {
  .latte-footer .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .latte-footer .footer-about {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .latte-footer .footer-contact {
    grid-column: 2;
    grid-row: 1;
  }

  .latte-footer .footer-info {
    grid-column: 2;
    grid-row: 2;
  }

  .latte-footer .footer-hours {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .latte-footer .footer-social {
    grid-column: 1 / span 3;
    grid-row: 3;
  }
}

@media (max-width: 768px) {
  .latte-footer .footer-content {
    grid-template-columns: 1fr;
  }

  .latte-footer .footer-about,
  .latte-footer .footer-contact,
  .latte-footer .footer-info,
  .latte-footer .footer-hours,
  .latte-footer .footer-social {
    grid-column: 1;
    grid-row: auto;
  }
}

/*--------------------------------------------------------------
# Buttons (Global) — !important to override Bootstrap & inline theme vars
--------------------------------------------------------------*/
.btn-primary {
  background-color: #5a5349 !important;
  border-color: #5a5349 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #8b7d6b !important;
  border-color: #8b7d6b !important;
  color: #ffffff !important;
}

.btn-outline-primary {
  color: #5a5349 !important;
  border-color: #5a5349 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #5a5349 !important;
  border-color: #5a5349 !important;
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-section .card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  padding: var(--section-padding) 0;
}

.testimonials-section .testimonial-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  padding: 30px;
}

/*--------------------------------------------------------------
# Portfolio / Gallery Section
--------------------------------------------------------------*/
.portfolio-section .portfolio-item {
  border-radius: 2px;
  overflow: hidden;
}

/* Gallery - square crops, smaller with more spacing */
.gallery-section .gallery-item-image {
  padding-bottom: 100% !important;
  border-radius: 2px !important;
}

.gallery-section .row.g-3 {
  --bs-gutter-x: 2.5rem !important;
  --bs-gutter-y: 2.5rem !important;
}

.gallery-section .gallery-item-image img {
  object-fit: cover !important;
}

.gallery-section .gallery-item {
  border-radius: 2px !important;
  cursor: pointer;
}

.gallery-section .gallery-item:hover {
  transform: none !important;
  box-shadow: none !important;
}

.gallery-section .gallery-item-image img {
  transition: opacity 0.3s ease !important;
}

.gallery-section .gallery-item:hover .gallery-item-image img {
  opacity: 0.85;
}

@media (min-width: 1200px) {
  .gallery-section .container,
  .gallery-section .container-lg,
  .gallery-section .container-md,
  .gallery-section .container-sm,
  .gallery-section .container-xl {
    max-width: 995px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-section .team-member {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.team-section .team-member:hover {
  transform: translateY(-4px);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  body {
    font-size: 16px;
  }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .latte-hero {
    min-height: 50vh;
  }

  .latte-hero h1 {
    font-size: 2.4rem;
  }

  .latte-services,
  .latte-contact,
  .about-section,
  .testimonials-section {
    padding: var(--section-padding-mobile) 0;
  }

  .section-title {
    padding-bottom: 25px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .latte-service-card {
    padding: 20px;
  }

  .latte-contact-info,
  .latte-contact-form {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .latte-hero h1 {
    font-size: 2rem;
  }

  .latte-hero {
    min-height: 40vh;
  }

  .latte-nav-logo {
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Scrollbar
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e7e0d6;
}

::-webkit-scrollbar-thumb {
  background: #8b7d6b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5a5349;
}
