/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    padding-top: 56px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('yakk-stones-home-imge.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Services Section */
.card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card i {
    color: #007bff;
}

/* Portfolio Section */
.portfolio-img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.portfolio-img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

/* Form Styles */
.form-control {
    margin-bottom: 15px;
}

/* Custom Button Styles */
.btn-primary {
    padding: 10px 25px;
    border-radius: 25px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
}

/* Portfolio Page Styles */
.portfolio-header {
    margin-top: 56px;
    background-color: #f8f9fa;
    padding: 60px 0;
}

.portfolio-filters {
    margin-bottom: 30px;
}

.portfolio-filters button {
    margin: 5px;
    transition: all 0.3s ease;
}

.portfolio-filters button.active {
    background-color: #007bff;
    color: white;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item .card {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-item .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Portfolio Carousel Styles */
.carousel-item {
    position: relative;
}

.slide-text {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.carousel-item a:hover .slide-text {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.7);
}

#portfolioCarousel {
    max-height: 600px;
    margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0.8;
    border-radius: 5px;
    margin: 0 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #portfolioCarousel {
        max-height: 400px;
    }
    
    .portfolio-slide-img {
        height: 400px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
}

/* Gallery Styles */
.gallery-header {
    margin-top: 56px;
    background-color: #f8f9fa;
    padding: 60px 0;
}

.gallery-card {
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-img {
    height: 250px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-img {
        height: 200px;
    }
}

/* Add to Portfolio Carousel Styles */
.click-hint {
    font-size: 1rem;
    display: block;
    margin-top: 10px;
    font-weight: normal;
    opacity: 0.9;
}

.carousel-item a:hover .click-hint {
    text-decoration: underline;
}

/* Update existing slide-text class */
.slide-text {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
 