:root {
  --color-primary: #7a4a1f;       
  --color-secondary: #c08a3e;     
  --color-dark: #1f1f1f;
  --color-light: #ffffff;
  --color-muted: #6b6b6b;
  --color-border: #e5e5e5;

  --font-main: "Cinzel", Arial, sans-serif;

  --container-width: 1280px;
  --transition: 0.25s ease-in-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #3e2a1f;
}

.overlay-text, .animated-circle {
  font-family: 'Playfair Display', serif;
}

footer, footer p {
  font-family: serif;
}


main {
  flex: 1; 
}

.site-footer {
  flex-shrink: 0;
}

p {
    font-family: 'Merriweather', serif;
  font-weight: bold;
}

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  background-color: var(--color-light);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  background-color: var(--color-dark);
  color: #f5f5f5;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}

.top-bar-left span {
  opacity: 0.85;
}

.top-bar-right a {
  margin-left: 20px;
  font-weight: 500;
}

.top-bar-right a:hover {
  color: var(--color-secondary);
}

.header-main {
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-light);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-navigation {
  margin-left: auto;
  margin-right: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list > li > a {
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition);
}

.nav-list > li > a:hover::after,
.nav-list > li > a[aria-current="page"]::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 1000;
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--color-dark);
}

.dropdown li a:hover {
  background-color: #faf7f3;
  color: var(--color-primary);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-light);
  background-color: var(--color-primary);
  border-radius: 4px;
  transition: background-color var(--transition), transform var(--transition);
}

.header-cta .btn-primary:hover {
  background-color: var(--color-secondary);
  transform: translateY(-1px);
}

.breadcrumb {
  background-color: #fafafa;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}

.breadcrumb .container {
  min-height: 36px;
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .nav-list {
    gap: 24px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .main-navigation {
    display: none;
  }

  .header-flex {
    min-height: 70px;
  }
}

.burger-menu {
  display: none;
  position: relative;
  margin-right: 20px;
}

#burger-toggle {
  display: none;
}

.burger-icon {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger-icon span {
  display: block;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

#burger-toggle:checked + .burger-icon span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

#burger-toggle:checked + .burger-icon span:nth-child(2) {
  opacity: 0;
}

#burger-toggle:checked + .burger-icon span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-navigation {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-light);
  padding: 90px 24px 40px;
  transition: left var(--transition);
  overflow-y: auto;
  z-index: 999;
}

#burger-toggle:checked ~ .mobile-navigation {
  left: 0;
}

.mobile-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-navigation a,
.mobile-submenu > span {
  font-size: 18px;
  font-weight: 500;
}

.mobile-submenu ul {
  margin-top: 12px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-submenu span {
  font-weight: 600;
  color: var(--color-primary);
}

.mobile-cta {
  margin-top: 40px;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}


@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }

  .main-navigation,
  .header-cta {
    display: none;
  }
}

.site-footer {
  background-color: #1f1f1f;
  color: #f5f5f5;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.6;
  padding: 60px 0 30px;
}

.site-footer a {
  color: #c08a3e;
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 180px;
}

.footer-logo strong {
  font-size: 20px;
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

.footer-logo span {
  font-size: 12px;
  color: #b5b5b5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 14px;
}

.footer-column address {
  font-style: normal;
  margin-bottom: 12px;
}

.footer-hours {
  margin-top: 12px;
  font-size: 13px;
  color: #b5b5b5;
}

.footer-middle {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 20px 0;
  margin-bottom: 30px;
  font-size: 14px;
  color: #dcdcdc;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  font-size: 13px;
  color: #a5a5a5;
  text-align: center;
}

.footer-bottom a {
  color: #c08a3e;
  margin-left: 8px;
  margin-right: 8px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .footer-top {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 25px;
  }

  .footer-middle {
    font-size: 13px;
    padding: 16px 0;
  }
}

.hero-section {
  padding: 80px 0;
  background-color: #faf7f3;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 450px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .hero-flex {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-image img {
    max-width: 100%;
  }
}

.features-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.features-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.features-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 650px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-block {
  flex: 1 1 30%;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}

.feature-block h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.feature-block p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
}

.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 768px) {
  .features-header h2 {
    font-size: 28px;
  }

  .features-header p {
    font-size: 15px;
  }

  .features-grid {
    flex-direction: column;
    gap: 20px;
  }

  .feature-block {
    flex: 1 1 100%;
  }
}

