:root {
    --color-black: #2d2c38;
    --color-dark-purple: #b2a6d9;
    --color-light-purple: #ede8f5;
    --color-white: #fff;
    --color-light-green: #c7d0bd;
    --color-dark-green: #708c82;

    --font-main: 'Lora', Arial, Helvetica, sans-serif;
    --font-accent: 'Noto Serif Display', Georgia, serif;
}

body {
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(45, 44, 56, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    height: 70px;
    margin-top: 1.2rem;
}

.header.scrolled .navbar {
    background: transparent;
    margin-top: 0.2rem;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.navbar-center {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-center li a {
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-center li a:hover {
    color: var(--color-light-purple);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.navbar-social {
    color: var(--color-white);
    font-size: 1.4rem;
    transition: color 0.2s;
}

.navbar-social:hover {
    color: var(--color-light-purple);
}

.navbar-lang {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--color-dark-purple);
    border-radius: 18px;
    padding: 0.2rem 0.7rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.3rem;
    transition: color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--color-light-purple);
    font-weight: bold;
}

.header.scrolled .navbar-center li a {
    color: var(--color-black);
}

.header.scrolled .navbar-center li a:hover {
    color: var(--color-dark-purple);
}

.header.scrolled .navbar-social {
    color: var(--color-black);
}

.header.scrolled .navbar-social:hover {
    color: var(--color-dark-purple);
}

.hero-section {
    position: relative;
    min-height: 90vh;
    background: url('img/hero_background.webp') no-repeat center center/cover;
    overflow: hidden;
    margin: 0rem 2.5vw;
    border-radius: 2rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(45, 44, 56, 0.55);
}

.hero-content {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 2.5rem 0 10rem 5rem;
}

.hero-content h1 {
    font-family: var(--font-accent);
    color: var(--color-white);
    font-size: 5rem;
    letter-spacing: 1px;
}

.hero-content p,
.hero-content span,
.hero-content a {
    font-family: var(--font-main);
    color: var(--color-white);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-buttons a {
    color: var(--color-white);
    padding: 0.7rem 1.6rem;
    border-radius: 12px;
    border: 2px solid var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(45, 44, 56, 0.08);
}

.hero-buttons a:hover {
    background: var(--color-light-purple);
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 120;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: var(--color-white);
    margin: 5px 0;
    border-radius: 2px;
    transition: background 0.3s;
}
.header.scrolled .hamburger span {
    background: var(--color-black);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(45,44,56,0.97);
    z-index: 110;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: opacity 0.3s;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.mobile-menu li a {
    color: var(--color-white);
    font-size: 2rem;
    font-family: var(--font-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.mobile-menu li a:hover {
    color: var(--color-dark-purple);
}
.mobile-menu .navbar-social {
    color: var(--color-white);
    font-size: 2.2rem;
}
.mobile-menu .navbar-lang {
    background: var(--color-dark-purple);
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

/* Rólunk */
.rolunk-section {
    background-color: var(--color-white);
    text-align: center;
    padding: 8rem 13rem 8rem 13rem;
    background-image: url('img/lavender.webp'), url('img/butterfly.webp');
    background-repeat: no-repeat, no-repeat;
    background-position: left 100px bottom -40px, right 200px top 100px;
}

.rolunk-section h2 {
    font-family: var(--font-accent);
    color: var(--color-black);
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1.2rem;
}
.rolunk-section h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: var(--color-dark-purple);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}

.rolunk-section p,
.rolunk-section span,
.rolunk-section a {
    font-family: var(--font-main);
    color: var(--color-black);
    font-size: 1.15rem;
}

.rolunk-section .rolunk-btn {
    margin-top: 2.2rem;
    background: transparent;
    color: var(--color-dark-purple);
    border: 2px solid var(--color-dark-purple);
    border-radius: 12px;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(45, 44, 56, 0.08);
    display: inline-block;
}
.rolunk-section .rolunk-btn:hover {
    background: var(--color-light-purple);
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

/* Programok */
.programok-section {
    background: var(--color-light-purple);
    text-align: center;
    padding: 8rem 13rem 8rem 13rem;
}

.programok-content {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.program-card {
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(45,44,56,0.10);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    color: var(--color-black);
}

.program-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(45,44,56,0.10);
}
.program-card-title {
    font-family: var(--font-accent);
    font-size: 1.4rem;
}
.program-card-date {
    font-family: var(--font-main);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
.program-card-link {
    background: transparent;
    color: var(--color-dark-purple);
    border: 2px solid var(--color-dark-purple);
    border-radius: 12px;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(45, 44, 56, 0.08);
    display: inline-block;
    margin-top: auto;
}
.program-card-link:hover {
    background: var(--color-light-purple);
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.programok-section h2 {
    font-family: var(--font-accent);
    color: var(--color-black);
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1.2rem;
    position: relative;
}
.programok-section h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: var(--color-dark-purple);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}

/* Információk */
.informaciok-section {
    background: var(--color-white);
    padding: 8rem 0rem 8rem 0rem;
    text-align: center;
}

.informaciok-section h2 {
    font-family: var(--font-accent);
    color: var(--color-black);
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1.2rem;
    position: relative;
}
.informaciok-section h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: var(--color-dark-purple);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}

.informaciok-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 2.5rem;
    padding-left: 15rem;
}

.informaciok-img {
    width: 40%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(45,44,56,0.10);
    z-index: 2;
    margin: auto 0px;
}

.informaciok-details {
    background: var(--color-dark-purple);
    color: var(--color-white);
    padding: 2.5rem 5rem 2.5rem 15rem;
    text-align: left;
    z-index: 1;
    margin-left: -150px;
    box-shadow: 0 4px 16px rgba(45,44,56,0.10);
    width: 100%;
}

.informaciok-details h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}
.informaciok-details ul {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}
.informaciok-details ul li {
    margin-bottom: 0.5rem;
}

/* Galéria rope and tweezers */
.galeria-section {
    padding: 8rem 0rem 8rem 0rem;
    text-align: center;
    background: url('img/galeria_background.webp') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.galeria-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    top: 0;
    left: 0;
}
.galeria-section h2 {
    font-family: var(--font-accent);
    color: var(--color-black);
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}
.galeria-section h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: var(--color-dark-purple);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}
.galeria-section > * {
    position: relative;
    z-index: 3;
}
.galeria-content {
    min-height: 1000px;
}
.galeria-rope-wrapper {
    position: relative;
}
.second-rope-wrapper {
    margin-top: 400px;
}
.third-rope-wrapper, .fourth-rope-wrapper, .fifth-rope-wrapper {
    display: none;
}
.galeria-rope {
    pointer-events: none;
}
.tweezer {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%;
}
.tweezer-clip {
    height: 48px;
    margin-bottom: -10px;
    z-index: 3;
}
.tweezer-image {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 6px 24px 0 rgba(80,60,100,0.10);
    overflow: hidden;
    background: #fff;
    border: 8px solid #fff;
    box-sizing: border-box;
    border-bottom-width: 32px;
}
.tweezer-image img {
    width: 100%;
    height: 85%;
    object-fit: cover;
}
/* Position the tweezers along the arc (approximate vertical offset for rope curve) */
.tweezer[style*="left:1%"]  { top: 5px; }
.tweezer[style*="left:1%"] { transform: rotate(6deg);}
.tweezer[style*="left:21.5%"] { top: 30px; }
.tweezer[style*="left:21.5%"] { transform: rotate(3deg);}
.tweezer[style*="left:42%"] { top: 40px; }
.tweezer[style*="right:21.5%"] { top: 30px; }
.tweezer[style*="right:21.5%"] { transform: rotate(-3deg);}
.tweezer[style*="right:1%"] { top: 5px; }
.tweezer[style*="right:1%"] { transform: rotate(-6deg);}

/* Kapcsolat */
.kapcsolat-section {
    background-color: var(--color-white);
    text-align: center;
    padding: 8rem 13rem 8rem 13rem;
}

.kapcsolat-section h2 {
    font-family: var(--font-accent);
    color: var(--color-black);
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1.2rem;
}
.kapcsolat-section h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: var(--color-dark-purple);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}

.kapcsolat-section p,
.kapcsolat-section span,
.kapcsolat-section a {
    font-family: var(--font-main);
    color: var(--color-black);
    font-size: 1.15rem;
}

.kapcsolat-content {
    margin-top: 2.5rem;
}

.kapcsolat-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-bottom: 2rem;
}
.kapcsolat-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.kapcsolat-item i {
  color: var(--color-dark-purple);
  font-size: 1.5rem;
  min-width: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
    background: var(--color-dark-purple);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 0 24px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
}
.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}
.footer-desc {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  max-width: 260px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
  margin-top: 16px;
  margin-left: auto;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--color-black);
}
.footer-separator {
  border: none;
  border-top: 2px solid #fff;
  width: 40%;
  margin: 32px 0 16px auto;
  opacity: 0.3;
}
.footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: #fff;
  padding-bottom: 18px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--color-black);
}

