:root {
    --primary-color: #DFA67B;
    --secondary-color: #F4B183;
    --accent-color: #FFD966;
    --champagne: #FFF2CC;
    --header-height: 60px;
    --header-height-scrolled: 50px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-container {
    display: flex;
    flex-direction: column;
}

.page-layout {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .main-header {
        height: 55px;
    }
}

@media (max-width: 640px) {
    .main-header {
        height: 55px;
    }
}

.header-columns {
    background: rgba(255, 242, 204, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    align-items: center;
    margin: 0;
    padding: 10px 20px;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(255, 255, 255, 1);
}

@media (max-width: 991px) {
    .header-columns {
        display: grid;
        grid-template-columns: 1fr auto !important;
        gap: 10px;
        padding: 5px 15px;
        height: 55px;
        padding-top: 5px;
    }
}

@media (max-width: 640px) {
    .header-columns {
        padding: 5px 15px;
        height: 55px;
        padding-top: 5px;
    }
}

.header-content {
    gap: 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.logo-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 20%;
    margin-left: 0px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .logo-container {
        justify-content: flex-start;
        margin-right: auto;
    }
}

.logo-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    width: 45px;
    height: 45px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .logo-image {
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
}

.site-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

@media (max-width: 640px) {
    .site-name {
        display: none;
    }
}

.site-title {
    font-family: Cormorant Garamond, serif;
    font-size: 30px;
    font-weight: 900;
}

.site-title:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .site-title {
        font-size: 28px;
    }
}

.navigation-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 80%;
    margin-left: 20px;
    position: relative;
}

.desktop-navigation {
    display: flex;
    width: fit-content;
    height: 100%;
    margin-left: auto;
    position: relative;
    z-index: 101;
}

@media (max-width: 991px) {
    .desktop-navigation {
        display: none;
    }
}

.nav-list {
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (max-width: 991px) {
    .nav-list {
        display: none;
    }
}

.nav-link {
    font-family: Cormorant Infant;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
    opacity: 1;
    pointer-events: auto;
}

.nav-link:hover:after {
    width: 100%;
    opacity: 1;
}

.contact-link {
    margin-right: 15px;
}

.social-link {
    color: #000000;
    transition: all 0.3s ease;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.social-link:hover {
    color: var(--primary-color);
}

.social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(6px);
        z-index: 998;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: rgba(0,0,0,0.6);
        opacity: 0;
        visibility: hidden;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.mobile-menu-button {
    display: none;
    background: transparent;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 101;
    width: 50px;
    height: 50px;
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
        margin-left: auto;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
    }
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        backdrop-filter: blur(10px);
        padding: 100px 35px 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        z-index: 999;
        overflow-y: auto;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        padding-top: 60px;
        background-color: rgba(255, 255, 255, 0.95);
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
    }

    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 35px;
    margin-bottom: 35px;
}

.mobile-nav-link {
    font-size: 28px;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-family: Cormorant Garamond, serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

@media (max-width: 991px) {
    .mobile-nav-link {
        font-family: Cormorant Infant, serif;
        font-size: 24px;
        color: rgba(0, 0, 0, 1);
    }
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.social-icon-mobile {
    width: 24px;
    height: 24px;
}

.facebook-mobile,
.instagram-mobile {
    color: #000000;
    transition: all 0.3s ease;
}

.facebook-mobile:hover,
.instagram-mobile:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 70vh;
    }
}

.hero-background {
    aspect-ratio: 1.5;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
}

/*.hero-overlay {
    position: absolute;
    top: 17px;
    left: 0px;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(238,214,211,0.15) 0%, rgba(247,231,206,0.1) 100%);
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
    margin: 5%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}*/

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238,214,211,0.15) 0%, rgba(247,231,206,0.1) 100%);
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
    border-radius: 0; /* vagy tedd át a hero-section-re, ha kell */
    box-shadow: none; /* vagy vedd ki, ha zavar */
}

@media (max-width: 991px) {
    .hero-overlay {
        top: 67px;
        left: 0px;
    }
}

