/* ===== RESETS & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #F8F4F0; /* Soft warm nude pastel background */
    --accent-color: #D2937D; /* Soft terracotta / warm accent */
    --text-primary: #2B2523; /* Deep warm brown/charcoal */
    --text-muted: #7A726E;
    --card-bg: #FFFFFF;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 244, 240, 0.88);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: var(--transition);
}

.navbar a:hover {
    color: var(--accent-color);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-symbol {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.25em;
    font-weight: 600;
}

.btn-nav {
    border: 1px solid var(--text-primary);
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
}

.btn-nav:hover {
    background-color: var(--text-primary);
    color: #FFF !important;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 4rem 2rem 4rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, #FAF6F3 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    gap: 4rem;
}

.hero-text-content {
    flex: 1;
    max-width: 580px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    width: 100%;
    max-width: 480px;
    height: 580px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.btn-primary {
    display: inline-block;
    background-color: #FFFFFF;
    color: var(--text-primary);
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    background-color: var(--text-primary);
    color: #FFFFFF;
}

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

.scroll-down {
    text-align: center;
    margin-top: 2rem;
}

.scroll-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 8rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 440px;
    border-radius: 4px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(43,37,35,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #FFFFFF;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

/* ===== CSOMAGAJÁNLATOK SECTION ===== */
.pricing-section {
    background-color: #FAF6F3;
    padding: 8rem 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #FFFFFF;
    padding: 3.5rem 2.5rem;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.pricing-card.featured {
    border: 1px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: #FFFFFF;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    font-weight: 600;
}

.package-name {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.package-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 8rem 4rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin: 1rem 0;
    font-weight: 400;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== GYIK SECTION ===== */
.faq-section {
    background-color: #FAF6F3;
    padding: 8rem 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    margin-bottom: 1.2rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.8rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: 8rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0 auto;
}

/* ===== FOOTER ===== */
footer {
    background-color: #2B2523;
    color: #F8F4F0;
    text-align: center;
    padding: 4rem 2rem;
}

footer .logo-text {
    color: #FFFFFF;
}

footer .logo-symbol {
    color: var(--accent-color);
}

footer p {
    color: #A59E9A;
    margin-top: 1rem;
    font-size: 0.9rem;
}

footer .copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #7A726E;
}

/* Responsive design */
@media (max-width: 992px) {
    .navbar { padding: 1.5rem 2rem; }
    .hero-container, .about-container { flex-direction: column; }
    .hero-title { font-size: 2.8rem; }
    .hero-img { height: 400px; }
    .nav-left, .nav-right { gap: 1rem; }
    .portfolio-section, .pricing-section, .about-section, .faq-section, .booking-section { padding: 5rem 2rem; }
}
