/*
Theme Name: Eboss
Theme URI: https://example.com/
Author: Michał Madera
Author URI: https://webmad.pl/
Version: 1.0.0
Text Domain: eboss
*/


:root {
    --gold: #c0a651;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --black: #000000;
    --gray-dark: #1a1a1a;
    --gray-light: #f8f9fa;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Header Styles */
.navbar-custom {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: white !important;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--gold) !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    position: relative;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background: var(--gold);
    color: black;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--gold-light);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;

}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.btn-hero {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: var(--gold);
    color: black;
    border: none;
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background: white;
    color: black;
}

.logo {
    width: 50px;
    height: auto;

}

@media (min-width: 992px) {
    .logo {
        width: 75px;
    }
}


/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}



.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.gold-text {
    color: var(--gold);
}

.badge-custom {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    margin-bottom: 30px;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: black;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-badge-premium {
    background: #dc3545;
    color: white;
    top: 15px;
    left: 15px;
}

.project-badge-eco {
    background: #28a745;
    color: white;
    top: 15px;
    left: 15px;
}

.project-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

/* Stats Section */
.stats-item {
    text-align: center;
    margin-bottom: 30px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.stats-label {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: black;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Partners Section */
.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #adb5bd;
}

.footer-contact-item i {
    color: var(--gold);
    width: 20px;
    margin-right: 15px;
}

.social-links a {
    color: #adb5bd;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.text-gray {
    color: #adb5bd;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-map {
    background: #333;
    height: 250px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .btn-hero {
        margin: 10px 0;
        width: 100%;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* Contact Form */
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-info-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* Gallery */
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
}

.text-decoration-none {
    text-decoration: none;
}

.color-heading {
    color: var(--bs-heading-color);
}

.bg-warning {
    background-color: #c0a651 !important;
}

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

.section-label {
    display: inline-block;
    background: #f4e4c1;
    color: #8b7355;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: #d4a648;
}

.section-description {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 50px;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.slide-info {
    padding-right: 20px;
}

.project-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.project-name {
    font-size: 36px;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-area {
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 25px;
}

.project-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.tabs-container {
    margin-top: 35px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    padding: 12px 30px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tab.active {
    color: var(--gold);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4a648;
}

.tab:hover {
    color: #d4a648;
}

.slide-visuals {
    position: relative;
    overflow: hidden;
}

.floor-plans {
    position: relative;
    height: 500px;
}

.floor-plan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
}

.floor-plan.active {
    opacity: 1;
}

.floor-plan-image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}





.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #d4a648;
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .section-title {
        font-size: 32px;
    }

    .slide {
        padding: 30px 25px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .slide-info {
        padding-right: 0;
    }

    .project-name {
        font-size: 28px;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .floor-plans {
        height: 350px;
    }

    .tabs {
        justify-content: start;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .slide {
        padding: 25px 20px;
    }

    .project-name {
        font-size: 24px;
    }

    .floor-plans {
        height: 280px;
    }

    .slider-controls {
        gap: 15px;
    }
}

.cta-button {
    display: inline-block;
    background: #d4a648;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.cta-button:hover {
    background: #b88f3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 166, 72, 0.3);
}

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

.hero-section-project {
    min-height: 60vh;
}

@media (min-width: 992px) {
    .hero-section-project {
        min-height: 85vh;
    }
}