/* Europa Meble Custom Styles */

/* ========== Typography ========== */
/* Base font - Inter for body, paragraphs, menu */
body,
p,
a,
nav,
.menu,
.nav-link,
ul li {
    font-family: 'Inter', sans-serif;
}

/* Headings - Belleza */
h1, h2, h3, h4, h5, h6,
.salon-title,
.coffee-title,
.inspiration-title,
.feature-title {
    font-family: 'Belleza', serif;
}

/* Accent labels - Qwitcher Grypen (różowe nad nagłówkami) */
.salon-label,
.coffee-label,
.inspiration-label {
    font-family: 'Qwitcher Grypen', cursive;
    font-size: 52px !important;
    font-weight: 400;
}

/* Buttons - Roboto */
.hero-btn,
.feature-btn,
.btn-more,
button,
.btn {
    font-family: 'Roboto', sans-serif;
}

/* Hero Video Section Enhancements */
.hero-banner-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-banner-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video {
        width: 177.78vh;
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-fallback {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-btn {
    font-family: 'Roboto', sans-serif;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    display: block !important;
    width: auto;
    height: auto;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* Salon Section */
.salon-section {
    padding: 100px 0;
    background: #fff;
}

.salon-text-content {
    padding-right: 50px;
}

.salon-label {
    font-family: 'Qwitcher Grypen', cursive;
    font-size: 36px;
    font-style: normal;
    color: #D4A574;
    margin-bottom: 5px;
    font-weight: 400;
}

.salon-title {
    font-family: 'Belleza', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.salon-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-more {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    color: #D4A574;
}

.salon-images-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 20px;
    align-items: center;
}

.salon-image-main {
    grid-column: 1;
}

.salon-image-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.salon-image-secondary {
    grid-column: 2;
}

.salon-image-secondary img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Features Section */
.features-section {
    margin: 0;
    padding: 0;
}

.feature-col {
    position: relative;
    overflow: hidden;
}

.feature-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-image-wrapper:hover .feature-image {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-image-wrapper:hover .feature-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.feature-title {
    font-family: 'Belleza', serif;
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
}

.feature-btn {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    padding: 12px 50px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background: #fff;
    color: #000;
}

/* Coffee Section */
.coffee-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.coffee-text-content {
    padding-right: 50px;
}

.coffee-label {
    font-family: 'Qwitcher Grypen', cursive;
    font-size: 36px;
    font-style: normal;
    color: #D4A574;
    margin-bottom: 5px;
    font-weight: 400;
}

.coffee-title {
    font-family: 'Belleza', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coffee-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.coffee-image-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.coffee-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Inspiration Section */
.inspiration-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.inspiration-overlay {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 260px 60px 100px;
}

.inspiration-content {
    text-align: right;
    max-width: 450px;
    padding-bottom: 50px;
}

.inspiration-label {
    font-family: 'Qwitcher Grypen', cursive;
    font-size: 42px;
    font-style: normal;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 400;
}

.inspiration-title {
    font-family: 'Belleza', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== Footer Styles ========== */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    max-width: 300px;
    margin: 0;
}

.footer-column-middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    text-align: center;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #D4A574;
}

.footer-column-right {
    text-align: right;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-item {
    margin: 0 0 5px 0;
    color: #ccc;
}

.footer-hours {
    margin-top: 25px;
}

.footer-hours-title {
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.footer-hours-item {
    margin: 0 0 5px 0;
    color: #ccc;
    font-size: 13px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-social li {
    margin: 0;
}

.footer-social a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #D4A574;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.footer-copyright a {
    color: #ccc;
    text-decoration: none;
    margin: 0 3px;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
}

.full-content .header .nav-link {
    color: #000 !important;
}

@media only screen and (max-width: 1920px) {
    .header-burger {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .salon-title,
    .coffee-title {
        font-size: 36px;
    }
    
    .feature-title,
    .inspiration-title {
        font-size: 36px;
    }
    
    .salon-text-content,
    .coffee-text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .salon-images-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image-wrapper {
        height: 400px;
    }
    
    .inspiration-section {
        min-height: 500px;
    }
    
    .inspiration-overlay {
        min-height: 500px;
        padding: 40px 30px;
    }
    
    .inspiration-content {
        max-width: 100%;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column-right {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    footer .footer-logo {
        text-align: center;
        display: block;
    }
}

@media (max-width: 767px) {
    .hero-banner-wrapper {
        height: 70vh;
        min-height: auto !important;
    }
    
    .salon-section,
    .coffee-section {
        padding: 60px 0;
    }
    
    .salon-title,
    .coffee-title {
        font-size: 28px;
    }
    
    .feature-title,
    .inspiration-title {
        font-size: 28px;
    }
    
    .hero-btn,
    .feature-btn {
        padding: 12px 40px;
        font-size: 12px;
    }
    
    .inspiration-section {
        min-height: 400px;
    }
    
    .inspiration-overlay {
        min-height: 400px;
        padding: 30px 20px;
        align-items: center;
        justify-content: center;
    }
    
    .inspiration-content {
        text-align: center;
    }

    .hero-banner-section {
        min-height: auto !important;
    }
}

.header-burger {
    display: none !important;
}
.header .scroll {
    display: none !important;
}

.header.fixed .normal {
    display: none !important;
}

header.fixed .scroll {
    display: block !important;
}