:root {  
  --color-cream: #faf8f5;
  --color-beige: #e8dfd6;
  --color-warm-gray: #9b9280;
  --color-muted-brown: #7a6f5d;
  --color-black: #1a1a1a;
  --color-white: #ffffff;
  --color-light-pink: #e5d5d0;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Inter", "Helvetica Neue", Arial, sans-serif;

  --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
}

/* ==================== GLOBAL RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-carousel video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-muted-brown);
  letter-spacing: 0.01em;
  font-weight: 300;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-fast);
}

header.scrolled {
  background-color: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.25rem 4rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-white);
  transition: var(--transition-fast);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 0.25rem;
}

header.scrolled .logo {
  color: var(--color-black);
  text-shadow: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  transition: var(--transition-fast);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

header.scrolled nav a {
  color: var(--color-black);
  text-shadow: none;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

header.scrolled nav a::after {
  background-color: var(--color-black);
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 28px;
  height: 1px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

header.scrolled .menu-toggle span {
  background-color: var(--color-black);
}

/* ==================== HERO CAROUSEL SECTION ==================== */
.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

.carousel-slide:nth-child(1) {
  background: linear-gradient(135deg, #8b8178 0%, #5a4f45 100%);
}

.carousel-slide:nth-child(2) {
  background: linear-gradient(135deg, #c9b5a0 0%, #8b7e6e 100%);
}

.carousel-slide:nth-child(3) {
  background: linear-gradient(135deg, #a89686 0%, #6b5f52 100%);
}

.carousel-slide:nth-child(4) {
  background: linear-gradient(135deg, #d4c4b5 0%, #9b8a7a 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease forwards 0.5s;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--color-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards 0.7s;
}

/* Carousel Counter */
.carousel-counter {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}

/* Carousel Arrows */
.carousel-arrows {
  position: absolute;
  bottom: 3rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 3;
  pointer-events: none;
}

.carousel-arrow {
  font-size: 2.5rem;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
  pointer-events: all;
  opacity: 0.8;
  font-weight: 300;
  line-height: 1;
}

.carousel-arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 8rem 4rem;
  max-width: 1600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.service-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ FIX: ALL SERVICE IMAGES SAME SIZE */
.service-image {
  width: 100%;
  height: 420px;          /* change this number if you want slightly taller/shorter */
  background: linear-gradient(
    135deg,
    var(--color-beige) 0%,
    var(--color-warm-gray) 100%
  );
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* keeps style, crops nicely */
  display: block;
}

.service-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.service-card p {
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ==================== BUDAPEST DESTINATION SECTION ==================== */
.budapest-section {
  padding: 8rem 4rem;
  background-color: var(--color-beige);
}

.budapest-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.budapest-content p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.budapest-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.budapest-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #8b7e6e 0%, #5a4f45 100%);
}

/* ==================== WHY BUDAPEST SECTION ==================== */
.why-budapest-section {
  padding: 8rem 4rem;
  background-color: var(--color-white);
}

.why-budapest-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 5rem;
  font-size: 1.125rem;
  line-height: 1.9;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 5rem;
  text-align: left;
}

.budapest-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background-color: var(--color-beige);
  border-radius: 2px;
}

.budapest-cta-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  font-weight: 400;
}

/* ==================== PLANNING NOTE (WHITE BACKGROUND + CENTER TITLE) ==================== */
.planning-note {
  background: #ffffff;
  padding: 7rem 0 5rem;
}

.planning-note-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

.planning-note h2 {
  margin: 0 0 1.5rem;
  text-align: center;
}

.planning-note p {
  margin: 0 0 1.25rem;
  line-height: 1.9;
}

/* ==================== FOOTER ==================== */
footer {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--color-black);
  color: var(--color-cream);
}

.footer-names {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.footer-date {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-warm-gray);
  text-transform: uppercase;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 5rem; }
  .budapest-container { grid-template-columns: 1fr; gap: 4rem; }
  .reasons-grid { grid-template-columns: 1fr; gap: 3rem; }
  .budapest-features { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  header { padding: 1.5rem 2rem; }
  header.scrolled { padding: 1rem 2rem; }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 999;
  }

  nav.active { right: 0; }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  nav a {
    font-size: 1.5rem;
    color: var(--color-black);
    text-shadow: none;
  }

  .menu-toggle { display: flex; z-index: 1001; }

  .services-section,
  .budapest-section,
  .why-budapest-section {
    padding: 4rem 2rem;
  }

  .carousel-counter { bottom: 2rem; }
  h1 { font-size: 2.5rem; }

  /* Optional: slightly smaller service image height on mobile */
  .service-image { height: 320px; }
}

/* =========================================================
   EXACT GALLERY CLONE (only inside .sb-clone wrapper)
   + Footer background forced to paper
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&family=Inter:wght@300;400;500&display=swap');

.sb-clone{
  --lux-serif: "Libre Caslon Display", "Didot", "Bodoni MT", serif;
  --lux-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --paper: #f7f5f1;
  --line: rgba(17,17,17,.12);

  color: #111;
}

/* Quote band */
.sb-clone .sb-quote{
  background: var(--paper);
  padding: 95px 22px 85px;
  text-align: center;
}

.sb-clone .sb-quote__line1{
  margin: 0 0 14px;
  font-family: var(--lux-serif);
  font-size: 28px;
  line-height: 1.25;
  color: #111;
}

.sb-clone .sb-quote__line2{
  margin: 0;
  font-family: var(--lux-serif);
  font-size: 18px;
  line-height: 1.4;
  font-style: italic;
  color: rgba(17,17,17,.70);
}

/* Footer band */
.sb-clone .sb-footer{
  background: var(--paper);
  padding: 70px 22px 78px;
  border-top: 1px solid rgba(17,17,17,.08);
}

.sb-clone .sb-footer__inner{
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0;
  align-items: center;
}

.sb-clone .sb-footer__col{
  padding: 0 34px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sb-clone .sb-footer__col--center,
.sb-clone .sb-footer__col--right{
  border-left: 1px solid var(--line);
}

.sb-clone .sb-footer__title{
  font-family: var(--lux-serif);
  font-size: 20px;
  color: #111;
  margin: 0 0 18px;
}

.sb-clone .sb-footer__btn{
  display: inline-block;
  padding: 16px 22px;
  background: var(--paper);
  border: 1px solid rgba(17,17,17,.12);
  color: #111;
  text-align: center;

  font-family: var(--lux-sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  max-width: 280px;
}

.sb-clone .sb-footer__btn:hover{
  background: #f1eee8;
}

.sb-clone .sb-footer__col--center{
  text-align: center;
  align-items: center;
}

.sb-clone .sb-footer__logo{
  width: 220px;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

.sb-clone .sb-footer__centerline{
  margin: 0;
  font-family: var(--lux-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(17,17,17,.55);
  line-height: 1.5;
}

.sb-clone .sb-footer__links{
  display: grid;
  gap: 10px;
}

.sb-clone .sb-footer__links a{
  font-family: var(--lux-sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.55;
}

.sb-clone .sb-footer__links a:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

@media (max-width: 980px){
  .sb-clone .sb-footer__inner{
    grid-template-columns: 1fr;
  }

  .sb-clone .sb-footer__col{
    padding: 26px 0;
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .sb-clone .sb-footer__col--center,
  .sb-clone .sb-footer__col--right{
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .sb-clone .sb-footer__btn{
    width: 100%;
    max-width: 340px;
  }
}
