/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: #000 !important;
    font-family: 'Montserrat', sans-serif;
}

.navbar-brand {
    font-weight: 600;
}

.btn-call {
    background-color: #28a745;
    color: white;
    font-weight: 500;
}

.btn-call:hover {
    background-color: #218838;
    color: white;
}

/* Carousel Styles */
.carousel {
    margin-top: 56px; /* Height of navbar */
}

.carousel-item {
    height: 60vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    background-color: #000;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
}

.carousel-caption h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 400;
}

/* Service Card Styles */
.service-card {
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Contact Info Styles */
.contact-info i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.w-change {
    width: 50%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        object-fit: cover;
    }
    .w-change {
        width: 100%;
    }
    .carousel-item {
        height: 50vh;
    }

    .carousel-caption {
        bottom: 10%;
        padding: 15px;
    }

    .carousel-caption h3 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .map-container {
        padding-bottom: 75%; /* 4:3 Aspect Ratio for mobile */
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 35vh;
    }

    .carousel-caption {
        bottom: 5%;
        padding: 10px;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Footer Styles */
footer {
    padding: 2rem 0;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    opacity: 0.8;
}

/* Map Container Styles */
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Reviews Section Styles */
#reviews {
    background-color: #f8f9fa;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
}

#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
    width: 5%;
}

#reviewsCarousel .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
} 