/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #4a3623;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== Top Navigation ===== */
.top-nav {
    background: linear-gradient(135deg, rgba(212, 149, 26, 0.95) 0%, rgba(212, 149, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .top-nav {
        padding: 12px 0;
    }
}

.top-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    border-radius: 0 0 15px 15px;
}

/* Dynamic shadow on scroll */
.top-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(212, 149, 26, 0.98) 0%, rgba(212, 149, 26, 0.95) 100%);
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.top-nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    transition: all 0.3s ease;
}

.top-nav-menu li a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.top-nav-menu li a:hover {
    color: #ffffff;
}

.top-nav-menu li a.active {
    color: #8b4513;
}

/* Mobile GPS Links */
.mobile-gps-links {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-gps-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-gps-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.mobile-gps-link i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .mobile-gps-links {
        display: flex;
    }
}

/* ===== Header with Logo ===== */
.header {
    display: none;
}

.logo a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 80px;
    width: auto;
}

/* ===== Header Content ===== */
.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.header-subtitle {
    font-size: 1rem;
    color: #4a3623;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.header-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a3623;
    font-weight: 500;
}

.header-hours i {
    font-size: 1rem;
    color: #8b4513;
}

@media (max-width: 768px) {
    .header-content {
        gap: 10px;
    }
    
    .header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .header-subtitle {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .header-hours {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .header-hours span {
        display: inline;
    }
    
    .logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 8px;
    }
    
    .header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .header-subtitle {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .header-hours {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .header-hours span {
        display: inline;
    }
}

/* ===== Hero Image ===== */
.hero-image {
    width: 100%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* ===== Bemutatkozás Section ===== */
.bemutatkozas-section {
    background-color: rgb(190, 86, 66);
    padding: 80px 0;
    color: white;
}

.bemutatkozas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.bemutatkozas-text h2 {
    font-family: 'Kalam', 'Comic Sans MS', cursive;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #4a3623;
    font-weight: 400;
    letter-spacing: 1px;
}

.bemutatkozas-text p {
    font-size: 20px;
    line-height: 1.6em;
    margin-bottom: 20px;
    letter-spacing: 0em;
}

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

.bemutatkozas-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 50%;
    border: 5px solid white;
}

/* ===== Kínálat Section ===== */
.kinalat-section {
    background-color: #2c1810;
    padding: 80px 0;
    color: white;
}

.kinalat-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.haz-kaveja, .honap-kaveja {
    text-align: center;
}

.kinalat-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.haz-kaveja-description, .honap-kaveja-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4a373;
    margin-bottom: 20px;
}

.kave-details, .honap-kave-details {
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.kave-details h3, .honap-kave-details h3 {
    font-size: 1.5rem;
    color: #d4a373;
    margin-bottom: 10px;
}

.honap-kave-details h4 {
    font-size: 1.2rem;
    color: #d4a373;
    margin-bottom: 15px;
    font-weight: 600;
}

.kave-details p, .honap-kave-details p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.kave-specs {
    font-style: italic;
    color: #d4a373 !important;
    font-size: 0.9rem !important;
}

.divider {
    width: 2px;
    height: 200px;
    background-color: #d4a373;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-column h3 {
    font-size: 1.8rem;
    color: #d4a373;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #d4a373;
    padding-bottom: 10px;
}

.menu-subsection {
    margin-bottom: 30px;
}

.menu-subsection h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.menu-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: #d4a373;
    margin-bottom: 15px;
    line-height: 1.4;
    padding: 10px;
    background-color: rgba(212, 163, 115, 0.1);
    border-left: 3px solid #d4a373;
}

.menu-quote em {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-top: 5px;
}

.menu-description {
    font-size: 1rem;
    color: white;
    margin-bottom: 10px;
    font-style: italic;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span:first-child {
    color: white;
}

.menu-item span:last-child {
    color: #d4a373;
    font-weight: 600;
}

/* ===== Galéria Section ===== */
.galeria-section {
    background-color: #6b4423;
    padding: 80px 0;
    color: white;
}

.galeria-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.gallery-button {
    text-align: right;
}

.btn-gallery {
    background-color: #4a3623;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-gallery:hover {
    background-color: #2c1810;
}

/* ===== Blog Section ===== */
.blog-section {
    background-color: #d4a373;
    padding: 80px 0;
    color: #4a3623;
}

.blog-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #4a3623;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-content h3 {
    font-size: 1.8rem;
    color: #4a3623;
    margin-bottom: 20px;
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* ===== Partnereink Section ===== */
.partnereink-section {
    background-color: #d4a373;
    padding: 80px 0;
    color: #4a3623;
}

.partnereink-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #4a3623;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

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

.partner-item img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Footer ===== */
.footer {
    background-color: #8b4513;
    padding: 60px 0 40px;
    color: white;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.footer-logo img {
    height: 150px;
    width: auto;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-info h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-info a {
    color: #d4a373;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: white;
}

/* GPS Links */
.gps-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.gps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(212, 149, 26, 0.2);
    border: 1px solid rgba(212, 149, 26, 0.5);
    border-radius: 20px;
    color: #d4a373 !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.gps-link:hover {
    background-color: rgba(212, 149, 26, 0.4);
    border-color: #d4951a;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 149, 26, 0.3);
}

.gps-link i {
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #4a3623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #2c1810;
    transform: scale(1.1);
}

.social-icon i {
    font-size: inherit;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#scrollTopBtn {
    width: 50px;
    height: 50px;
    background-color: #4a3623;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: none;
}

#scrollTopBtn:hover {
    background-color: #2c1810;
}

#scrollTopBtn.show {
    display: block;
}

/* ===== Webter Credit ===== */
.webter-credit {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0 0 0;
    margin-top: 40px;
    text-align: center;
}

.webter-credit a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.webter-credit a:hover {
    transform: translateY(-2px);
}

.webter-credit img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.webter-credit a:hover img {
    opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .top-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(212, 149, 26, 0.98) 0%, rgba(212, 149, 26, 0.95) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin: 0;
        padding: 0;
        transition: left 0.4s ease;
        z-index: 1000;
    }
    
    
    .top-nav-menu.active {
        left: 0;
    }
    
    /* Hide background content when mobile menu is active */
    body.menu-open .bemutatkozas-section,
    body.menu-open .kinalat-section,
    body.menu-open .galeria-section,
    body.menu-open .blog-section,
    body.menu-open .partners-section,
    body.menu-open .footer {
        display: none;
    }
    
    .top-nav-menu li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.3s ease;
    }
    
    .top-nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .top-nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .top-nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .top-nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .top-nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .top-nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .top-nav-menu li a {
        font-size: 18px;
        font-weight: 700;
        color: #000000;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 15px 30px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        display: block;
        min-width: 200px;
        text-align: center;
    }
    
    .top-nav-menu li a:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
        color: #2c1810;
    }
    
    .logo img {
        height: 45px;
    }
    
    .bemutatkozas-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .kinalat-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .divider {
        width: 200px;
        height: 2px;
        margin: 20px auto;
    }
    
    .bemutatkozas-text h2 {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-post {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }
    
    .partner-item {
        max-width: 200px;
    }
    
    .partner-item img {
        max-height: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gps-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .gps-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* ===== Coming Soon Modal ===== */
.coming-soon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.coming-soon-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.coming-soon-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.coming-soon-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.coming-soon-close:hover {
    color: #4a3623;
}

.coming-soon-icon {
    font-size: 60px;
    color: #d4951a;
    margin-bottom: 20px;
}

.coming-soon-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #4a3623;
    margin-bottom: 15px;
}

.coming-soon-modal-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-modal-close {
    background: linear-gradient(135deg, #d4951a 0%, #b8801a 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 149, 26, 0.3);
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 149, 26, 0.4);
}

@media (max-width: 480px) {
    .top-nav-menu {
        gap: 15px;
    }
    
    .top-nav-menu li a {
        font-size: 11px;
    }
    
    .bemutatkozas-text h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .kinalat-header h2 {
        font-size: 2rem;
    }
    
    .galeria-section h2,
    .blog-section h2,
    .partnereink-section h2 {
        font-size: 2.5rem;
    }
}

/* ===== Gallery Lightbox ===== */
.gallery-lightbox {
    backdrop-filter: blur(5px);
}

.gallery-lightbox img {
    transition: transform 0.3s ease;
}

.gallery-lightbox img:hover {
    transform: scale(1.02);
}

/* Mobile gallery lightbox adjustments */
@media (max-width: 768px) {
    .gallery-lightbox button {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
    
    .gallery-lightbox .prevBtn {
        left: -45px !important;
    }
    
    .gallery-lightbox .nextBtn {
        right: -45px !important;
    }
    
    .gallery-lightbox .closeBtn {
        top: -40px !important;
    }
    
    .gallery-lightbox .counter {
        bottom: -40px !important;
        font-size: 14px !important;
        padding: 8px 16px !important;
    }
}

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