@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #3a2220; /* Mély csokoládébarna/bordó */
    --primary-light: #523432;
    --secondary: #d9a8a3; /* Bugyirózsaszín / Púderrózsaszín */
    --secondary-dark: #c5918c;
    --bg-sand: #fdfaf9; /* Világos rózsaszínes meleg háttér */
    --text-dark: #2c2727;
    --text-muted: #6e6463;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(58, 34, 32, 0.04);
    --shadow-hover: 0 15px 40px rgba(58, 34, 32, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-sand);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(217, 168, 163, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 168, 163, 0.35);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-booking {
    background-color: #003580; /* Booking kék */
    color: var(--white);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 53, 128, 0.2);
}

.btn-booking:hover {
    background-color: #00224f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 53, 128, 0.3);
}

/* Navigation */
header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(58, 34, 32, 0.96); /* Sötét, elegáns menüsáv */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 168, 163, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

header.navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px; /* Kicsit magasabb, tágasabb menüsáv */
}

.logo-container img {
    height: 55px;
    display: block;
    transition: var(--transition);
}

.logo-container:hover img {
    transform: scale(1.03);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.85); /* Világos szöveg a sötét menühöz */
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
}

/* Beúszó alsó vonal animáció a menüpontoknál */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(58, 34, 32, 0.72), rgba(58, 34, 32, 0.72)), url('images/2023/08/15/bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 95px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 4.5rem; /* Nagyobb, tekintélyesebb cím */
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

.about-quote {
    background-color: var(--bg-sand);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary);
    margin-bottom: 60px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-quote p {
    font-style: italic;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Services Section */
#services {
    padding: 100px 0;
    background-color: var(--bg-sand);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(58, 34, 32, 0.02);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(217, 168, 163, 0.15);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background-color: var(--secondary);
    color: var(--primary);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

/* Action Banner */
.action-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(58, 34, 32, 0.85), rgba(58, 34, 32, 0.85)), url('images/2023/08/15/bg_slider.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.action-banner h2 {
    color: var(--secondary);
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.action-banner p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
#pricing {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.price-card {
    background-color: var(--bg-sand);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(58, 34, 32, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--secondary);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .price span {
    color: var(--white);
}

.price-card.featured .btn {
    background-color: var(--secondary);
    color: var(--primary);
}

.price-card.featured .btn:hover {
    background-color: var(--secondary-dark);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.price-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.price-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.price-card .price span {
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-muted);
    font-weight: 400;
}

.price-card.featured .price span {
    color: rgba(255, 255, 255, 0.7);
}

.price-card .features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card .features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(58, 34, 32, 0.05);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card.featured .features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card .features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
}

.pricing-note {
    background-color: var(--bg-sand);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pricing-note ul {
    list-style-position: inside;
    color: var(--text-muted);
}

.pricing-note ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Gallery Section */
#gallery {
    padding: 100px 0;
    background-color: var(--bg-sand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 34, 32, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* 3D VR Banner */
.vr-banner {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(58, 34, 32, 0.75), rgba(58, 34, 32, 0.75)), url('images/2023/08/15/bg_slider_bottom.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.vr-banner h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.vr-banner p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info h3, .contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
}

.contact-info h3::after, .contact-form-container h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    margin-top: 8px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--secondary-dark);
}

.info-text h4 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.info-text p {
    color: var(--text-muted);
}

.booking-box {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--bg-sand);
    border-radius: 12px;
    border: 1px dashed var(--secondary);
    text-align: center;
}

.booking-box h4 {
    margin-bottom: 15px;
}

.booking-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(58, 34, 32, 0.1);
    background-color: var(--bg-sand);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(58, 34, 32, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid var(--white);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 8px;
}

footer .gold-text {
    color: var(--secondary);
    font-weight: 600;
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header.navbar .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }
}
