:root {
  --light-bg: #fffaf1;
  --orange-bg: #eb6200;
  --dark-text: #734c4a;
  --light-text: #FFFFFF;
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-text);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

.scroll-container {
  scroll-snap-type: y mandatory;
  /* height: 100vh; */
}

.full-screen-section {
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 8%;
  position: relative;
}

.section-light { background-color: var(--light-bg); }
.section-orange { background-color: var(--orange-bg); color: var(--light-text); }

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

h1, h2, h3 { font-family: var(--heading-font); font-weight: 700; }
h1 { font-size: 4rem; margin-bottom: 0.5rem; }
h2 { font-size: 3rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
p { line-height: 1.6; font-size: 1rem; }

.logo {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.logo span {
  display: block;
  font-size: 0.8rem;
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--dark-text);
}
.logo h3 {
  color: var(--dark-text);
}

a {
  color: var(--dark-text);
}

/* --- Hero Section --- */
#hero .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 6rem;
  height: 100%;
  max-height: 100vh;
}
#hero .text-content {
  max-width: 500px;
  order: 2;
  flex-shrink: 0;
}
#hero .image-container, #contact .image-container {
  order: 1;
  flex: 1;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero p { font-size: 1.25rem; margin-bottom: 2rem; }
#hero h1 {
  color: var(--orange-bg);
}
.cta-button {
  display: inline-block;
  background-color: var(--orange-bg);
  color: var(--light-text);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-3px);
  background-color: #d86e22;
}

/* --- Services Section --- */
.section-orange h2 { color: var(--light-text); }
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
#services .service-card {
  text-align: center;
}
.service-card .icon { 
  margin-bottom: 1.5rem; 
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-card .icon img {
  max-height: 5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.service-card h3 { font-size: 1.5rem; }

/* --- Cooperation Section --- */
#cooperation .container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.process-column:first-of-type {
  flex:1;
}
#cooperation h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  margin-top: 0;
  min-height: 4rem;
  display: flex;
  align-items: center;
}
#cooperation h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
}
.timeline {
  position: relative;
  padding-left: 50px;
  border-left: 2px solid var(--orange-bg);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -59px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--orange-bg);
  border: 3px solid var(--light-bg);
}
.timeline h4 {
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--orange-bg);
  font-size: 1.1rem;
}

.details-column h3 {
  margin-bottom: 1.5rem;
}
.details-column ul {
  list-style-position: inside;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.details-column li {
  margin-bottom: 0.5rem;
}
.price-list p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--dark-text);
  padding: 0.5rem 0;
  gap: 1rem;
}

/* --- Contact Section --- */
#contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
}

.contact-info p {
   margin-bottom: 2rem;
   text-align: justify;
}
.contact-details { font-size: 1.2rem; }
.contact-details a {
  color: var(--light-text);
  text-decoration: none;
}
.contact-details div { margin-bottom: 1rem; }
.image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  border: 4px solid #734c4a;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 100%;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.contact-details-grid > div {
  margin-bottom: 0.5rem;
}
.contact-label {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--light-text);
  font-family: var(--body-font);
  margin-bottom: 0.2em;
  display: inline-block;
}
.contact-value {
  font-size: 1rem;
  color: var(--light-text);
  font-family: var(--body-font);
  font-weight: 400;
  margin-top: 0.1em;
  display: inline-block;
}
.contact-social {
  grid-column: 1 / span 2;
  margin-top: 1.5rem;
}
.contact-instagram {
  display: inline-block;
  margin-top: 0.5em;
  vertical-align: middle;
  transition: transform 0.2s;
}
.contact-instagram:hover, .contact-instagram:focus {
  transform: scale(1.1);
}
.contact-instagram svg {
  display: inline-block;
  vertical-align: middle;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; margin-bottom: 2rem; }
  .full-screen-section { padding: 4rem 8%; height: auto; min-height: 100vh; }
  .scroll-container { scroll-snap-type: none; }
  
  .logo {
    margin-bottom: 1rem;
  }
  #hero .container, #contact .container {
    text-align: center;
    flex-direction: column;
    gap: 2rem;
    height: auto;
    max-height: none;
  }
  #hero .text-content {
    order: 1;
  }
  #hero .image-container, #contact .image-container {
    order: 2;
    flex: 1 1 100%;
    max-width: 100vw;
    max-height: 50vh;
    margin-bottom: 2rem;
  }
 
  #services .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  #cooperation .container { flex-direction: column; }
  #contact .container { grid-template-columns: 1fr; text-align: center; }
  .decorative-arch { display: none; }
}

@media (max-width: 576px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .image-container img {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
  }
}

.main-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--light-bg);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 0.75rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.nav-list li {
  display: inline-block;
}
.nav-list a {
  color: var(--dark-text);
  font-size: 1.1rem;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-list a:hover, .nav-list a:focus {
  color: var(--orange-bg);
  background: #fff3e6;
  text-decoration: none;
}
@media (max-width: 700px) {
  .nav-container {
    justify-content: center;
  }
  .nav-list {
    gap: 0.2rem;
  }
  .nav-list a {
    font-size: 1rem;
    padding: 0.4rem 0.5rem;
  }

  #contact .container {
    gap: 2rem;
  }
}