/* Projects Manager Plugin Styles */

/* Container and Layout */

.projects-banner {
    padding: 175px 100px 75px 100px;
    position: relative;
}
.projects-banner-background {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-position: center center;
}
.projects-banner-overlay {
    background-color: var(--e-global-color-secondary);
    opacity: 0.55;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    inset: 0;
    position: absolute;
}
.projects-banner-content {
    color: #fff;
    z-index: 1;
    position: relative;
    text-align: center;
    max-width: 830px;
    margin: 0 auto;
}
.projects-banner .projects-banner-content h1 {
    font-size: 59px;
    color: #fff;
    line-height: 1.1em;
}
.projects-archive-container,
.single-project-container {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.projects-hero {
    padding: 65px 0;
    background-color: #f8f8f8;
}
.hero-content {
    display: flex;
}
.hero-left {
    padding-right: 40px;
    min-width: 470px;
    width: 100%;
}
.single-project-container .hero-left {
    min-width: 400px;
    width: 100%;
}
.full_width_copy {
    margin-top: 50px;
    color: rgb(132, 132, 132);
}

.hero-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c9a96e;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-content .hero-title {
    font-size: 32px;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #29465b;
}
.hero-description {
    font-size: 16px;
    line-height: 22px;
    color: rgb(132, 132, 132);
    margin-bottom: 40px;
}
.see-more-btn {
    display: inline-block;
    background-color: #29465B;
    color: #fff !important;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: #c9a96e;
    color: white;
    text-decoration: none;
}

/* Featured Project Slider */
.hero-right {
    position: relative;
    overflow: hidden;
}

.featured-project-slider {
    position: relative;
}

.featured-swiper img {
    width: 100%;
}
.featured-thumbnails {
    margin-top: 15px;
    padding: 0 30px;
}
.featured-thumbs {
    padding: 0 10px;
}
.featured-thumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.featured-thumbs .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}
.featured-thumbs img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}
.featured-project-slider .featured-swiper {
    padding: 0 30px;
}
.projects-banner-content p {
    font-size: 20px;
    font-weight: 200;
}
/* Related Projects Section */
.related-projects-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e4bb7d;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header .section-title {
    font-size: 36px;
    font-weight: 200;
    line-height: 1.1em;
    margin: 0 0 20px 0;
    color: #29465b;
}

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

/* Category Filters */
.category-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-filters .filter-btn {
    background-color: #29465B;
    color: #fff;
    border: none;
    padding: 5px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #e4bb7d;
    color: #fff;
}

/* Projects Grid */
.projects-grid {
    display: flex;
    gap: 65px 50px;
    flex-wrap: wrap;
}
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc((100% - 100px) / 3);
    box-sizing: border-box;
}
.project-image {
    position: relative;
    height: 330px;
    overflow: hidden;
}
.project-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
    filter: blur(2px);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}
.view-more-btn {
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}
.project-info {
    padding: 20px 15px;
    text-align: center;
}

.renovation-type {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e4bb7d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.project-info .card-project-title {
    font-size: 18px;
    color: #29465B;
    margin: 0;
}
.project-info .card-project-title a {
    color: #29465B;
}
.swiper-button-prev-cust {
    position: absolute;
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.swiper-button-next-cust {
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.swiper-button-prev-cust span {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 15px solid #e4bb7d;
    width: 10px;
    position: relative;
    display: block;
}
.swiper-button-next-cust span {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 15px solid #e4bb7d;
    width: 10px;
    position: relative;
    display: block;
}
.single-project-container {
    margin-top: 180px;
}
body.single-project .elementor-motion-effects-layer {
    opacity: 1 !important;
}

/* Related Projects */
.related-projects {
    padding: 80px 0;
    background-color: #fbf7f2;
    margin-top: 80px;
}
.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.related-project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(44, 44, 44, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(201, 169, 110, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-left, .single-project-container .hero-left {
        min-width: 350px;
    }
}
@media (max-width: 767px) {
	.projects-banner .projects-banner-content h1 {
		font-size: 45px;
	}
	.projects-banner {padding: 155px 20px 40px 20px;}
	.projects-banner-content p {
	    font-size: 16px;
	    font-weight: 400;
	}
    .hero-content,
    .project-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
	    flex-direction: column-reverse;
	}
    
    .hero-left, .single-project-container .hero-left {
        padding-right: 0;
        min-width: 100%;
    }
    
    .hero-title,
    .project-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .projects-grid,
    .related-projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-filters {
        margin-bottom: 30px;
    }
    .section-header {
    	margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    .container {
        padding: 0 20px;
    }
    .featured-project-slider .featured-swiper, .featured-thumbnails {
	    padding: 0;
	}
	.project-card {
	    flex: 0 0 calc((100% - 30px) / 2);
	}
	.project-image {
	    height: 230px;
	}
	.single-project-container {
	    margin-top: 100px;
	}
	.swiper-button-next-cust, .swiper-button-prev-cust {display: none;}
	.featured-thumbs img {height: 80px;}
	.related-projects {
		margin-top: 0;
	}
}

@media (max-width: 480px) {
	.projects-banner .projects-banner-content h1 {
		font-size: 30px;
	}
	.section-header .section-title {
	    font-size: 30px;
	}
	.hero-content .hero-title {
	    font-size: 26px;
	}
    
    .projects-hero,
    .project-hero,
    .related-projects-section,
    .related-projects {
        padding: 50px 0;
    }
    
    .hero-title,
    .project-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card { flex: 100%; }
    .single-project-container {
	    margin-top: 80px;
	}
	.featured-thumbs img {height: 60px;}
	.single-project-container .featured-swiper img, .featured-swiper img {height: 400px;}
}