.image-feature-section {
  position: relative;
  padding: 80px 0;
  background-color: #fffaf0;
}

.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  min-height: 300px;
}

.center-image {
  max-width: 600px;
  width: 100%;
  height: 450px;
  display: block;
  border-radius: 12px;
  transform: translateY(40px);
  transition: transform 1s ease-out, opacity 1s ease-out;
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.overlay-text {
  position: absolute;
  bottom: -15px;
  right: 154px;
  max-width: 350px;
  color: #3e2a1f;
  background: rgb(255 255 255);
  padding: 20px;
  border-radius: 8px;
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.8s ease-out;
  z-index: 6;
}

.overlay-text h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.overlay-text p {
  font-size: 14px;
  line-height: 1.5;
}

.animated-circle {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #a0522d;
  top: 0%;     
  left: 10%;   
  transform: translate(-40px, -40px) scale(0);
  opacity: 0;
  transition: all 1s ease-out;
}

.reveal-scale.active {
  transform: translate(0,0) scale(1);
  opacity: 1;
}

.section-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 30px;
  text-align: left;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease-out;
  text-align: center;
}

.reveal-left.active {
  transform: translateX(0);
  opacity: 1;
}

.reveal-up {
  transform: translateY(40px);
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.reveal-right {
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-scale {
  transform: translateY(40px) scale(0);
  opacity: 0;
  transition: all 1s ease-out;
}

.reveal-up.active {
  transform: translateY(0);
}

.reveal-right.active,
.reveal-scale.active {
  transform: translate(0,0) scale(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .overlay-text {
    bottom: -30px;
    right: 10px;
    max-width: 90%;
    padding: 16px;
  }

  .overlay-text h2 {
    font-size: 20px;
  }

  .overlay-text p {
    font-size: 13px;
  }

  .animated-circle {
    width: 90px;
    height: 90px;
    bottom: 5%;
    left: 65%;
  }

  .center-image {
    height: 200px;
  }
}

.animated-circle {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #a0522d;
  bottom: -20px;   
  left: 120px;   
  transform: translateX(0) scale(0); 
  opacity: 0;
  transition: all 1s ease-out;
}

.reveal-scale.active {
  transform: translateX(60px) scale(1); 
  opacity: 1;
}

.feature-section {
  padding: 80px 0;
  background-color: #fff8f0;
}

.feature-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-text h2 {
  font-family: var(--font-main);
  font-size: 50px;
  color: #3e2a1f;
  margin-bottom: 40px;
}

.feature-text p {
  font-family: var(--font-main);
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 25px;
}

.feature-image {
  flex: 1;
  min-width: 300px;
}

.feature-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  opacity: 1 !important;      
  transform: none !important;
}

.reveal-left {
  transform: translateX(-40px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-right {
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .feature-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .feature-text h2 {
    font-size: 28px;
  }

  .feature-text p {
    font-size: 14px;
  }
}

.info-grid-section {
  padding: 90px 0;
  background-color: #fff;
}

.section-title {
  font-size: 50px;
  margin-bottom: 20px;
  color: #3e2a1f;
}

.section-description {
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
  margin-bottom: 50px;
  font-size: 17px;
  color: #4a4a4a;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-item {
  border-radius: 16px;
  padding: 28px;
}

.grid-item.image {
  padding: 0;
  overflow: hidden;
}

.grid-item.image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.grid-item.text h3 {
  font-size: 38px;
  margin-bottom: 12px;
  color: #3e2a1f;
}

.grid-item.text p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a4a4a;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .grid-item.image img {
    min-height: 200px;
  }
}

.contact-section {
  padding: 100px 0;
  background-color: #fff8f0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0 70px;
}

.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #3e2a1f;
}

.contact-card p {
  font-size: 15.5px;
  line-height: 1.7;
}

.contact-bottom {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-form {
  flex: 1.2; 
}

.contact-text {
  flex: 0.8;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  background-color: #a0522d;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.contact-text h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.contact-text p {
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-bottom {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .contact-section {
    padding: 70px 0;
  }

  .contact-cards {
    gap: 20px;
    margin: 40px 0 50px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-bottom {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    order: 1;
    width: 100%;
  }

  .contact-text {
    order: 2;
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 16px 18px;
  }

  .contact-form button {
    padding: 16px;
    font-size: 16px;
  }

  .contact-text h3 {
    font-size: 22px;
  }

  .contact-text p {
    font-size: 15px;
  }
}