@media (max-width: 1200px) {
    .hero-content {
        margin-left: 2.5rem;
        margin-bottom: 6rem;
        max-width: 90vw;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .rolunk-section {
        padding: 4rem 2rem 4rem 2rem;
        background-position: left 20px bottom -30px, right 60px top 60px;
    }
    .programok-section {
        padding: 4rem 2rem 4rem 2rem;
    }
    .programok-content {
        gap: 1.2rem;
    }
    .informaciok-section {
        padding: 4rem 2rem 4rem 2rem;
    }
    .informaciok-content {
        padding-left: 0;
    }
    .informaciok-details {
        padding: 2rem 2rem 2rem 6rem;
        margin-left: -60px;
    }
    .galeria-section {
        padding: 4rem 0rem 4rem 0rem;
    }
    .kapcsolat-section {
        padding: 4rem 2rem 4rem 2rem;
    }
}

@media (max-width: 900px) {
    .hero-section {
        min-height: 60vh;
        margin: 0.8rem 1vw;
        border-radius: 1.2rem;
    }
    .hero-content {
        margin-left: 1.2rem;
        margin-bottom: 3.5rem;
        max-width: 95vw;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p,
    .hero-content span,
    .hero-content a {
        font-size: 1rem;
    }
    .hero-buttons {
        gap: 1rem;
    }
    .hero-buttons a {
        padding: 0.6rem 1.1rem;
        font-size: 1rem;
    }
    .rolunk-section {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
        background-position: left 0px bottom -20px, right 10px top 30px;
        background-size: 200px auto, 80px auto;
    }
    .rolunk-section h2 {
        font-size: 1.7rem;
    }
    .rolunk-section p,
    .rolunk-section span,
    .rolunk-section a {
        font-size: 1rem;
    }
    .rolunk-section .rolunk-btn {
        font-size: 1rem;
        padding: 0.6rem 1.1rem;
    }
    .programok-section {
        padding: 3rem 0.5rem 3rem 0.5rem;
    }
    .programok-section h2 {
        font-size: 1.7rem;
    }
    .informaciok-section {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
    }
    .informaciok-section h2 {
        font-size: 1.7rem;
    }
    .informaciok-content {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }
    .informaciok-img {
        width: 60%;
    }
    .informaciok-details {
        margin: 1rem;
        padding: 0;
    }
    .informaciok-text {
        margin: 0rem 1rem;
    }
    .galeria-section {
        padding: 2.5rem 0rem 2rem 0rem;
    }
    .galeria-section h2 {
        font-size: 1.7rem;
    }
    .kapcsolat-section {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
        background-position: left 0px bottom -20px, right 10px top 30px;
        background-size: 200px auto, 80px auto;
    }
    .kapcsolat-section h2 {
        font-size: 1.7rem;
    }
    .kapcsolat-section p,
    .kapcsolat-section span,
    .kapcsolat-section a {
        font-size: 1rem;
    }
    .footer-content {
        padding: 28px 8px 0 8px;
    }
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer-logo-desc {
        align-items: flex-start;
        margin-bottom: 12px;
    }
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
        margin-left: 0;
        margin-top: 10px;
        justify-content: flex-start;
    }
    .footer-separator {
        width: 70%;
        margin: 18px 0 10px 0;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-bottom: 10px;
        font-size: 0.93rem;
    }
}

@media (max-width: 768px) {
    .navbar-center,
    .navbar-right {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header.scrolled .navbar-social {
        color: var(--color-white) !important;
    }
    .header.scrolled .navbar-social:hover {
        color: var(--color-dark-purple) !important;
    }
    .galeria-content {
        min-height: 1400px;
    }
    .first-rope-wrapper, .second-rope-wrapper {
        display: none;
    }
    .third-rope-wrapper, .fourth-rope-wrapper, .fifth-rope-wrapper {
        display: block;
    }
    .fourth-rope-wrapper, .fifth-rope-wrapper {
        margin-top: 350px;
    }
    .tweezer {
        width: 40%;
    }
    .tweezer[style*="left:5%"]  { top: 25px; }
    .tweezer[style*="left:5%"] { transform: rotate(6deg);}
    .tweezer[style*="right:5%"]  { top: 25px; }
    .tweezer[style*="right:5%"] { transform: rotate(-6deg);}

    .kapcsolat-info {
        flex-direction: column;
        gap: 1.2rem;
    }
    .kapcsolat-item {
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .footer-content {
        padding: 32px 8px 0 8px;
    }
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-links {
        margin-left: 0;
        margin-top: 12px;
        gap: 16px;
    }
    .footer-separator {
        width: 70%;
        margin: 24px 0 12px 0;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 45vh;
        margin: 0.5rem 0.5vw;
        border-radius: 0.7rem;
    }
    .hero-content {
        margin-left: 0.5rem;
        margin-bottom: 1.2rem;
        max-width: 98vw;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content p,
    .hero-content span,
    .hero-content a {
        font-size: 0.95rem;
    }
    .hero-buttons {
        gap: 0.5rem;
    }
    .hero-buttons a {
        padding: 0.5rem 0.7rem;
        font-size: 0.95rem;
    }
    .informaciok-section {
        padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    }
    .informaciok-img {
        width: 90%;
    }
    .informaciok-details h3 {
        font-size: 1.05rem;
    }
    .informaciok-details ul {
        font-size: 0.98rem;
    }
    .galeria-section {
        padding: 1.2rem 0rem 1.2rem 0rem;
    }
    .footer-content {
        padding: 18px 2vw 0 2vw;
    }
    .footer-logo {
        width: 60px;
        margin-bottom: 10px;
    }
    .footer-desc {
        font-size: 0.98rem;
        max-width: 95vw;
    }
    .footer-links {
        gap: 10px;
        font-size: 0.98rem;
        flex-wrap: wrap;
    }
    .footer-separator {
        width: 90%;
        margin: 14px 0 8px 0;
    }
    .footer-bottom {
        font-size: 0.91rem;
        gap: 4px;
    }
}

@media (max-width: 400px) {
    .tweezer-image {
        height: 200px;
        border-bottom-width: 12px;
    }
    .fourth-rope-wrapper, .fifth-rope-wrapper {
        margin-top: 170px;
    }
    .galeria-content {
        min-height: 900px;
    }
    .footer-logo {
        width: 44px;
    }
    .footer-desc {
        font-size: 0.93rem;
    }
    .footer-links {
        font-size: 0.93rem;
    }
}