@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Montserrat+Alternates:wght@500;600&family=Titillium+Web:wght@400;600&family=Raleway:wght@400;600&family=Nunito:wght@400;600&display=swap');
.navbar-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    color: #00A651 !important;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.navbar {
    z-index: 1030;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

body {
    padding-top: 76px;
}

.nav-link {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333 !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
}

.nav-link:hover {
    color: #00A651 !important;
    background-color: #F6F3EB;
    border-radius: 4px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.search-form {
    position: relative;
    max-width: 300px;
}

.search-form input {
    border: 2px solid #F6F3EB;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    padding-right: 2.5rem;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #00A651;
    padding: 0;
}

.search-form input:focus {
    border-color: #00A651;
    box-shadow: none;
    outline: none;
}

.cart-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-buttons .btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-buttons .snipcart-items-count {
    font-weight: 600;
    font-size: 1rem;
}

.contact-form-section .form-control:focus {
    border-color: #00A651;
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

.contact-form-section .btn-success {
    background: linear-gradient(45deg, #00A651, #6EDFD1);
    border: none;
    padding: 0.75rem 2rem;
    font-family: 'Montserrat Alternates', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-section .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
}

.contact-form-section .card {
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-form-section .form-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #333;
}

.contact-form-section .accordion-button:not(.collapsed) {
    background-color: #F6F3EB;
    color: #00A651;
}

.contact-form-section .accordion-button:focus {
    border-color: #00A651;
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

.breadcrumb {
    background: #F6F3EB;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin: 1rem 0;
    margin-top: 1.5rem;
}

.breadcrumb-item a {
    color: #00A651;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

footer {
    background-color: #F6F3EB !important;
}

footer h5 {
    font-family: 'Montserrat Alternates', sans-serif;
    color: #00A651;
}

footer a {
    color: #333;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00A651;
}

.cookie-consent {
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.hero-section {
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.carousel-image-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-image-wrapper img {
    transform: scale(1.05);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    text-align: center;
}

.carousel-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.carousel-content h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.carousel-content p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.carousel-content .btn {
    animation: fadeInUp 1.2s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.4);
    transition: all 0.3s ease;
}

.carousel-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #00A651;
    border-color: #00A651;
    width: 30px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #00A651;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .carousel-image-wrapper {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
    }
    
    .carousel-content h1 {
        font-size: 1.75rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
}

.card-img-top,
.card img,
img.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-section .card-img-top,
.featured-articles .card-img-top,
.featured-gallery .card-img-top {
    height: 250px;
}

.products-section .card-img-top,
.categories-section .card-img-top {
    height: 300px;
}

.team-section .card-img-top {
    height: 280px;
}

.mission-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .card-img-top,
    .card img,
    img.card-img-top {
        height: 250px;
    }
    
    .gallery-section .card-img-top,
    .featured-articles .card-img-top,
    .featured-gallery .card-img-top {
        height: 200px;
    }
    
    .products-section .card-img-top,
    .categories-section .card-img-top {
        height: 250px;
    }
    
    .team-section .card-img-top {
        height: 220px;
    }
    
    .mission-section img {
        height: 300px;
    }
}
