@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
  --olive: #b8b44e;
  --olive-dark: #9a8c3c;
  --olive-bg: #c5c156;
  --cream: #f5f0e6;
  --cream-light: #faf7f0;
  --brown-text: #5a4e3a;
  --brown-dark: #3d3526;
  --gray-button: #6b6155;
  --gray-text: #555;
  --dark-card: #6b6b5e;
  --dark-testimonial: #5c5c50;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--brown-text);
  background-color: var(--cream);
  line-height: 1.6;
}

/* ========== NAVIGATION ========== */
.navbar {
  background-color: var(--olive-bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 120px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.navbar a:hover {
  opacity: 0.75;
}

.navbar a.active {
  border-bottom: 1px solid white;
  padding-bottom: 2px;
}

/* ========== HERO SECTION ========== */
.hero {
  width: 100%;
  overflow: hidden;
  background-color: var(--olive-bg);
}

.hero img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ========== MOTTO / TAGLINE SECTION ========== */
.motto {
  background-color: var(--olive-bg);
  text-align: center;
  padding: 50px 20px 60px;
}

.motto .site-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 10px;
}

.motto .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3.2rem;
  color: white;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== INTRO / DESCRIPTION SECTION ========== */
.intro {
  background-color: var(--cream);
  text-align: center;
  padding: 60px 20px 50px;
}

.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--gray-text);
  margin-bottom: 30px;
  line-height: 1.3;
}

.intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gray-text);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.intro .btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 40px;
  background-color: var(--gray-button);
  color: white;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.intro .btn:hover {
  background-color: var(--brown-dark);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background-color: var(--olive-bg);
  padding: 0;
}

.gallery-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--gray-text);
  text-align: center;
  padding: 30px 20px;
  background-color: var(--olive-bg);
  margin: 0;
}

/* Top row: 1 large + 1 small */
.gallery-top {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 6px;
  margin-bottom: 6px;
}

.gallery-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-top img:first-child {
  aspect-ratio: 16/9;
}

.gallery-top img:last-child {
  aspect-ratio: auto;
}

/* Bottom grid: 3 columns x 2 rows */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

/* ========== SERVICES / EGYÜTTMŰKÖDÉSI LEHETŐSÉGEK ========== */
.services-section {
  padding: 0;
}

.services-title {
  background-color: var(--olive-bg);
  padding: 50px 20px;
  text-align: center;
}

.services-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gray-text);
}

.services-grid {
  display: flex;
  flex-direction: column;
}

.service-card {
  display: flex;
  min-height: 450px;
}

.service-card:nth-child(odd) .service-text {
  background-color: var(--dark-card);
  color: white;
}

.service-card:nth-child(odd) .service-text h3 {
  color: white;
}

.service-card:nth-child(odd) .service-text p {
  color: rgba(255,255,255,0.85);
}

.service-card:nth-child(even) .service-text {
  background-color: var(--cream);
}

.service-card:nth-child(even) .service-text h3 {
  color: var(--brown-dark);
}

.service-card:nth-child(even) .service-text p {
  color: var(--gray-text);
}

.service-image {
  flex: 0 0 50%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-text {
  flex: 1;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.service-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 0;
}

.testimonials-title {
  background-color: var(--olive-bg);
  text-align: center;
  padding: 60px 20px;
}

.testimonials-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--gray-text);
  line-height: 1.4;
}

.testimonial-slider {
  position: relative;
  background-color: var(--dark-testimonial);
  padding: 70px 100px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slides {
  max-width: 700px;
  width: 100%;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote {
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
  line-height: 0.5;
  display: block;
  margin-bottom: 30px;
}

.testimonial-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 15px;
}

.testimonial-author {
  font-style: normal !important;
  font-weight: 600;
  color: white !important;
  margin-top: 15px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  transition: color 0.3s;
}

.slider-btn:hover {
  color: white;
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}

/* ========== CTA SECTION ========== */
.cta-image {
  width: 100%;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.cta-text {
  background-color: var(--olive-bg);
  text-align: center;
  padding: 60px 20px 80px;
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.8rem;
  color: var(--gray-text);
  line-height: 1.4;
}

/* ========== CONTACT LOGO SECTION (Kapcsolat page) ========== */
.contact-logo-section {
  background-color: var(--olive-bg);
  padding: 60px 20px;
}

.contact-logo-wrapper {
  max-width: 400px;
}

.contact-logo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== ABOUT / ROLAM PAGE ========== */
.page-title {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--cream);
}

.page-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--brown-text);
}

.page-title .contact-text {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--brown-text);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-section {
  background-color: var(--olive-bg);
  padding: 40px 5%;
}

.about-card {
  display: flex;
  align-items: stretch;
  background-color: var(--cream-light);
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.about-card .card-image {
  flex: 0 0 45%;
}

.about-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card .card-text {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card .card-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.about-card .card-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* About text + image side by side */
.about-story {
  background-color: var(--olive-bg);
  padding: 0 5%;
}

.story-card {
  display: flex;
  align-items: stretch;
  background-color: var(--cream-light);
  max-width: 1100px;
  margin: 0 auto;
}

.story-card .story-text {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.story-card .story-image {
  flex: 0 0 45%;
}

.story-card .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About continuation text */
.about-text-block {
  background-color: var(--cream);
  text-align: center;
  padding: 50px 20px;
  max-width: 850px;
  margin: 0 auto;
}

.about-text-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* About gallery (bistro photos) */
.about-gallery {
  background-color: var(--olive-bg);
  padding: 30px 10%;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
}

.about-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
}

/* Quote / highlight section */
.quote-section {
  background-color: var(--olive-bg);
  text-align: center;
  padding: 60px 20px;
}

.quote-section p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  color: var(--brown-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ========== CONTACT / KAPCSOLAT PAGE ========== */
.contact-section {
  background-color: var(--cream);
  text-align: center;
  padding: 40px 20px 60px;
}

.contact-section p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: 10px;
}

.contact-form {
  max-width: 500px;
  margin: 30px auto 0;
  text-align: left;
}

.contact-form label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--brown-text);
  margin-bottom: 5px;
  margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: white;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  background-color: var(--gray-button);
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.contact-form .btn:hover {
  background-color: var(--brown-dark);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--cream);
  border-top: 3px solid var(--olive);
  padding: 40px 5% 20px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
}

.footer-info {
  text-align: left;
}

.footer-info .phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 5px;
}

.footer-info .email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gray-text);
  margin-bottom: 15px;
}

.footer-info .email a {
  color: var(--gray-text);
  text-decoration: none;
}

.footer-info .email a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #222;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: left;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid var(--olive);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gray-text);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .navbar ul {
    gap: 40px;
  }

  .motto .tagline {
    font-size: 2rem;
  }

  .intro h2 {
    font-size: 2rem;
  }

  .gallery-top {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    flex-direction: column !important;
    min-height: auto;
  }

  .service-image {
    flex: none;
    height: 300px;
  }

  .service-text h3 {
    font-size: 1.5rem;
  }

  .testimonials-title h2 {
    font-size: 1.6rem;
  }

  .testimonial-slider {
    padding: 50px 40px;
  }

  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  .cta-text h2 {
    font-size: 1.8rem;
  }

  .cta-image img {
    height: 250px;
  }

  .about-card {
    flex-direction: column;
  }

  .about-card .card-image {
    flex: none;
  }

  .story-card {
    flex-direction: column-reverse;
  }

  .story-card .story-image {
    flex: none;
  }

  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-info {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .quote-section p {
    font-size: 1.4rem;
  }

  .services-title h2 {
    font-size: 1.8rem;
  }
}
