:root {
  --primary-gold: #f4c430;
  --primary-brown: #7d5f45;
  --accent-green: #7fb069; 
  --accent-blue: #3e5c8c;
  --light-cream: #fffef0;
  --dark-text: #333333;
  --secondary-brown: #413933;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

p {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-text);
}

.cursive-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 4rem;
  color: #942b2b;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*border:1px solid red;*/
}

.main-container {
  margin:auto;
  max-width: 1920px;
}

header {
  position: relative;
  height: 30svb;
  overflow: hidden;
}

.header-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  width: 200%;
  height: 100%;
  animation: header-slide-left 300s linear infinite;
}

.header-slide {
  flex: 0 0 calc(100% / 10);
  background-image: var(--header-slide-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo-container,
.nav-container {
  position: relative;
  z-index: 1;
}

@keyframes header-slide-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-container {
  height: 70%;
  display: flex;
  align-items: center;
  flex-direction: column;
  
}
/*d6ba9e*/
header img.logo {
  height: 95%;
  padding-top: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(53 45 38 / 15%);
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.nav-links li {
  display: flex;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  text-align: center;
  text-decoration: none;
  color: var(--dark-text);
  border: 2px solid #2d2d2d;
  font-family: 'Montserrat', sans-serif;
  padding: 8px 0;
  transition: background-color 0.3s, color 0.3s;
  background-color: var(--light-cream);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
}


.hero {
  min-height: 70svb;
  background-color: #d6ba9e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pictures-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

.social-section {
  background-color: #413933;
  min-height: 50svh;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.social-section-message {
  color: #d6ba9e;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6ba9e;
  border: 1px solid #d6ba9e;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background-color: #d6ba9e;
  color: #413933;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 20px;
  line-height: 1;
}

.footer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-slider-layout {
    background-color:#d6ba9e;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.home-hero-slider {
  --hero-slider-padding: 2rem;
  --hero-slider-frame-height: clamp(260px, 45vw, 560px);
  --hero-slider-btn-offset: 14px;
    position: relative;
    width: 100%;
    overflow: hidden;
  min-height: calc(var(--hero-slider-frame-height) + (var(--hero-slider-padding) * 2));
    isolation: isolate;
  padding: var(--hero-slider-padding);
}

.home-hero-slider .hero-slider-track {
    position: relative;
  width: 100%;
  height: var(--hero-slider-frame-height);
}

.home-hero-slider .hero-slide {
    margin: 0;
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 0.9s ease;
    pointer-events: none;
}

.home-hero-slider .hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.home-hero-slider .hero-slide.is-entering {
    animation: hero-slide-enter 0.7s ease both;
}

.home-hero-slider .hero-slide-image {
    display: block;
    width: 100%;
  height: 100%;
    object-fit: cover;
}

@keyframes hero-slide-enter {
    from {
        opacity: 0;
        transform: translateX(18px) scale(1.02);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.home-hero-slider .hero-slider-btn {
    position: absolute;
  top: calc(var(--hero-slider-padding) + (var(--hero-slider-frame-height) / 2));
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    color: #000000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.home-hero-slider .hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.95);
}

.home-hero-slider .hero-slider-btn-prev {
  left: calc(var(--hero-slider-padding) + var(--hero-slider-btn-offset));
}

.home-hero-slider .hero-slider-btn-next {
  right: calc(var(--hero-slider-padding) + var(--hero-slider-btn-offset));
}


@media (max-width: 880px) {

  .hero-slider-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  
  .logo-container {
    height: 70%;
  }
  .footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .header-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    width: 400%;
    height: 100%;
    animation: header-slide-left 30s linear infinite;
  }
  
}

@media (min-width: 768px) and (max-width: 1199px) {
  .logo-container {
    height: 80%;
  }

  .hero-slider-layout-side {
      min-height: 0;
  }

  .home-hero-slider .hero-slider-btn {
      width: 36px;
      height: 36px;
  }

  .home-hero-slider .hero-slider-btn-prev {
      left: calc(var(--hero-slider-padding) + 10px);
  }

  .home-hero-slider .hero-slider-btn-next {
      right: calc(var(--hero-slider-padding) + 10px);
  }
}

@media (min-width: 1200px) {
  .logo-container {
    height: 80%;
  }

  .social-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
