/* Érintő - Modern Weboldal Stílusok */

:root {
    --beige: #D4C4B0;
    --off-white: #FAF7F2;
    --sage-green: #7A9B7E;
    --rose-gold: #C4A89E;
    --text-dark: #2C3E2C;
    --text-light: #5A6B5A;
}

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

body {
    font-family: 'Montserrat', 'Poppins', 'Raleway', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigáció */
nav {
    background-color: var(--beige);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-green);
    text-decoration: none;
    letter-spacing: 2px;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links > li {
    position: relative;
    list-style: none;
}

.nav-links > li::before {
    display: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover {
    color: var(--sage-green);
    border-color: var(--sage-green);
    background-color: rgba(122, 155, 126, 0.1);
}

.nav-links a.active {
    color: white;
    background-color: var(--sage-green);
    border-color: var(--sage-green);
}

.nav-links a.active:hover {
    color: white;
    background-color: var(--sage-green);
    border-color: var(--sage-green);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown > a::after {
    content: ' ▾';
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 0;
    margin-top: 0.5rem;
    z-index: 1000;
    list-style: none;
    overflow: hidden;
    
    /* Animáció */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

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

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.dropdown-content a {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0;
    font-size: 0.85rem;
    list-style: none;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
}

.dropdown-content a:first-child {
    border-radius: 15px 15px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 15px 15px;
}

.dropdown-content a::before {
    display: none;
}

.dropdown-content a:hover {
    background-color: rgba(122, 155, 126, 0.15);
    border-color: transparent;
    color: var(--sage-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--sage-green);
    border-radius: 3px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Close menu button - hidden by default */
.close-menu {
    display: none !important;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background-color: var(--off-white);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 155, 126, 0.1) 0%, rgba(196, 168, 158, 0.1) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero .subtitle {
    font-size: 1.8rem;
    color: var(--rose-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0 0 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--sage-green);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 181, 160, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cta-button:hover {
    background-color: var(--rose-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 196, 184, 0.4);
}

/* Sections */
.section {
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 2rem 2rem;
}

.section h2 {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.section h3 {
    font-size: 1.8rem;
    color: var(--rose-gold);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Content Boxes */
.content-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 30px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Image Content Layout */
.image-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-content.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.content-text {
    padding: 0;
}

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

.content-text ul li::before {
    display: none;
}

.content-image {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 155, 126, 0.05) 0%, rgba(196, 168, 158, 0.05) 100%);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.content-image:hover img {
    transform: scale(1.08);
}

/* Utility classes for inserted page images and small galleries */
.site-pic {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.2rem auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.pic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.6rem;
    align-items: center;
    justify-items: center;
    margin-top: 1rem;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-size: 1.5rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--sage-green);
    box-shadow: 0 10px 30px rgba(168, 181, 160, 0.2);
}

.card h3 {
    color: var(--sage-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-light);
    text-align: center;
    font-size: 1rem;
}

/* Contact Section */
.contact-info {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--rose-gold) 100%);
    color: white;
    border-radius: 30px;
    margin: 3rem 0;
}

.contact-info h2 {
    color: white;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: white;
    text-align: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--beige);
    text-align: center;
    padding: 2rem;
    color: var(--text-dark);
    margin-top: 4rem;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.gdpr-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

.gdpr-link:hover {
    color: var(--sage-green);
    text-decoration: underline;
}

/* Quote Styling */
.quote {
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    font-style: italic;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--off-white) 100%);
    border-radius: 20px;
    line-height: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 280px;
        height: 100vh;
        background-color: var(--beige);
        flex-direction: column;
        gap: 0.5rem;
        padding: 4.5rem 1.5rem 2rem 1.5rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
        right: 0;
    }
    
    .nav-links.active > li {
        animation: slideInRight 0.4s ease forwards;
        opacity: 0;
    }
    
    .nav-links.active > li:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .nav-links.active > li:nth-child(2) {
        animation-delay: 0.15s;
    }
    
    .nav-links.active > li:nth-child(3) {
        animation-delay: 0.2s;
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: rgba(122, 155, 126, 0.08);
        margin: 0.3rem 0 0.5rem 0;
        border-radius: 12px;
        display: none;
        opacity: 0;
        visibility: visible;
        transform: translateX(20px);
        transition: transform 0.25s ease, opacity 0.25s ease;
        padding: 0.3rem 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }
    
    .dropdown-content a {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        text-align: left;
    }
    
    .dropdown.active .dropdown-content a {
        animation: fadeInUp 0.3s ease forwards;
        opacity: 0;
    }
    
    .dropdown.active .dropdown-content a:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .dropdown.active .dropdown-content a:nth-child(2) {
        animation-delay: 0.15s;
    }
    
    .dropdown.active .dropdown-content a:nth-child(3) {
        animation-delay: 0.2s;
    }
    
    .dropdown.active .dropdown-content a:nth-child(4) {
        animation-delay: 0.25s;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobil link stílusok */
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
        display: block;
        width: 100%;
    }
    
    .nav-links > li > a {
        text-align: left;
        font-weight: 600;
    }
    
    .dropdown > a {
        text-align: left;
    }
    
    /* Mobil menü bezáró gomb - csak mobilon */
    .nav-links .close-menu {
        display: block !important;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--sage-green);
        cursor: pointer;
        padding: 0.5rem;
        line-height: 1;
        z-index: 1001;
        transition: transform 0.2s ease;
    }
    
    .nav-links .close-menu:hover {
        transform: rotate(90deg);
    }
    
    /* Mobil active link stílus csak dropdown linkeknek */
    @media (max-width: 768px) {
        .nav-links > li > a.active {
            color: var(--text-dark);
            background-color: transparent;
            border-color: transparent;
            font-weight: 500;
        }
        
        .dropdown-content a.active {
            color: white;
            background-color: var(--sage-green);
            font-weight: 600;
        }
        
        .dropdown-content a.active:hover {
            color: white;
            background-color: var(--sage-green);
        }
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero .subtitle {
        font-size: 1.3rem;
    }
    
    .hero .tagline {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-image {
        height: 250px;
        order: -1;
        border-radius: 20px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .section {
        margin: 1.5rem auto;
        padding: 1rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .content-box {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .image-content,
    .image-content.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-image {
        height: 200px;
        border-radius: 15px;
    }
    
    .content-text {
        padding-right: 0;
    }
    
    .content-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .quote {
        font-size: 1.2rem;
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .contact-info {
        padding: 2rem 1rem;
    }
    
    .contact-info p {
        font-size: 1.1rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    ul li {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
        font-size: 1rem;
    }
    
    ul li::before {
        font-size: 1.2rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero .tagline {
        font-size: 0.95rem;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .content-box {
        padding: 1rem;
        border-radius: 20px;
    }
    
    .content-image {
        height: 180px;
    }
    
    .card {
        padding: 1.2rem;
    }
    
    .quote {
        font-size: 1.1rem;
        padding: 1.2rem 0.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box, .card {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}
