/* =====================================================================
   GLOBAL
   ===================================================================== */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.content {
    flex: 1 0 auto;
}

.super-footer {
    flex-shrink: 0;
    width: 100%;
    background: #faf6ef;
    border-top: 1px solid #ddd;
    padding: 14px 0;
    position: relative;
    z-index: 5;
}

/* =====================================================================
   PAGE BACKGROUND
   ===================================================================== */

.page-background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url('/img/spices-wood-bg.webp') center/cover no-repeat;
    top: 0;
    left: 0;
    z-index: -2;
}

.page-background::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(255,245,230,0.45);
    z-index:-1;
}

/* =====================================================================
   DESKTOP HEADER (SUPER)
   ===================================================================== */

.main-header {
    background: rgba(60,40,25,0.65);
    backdrop-filter: blur(5px);
    width: 100%;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 200;
}

.desktop-header {
    display: flex;
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area img {
    height: 60px;
}

/* MENU DESKTOP */

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 18px;
}

.main-menu a {
    color: #f5e8d2;
    text-decoration: none;
    font-size: 17px;
    position: relative;
}

.main-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f5e8d2;
    bottom: -4px;
    left: 0;
    transition: 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu ul li:not(:last-child)::after {
    content: "|";
    padding-left: 14px;
    color: #f5e8d2;
}

.lang-switch img {
    width: 32px;
}

/* =====================================================================
   MOBILE HEADER
   ===================================================================== */

.mobile-header {
    display: none;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    padding: 8px 0;
    align-items: center;
    justify-content: space-between;
}

.mobile-left .mobile-logo {
    height: 48px;
    width: auto;
}

@media (min-width: 600px) {
    .mobile-left .mobile-logo {
        height: 60px;
    }
}

.mobile-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* HAMBURGER */

.hamburger {
    font-size: 38px;
    font-weight: bold;
    color: #f5e8d2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hamburger.open {
    transform: rotate(90deg);
}

/* FLAGI MOBILE */

.mobile-flags img {
    width: 32px;
    height: auto;
}

/* PANEL MENU MOBILE */

.mobile-menu-panel {
    position: fixed;
    right: -320px;
    top: 0;
    width: 260px;
    height: 100%;
    background: rgba(60,40,25,0.97);
    backdrop-filter: blur(6px);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu-panel.open {
    right: 0;
}

.mobile-menu-panel a {
    color: #f5e8d2;
    font-size: 22px;
    text-decoration: none;
}

/* =====================================================================
   WRAPPER
   ===================================================================== */

.wrapper-box {
    max-width: 900px;
    margin: 40px auto;
    background: #f5e8d2;
    border-radius: 14px;
    padding: 40px 30px;
}

/* =====================================================================
   VIDEO
   ===================================================================== */

.video-container {
    width: 100%;
    border: 4px solid #d77a21;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #000;
}

.start-video-btn {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    padding: 14px 34px;
    font-size: 20px;
    font-weight: bold;
    background: white;
    border-radius: 40px;
    color: #d77a21;
    border: none;
}

/* =====================================================================
   TEKSTY STRONY
   ===================================================================== */

.coming-soon {
    margin-top: 30px;
    text-align: center;
    color: #4a2c1a;
    font-size: 44px;
    font-weight: bold;
}

.coming-desc {
    margin-top: 8px;
    text-align: center;
    font-size: 18px;
    color: #444;
}

.contact-btn {
    display: block;
    width: 70%;
    margin: 25px auto 0;
    padding: 16px 0;
    font-size: 20px;
    font-weight: bold;
    text-align:center;
    color:white;
    text-decoration:none;
    border-radius:40px;
    background: linear-gradient(to right, #ffb36b, #d77a21);
    box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

/* =====================================================================
   ADRESY
   ===================================================================== */

.address-columns {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.address-col {
    width: 280px;
    text-align: left;
    color: #4a2c1a;
}

.addr-small-title { 
    font-size: 18px; 
    font-weight: bold; 
}

.addr-big-title { 
    font-size: 20px; 
    font-weight: bold; 
}

.addr-italic { 
    font-size: 17px; 
    font-style: italic; 
    margin: 0; 
}

.addr-bold { 
    font-size: 18px; 
    font-weight: bold; 
    margin-top: 4px; 
}

/* =====================================================================
   PHONE + EMAIL (zmniejszone)
   ===================================================================== */

.contact-info-centered {
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
    color: #4a2c1a;
}

.contact-info-centered p {
    font-size: 18px;
}

.phone-bold {
    font-size: 18px;
    font-weight: bold;
}

.mail-link {
    font-size: 18px;
    color: #4a2c1a;
    font-weight: bold;
    text-decoration: none;
}

.mail-link:hover {
    color: #d77a21;
    text-decoration: underline;
}

/* =====================================================================
   STOPKA — DESKTOP (SUPER)
   ===================================================================== */

.footer-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    color: #555;
    font-size: 14px;
    line-height: 1;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.counter-badge {
    background: #ff8c2a;
    padding: 4px 10px;
    color: white;
    border-radius: 12px;
    font-weight: bold;
    font-size: 13px;
}

.footer-sep {
    color: #555;
}

.footer-copy-left {
    font-weight: normal;
}

.footer-right {
    white-space: nowrap;
    font-size: 14px;
    text-align: right;
}

.footer-wb {
    font-size: 14px;
}

.nexus-bold {
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
}

/* =====================================================================
   STOPKA — MOBILE & TABLET
   ===================================================================== */

.footer-mobile {
    display: none;
}

@media (max-width: 900px) {

    .desktop-header {
        display: none !important;
    }

    .mobile-header {
        display: flex !important;
    }

    .lang-switch,
    .main-menu {
        display: none !important;
    }

    .address-col {
        width: 100%;
    }

    .contact-btn {
        width: 100%;
    }

    .contact-info-centered {
        font-size: 18px;
    }

    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: flex !important;
        width: 90%;
        max-width: 1400px;
        margin: auto;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 8px;
    }

    .footer-mobile .footer-left {
        text-align: left;
        white-space: nowrap;
    }

    .footer-right-mobile {
        text-align: right;
        white-space: nowrap;
    }

    .footer-right-mobile span {
        display: block;
        text-align: left;
    }
}

/* =====================================================================
   SMARTFON W PIONIE — SPECJALNE UŁOŻENIE
   ===================================================================== */

@media (max-width: 600px) and (orientation: portrait) {

    /* Adresy jeden pod drugim */
    .address-columns {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    /* Phone/E-mail jeden pod drugim */
    .contact-info-centered {
        text-align: left;
        width: 100%;
        padding-left: 20px;
    }

    .contact-info-centered p {
        margin: 8px 0;
        font-size: 18px;
    }

    /* Hamburger menu zmniejszone */
    .mobile-menu-panel a {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .mobile-menu-panel {
        gap: 14px !important;
    }
}
