/* DDN Door to Door Plate - Main Styles */

:root {
    --primary-color: #1a5276;
    --secondary-color: #2980b9;
    --accent-color: #f39c12;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.main-content {
    padding-top: 76px;
}

/* Navbar */
.navbar-brand span {
    font-weight: 600;
}

.nav-link.active {
    font-weight: 600;
}

/* Hero Slider */
.hero-slider {
    height: 80vh;
    min-height: 500px;
}

.bannerSwiper {
    height: 100%;
}

.banner-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
}

/* Sections */
.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-heading {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.section-image img {
    transition: transform 0.3s ease;
}

.section-image img:hover {
    transform: scale(1.02);
}

/* Gallery */
.gallery-card,
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-card img,
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover img,
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay,
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay,
.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay i {
    font-size: 1.5rem;
}

/* Contact */
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.contact-item h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Page Header */
.page-header {
    margin-top: -76px;
    padding-top: 150px !important;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

/* Footer */
.footer a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
}