@media (max-width: 640px) {
    .hero-overlay {
        top: 50px;
        left: 0px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    color: #f9f9f9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-size: 4.5rem;
    font-family: Cormorant Infant, serif;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 21px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    color: #f9f9f9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
}

@media (max-width: 991px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-cta-button {
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    background-color: var(--primary-color);
}

@media (max-width: 640px) {
    .hero-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.hero-cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Section Styles */
.about-section,
.services-section,
.contact-section {
    padding: 30px 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .about-section,
    .services-section,
    .contact-section {
        padding: 25px 20px;
    }
}

@media (max-width: 640px) {
    .about-section,
    .services-section,
    .contact-section {
        padding: 20px 15px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 32px;
    position: relative;
    font-weight: 600;
    padding-bottom: 15px;
    font-family: Cormorant Infant, serif;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    font-family: Montserrat, sans-serif;
    padding-bottom: 10px;
}

/* About Section */
.about-content {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.about-columns {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .about-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.about-text-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 60%;
    margin-left: 0px;
}

@media (max-width: 991px) {
    .about-text-column {
        width: 100%;
    }
}

.about-text-content {
    padding: 20px 40px;
    height: 100%;
}

.about-subtitle {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: Cormorant Infant, serif;
    font-weight: 600;
}

.about-text-wrapper {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-family: Montserrat, sans-serif;
}

.about-paragraph {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 18px;
    color: #000000;
}

.about-highlight {
    text-align: center;
    font-size: 26px;
    color: #000000;
    background: linear-gradient(135deg, rgba(255,182,193,0.15) 0%, rgba(255,218,185,0.15) 100%);
    padding: 35px 40px;
    border-radius: 20px;
    font-weight: 600;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,182,193,0.3);
    transition: all 0.4s ease;
    font-family: Cormorant Infant, serif;
    letter-spacing: 0.5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 991px) {
    .about-highlight {
        font-size: 24px;
        padding: 30px 35px;
        margin-top: 40px;
        margin-bottom: 25px;
    }
}

@media (max-width: 640px) {
    .about-highlight {
        font-size: 22px;
        padding: 25px 30px;
        margin-top: 35px;
        margin-bottom: 20px;
    }
}

.about-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, rgba(255,182,193,0.4) 0%, rgba(255,218,185,0.4) 100%);
}

.about-image-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 40%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .about-image-column {
        width: 100%;
    }
}

.about-image-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.about-image-container:before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 218, 185, 0.15) 0%, transparent 70%);
    opacity: 0.5;
    animation: morphShape 20s ease-in-out infinite alternate;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    pointer-events: none;
    z-index: 1;
}

.about-image-container:after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 110%;
    height: 110%;
    border: 1px dashed rgba(255, 218, 185, 0.3);
    border-radius: 50%;
    animation: floatOverlay 15s ease-in-out infinite;
    background: radial-gradient(circle at center, rgba(255, 182, 193, 0.1) 0%, transparent 60%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 3;
}

@keyframes morphShape {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes floatOverlay {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.about-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    width: 80%;
    height: 80%;
    z-index: 2;
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    animation: morphShape 20s infinite alternate ease-in-out;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 10px 15px rgba(0,0,0,0.15);
    filter: brightness(1.02);
    margin: auto;
}

@media (max-width: 991px) {
    .about-image {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

@media (max-width: 640px) {
    .about-image {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

/* Why Choose Us Section */
/* Why Choose Us Section */
.why-choose-us {
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    position: relative;
}

@media (max-width: 991px) {
    .why-choose-us {
        margin-top: 60px;
        padding: 30px 15px;
    }
}

@media (max-width: 640px) {
    .why-choose-us {
        margin-top: 40px;
        padding: 25px 10px;
    }
}

.why-choose-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: "Cormorant Infant", serif;
    font-weight: 600;
    position: relative;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Card */
.feature-card {
    background: linear-gradient(135deg, rgba(255,182,193,0.1) 0%, rgba(255,218,185,0.1) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card:last-child {
    margin-bottom: 0;
}

/* Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #333;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Titles & Text */
.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-family: "Cormorant Infant", serif;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 30px 40px;
    background: white;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .services-section {
        padding: 25px 20px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 20px 15px;
    }
}

.packages-container {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

@media (max-width: 991px) {
    .packages-container {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .packages-container {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
}

.packages-grid {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .packages-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.package-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 25%;
    margin-left: 0px;
}

@media (max-width: 991px) {
    .package-column {
        width: 100%;
    }
}

.package-card {
    background: linear-gradient(135deg, #fff8f9 0%, #fff 100%);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(255,182,193,0.3);
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
    .package-card {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    .package-card {
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,182,193,0.3);
}

.featured {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,182,193,0.4);
}

.featured:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0.8;
}

.package-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.package-feature {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.package-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
}

.package-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,182,193,0.3);
}

/* Service Details */
.service-details {
    margin-top: 40px;
    padding: 40px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .service-details {
        padding: 30px;
        margin-bottom: 40px;
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .service-details {
        padding: 20px;
        margin-bottom: 30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-family: Cormorant Infant, serif;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

/* Gallery Section */
.gallery-main {
  flex: 1;
  background: white;
  display: flex;
  flex-direction: column;
}

.gallery-section {
  padding: 80px 20px 60px;
  background: white;
  max-width: 2000px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
  width: 100%;
  padding-top: 30px;
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 60px 15px 40px;
  }
}

@media (max-width: 640px) {
  .gallery-section {
    padding: 50px 10px 30px;
  }
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-size: 32px;
  position: relative;
  font-weight: 600;
  padding-bottom: 15px;
  font-family: Cormorant Infant, serif;
}

.gallery-description {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
  color: #666;
  font-family: Montserrat, sans-serif;
}

.gallery-container {
  position: relative;
  padding-bottom: 80px;
}

.close-button {
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Montserrat, sans-serif;
  background-color: var(--primary-color);
}

.close-button-top {
  position: absolute;
  top: -60px;
  right: 20px;
}

@media (max-width: 991px) {
  .close-button-top {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .close-button-top {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 15px;
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.close-button-bottom {
  position: absolute;
  bottom: 0;
  right: 20px;
}

@media (max-width: 640px) {
  .close-button-bottom {
    position: static;
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
  }
}

.show-more-button {
  margin: 40px auto 0;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  display: block;
}

.show-more-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .show-more-button {
    margin-top: 10px;
  }
}

.gallery-section.full-view {
  padding-top: 0;
  min-height: 100vh;
}

.visible {
  display: block !important;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
}

.modal-prev,
.modal-next {
  position: absolute;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 20px;
  z-index: 1001;
  transition: var(--transition-standard);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
  transform: scale(1.2);
}

.modal-image {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
    max-width: 90%;
    max-height: 90vh;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}
@media (max-width: 768px) {
  .modal-content {
    padding: 10px;
    max-width: 100vw;
    max-height: 100vh;
  }

  .modal-image {
    width: 100%;
    max-width: 100%;
    max-height: 80vh;
    aspect-ratio: auto;
  }

  .modal-prev,
  .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5); /* jobb kontraszt */
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    border-radius: 50%;
    transition: var(--transition-standard);
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 32px;
  }
}

/* Contact Section */
.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 640px) {
    .contact-details {
        text-align: center;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
    }
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-label {
    margin-bottom: 5px;
    font-weight: 500;
    display: block;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255,182,193,0.2);
}

.form-select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-color: white;
}

.form-textarea {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255,182,193,0.2);
}

.form-submit-button {
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    background-color: var(--primary-color);
}

.form-submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    padding: 30px 20px 30px;
    text-align: center;
    width: 100%;
    position: relative;
    color: #666;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.03);
    border-top: 1px solid #f0f0f0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.footer-logo {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-family: Cormorant Infant, serif;
    margin-top: 10px;
    display: block;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
}

.footer-social-icon:hover {
    color: var(--primary-color);
}

.footer-phone {
    color: #666;
    margin-bottom: 20px;
    font-size: 23px;
    font-family: Cormorant Infant, serif;
    font-weight: 600;
}

.footer-copyright {
    color: #888;
    font-size: 20px;
    font-family: Cormorant Infant, serif;
    font-weight: 600;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.active {
    display: block !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-nav {
        display: none;
    }

    .modal-close {
        top: -40px;
        right: 10px;
        font-size: 30px;
    }
}
