﻿/* --- PRODUCT CATALOG SECTION --- */
.product-card-catalog-section {
    padding: 100px 5%;
    font-family: 'Playfair Display', serif;
    /* Image Background Setup with a soft light mask overlay */
    background-image: url('/css/images/sky1.jpg'); /* Change to your actual file name */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: Creates a cool parallax scrolling effect */
}

.product-card-catalog-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-card-catalog-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1b4332; /* Matcha Green */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
}

.product-card-catalog-pink {
    color: #ffb7c5; /* Sakura Pink */
}

.product-card-catalog-subtitle {
    font-family: 'Inter', sans-serif;
    color: #555; /* Darkened slightly for better readability on image backgrounds */
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Grid Layout */
.product-card-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Item Card */
.product-card-catalog-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    /* Soft shadow added to make cards stand out neatly over the background image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

    .product-card-catalog-item:hover {
        transform: translateY(-10px);
        border-color: #ffb7c5; /* Pink border on hover */
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

/* Image Container */
.product-card-catalog-image-box {
    position: relative;
    height: 350px;
    background: #f9f9f9;
    overflow: hidden;
}

.product-card-catalog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-catalog-item:hover .product-card-catalog-img {
    transform: scale(1.08);
}

.product-card-catalog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2d6a4f;
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
}

/* Details Area */
.product-card-catalog-details {
    padding: 25px;
}

.product-card-catalog-name {
    font-size: 1.4rem;
    color: #1b4332;
    margin: 0 0 10px 0;
}

.product-card-catalog-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer of the Card */
.product-card-catalog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-card-catalog-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d6a4f;
}

.product-card-catalog-add {
    background: transparent;
    border: 1px solid #d4af37; /* Gold Tint border */
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

    .product-card-catalog-add:hover {
        background: #ffb7c5; /* Pink fill on hover */
        color: #fff;
        border-color: #ffb7c5;
    }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .product-card-catalog-section {
        padding: 60px 20px;
        background-attachment: scroll; /* Fixes performance lag on mobile browsers */
    }

    .product-card-catalog-image-box {
        height: 300px;
    }
}




/*title and image section*/

/* --- IMAGE TITLE BANNER (20% Height) --- */
.image-title-banner {
    position: relative;
    width: 100%;
    height: 30vh; /* Exactly % of screen height */
    min-height: 150px; /* Ensures visibility on very small screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Background Image Setup */
    background: url('/css/images/matchaPowder.webp') center center no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect for elegance */
}

/* Gold Tint & Soft Theme Overlay */
.image-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle Gold and Pink tint */
    background: linear-gradient( to right, rgba(212, 175, 55, 0.1) 0%, rgba(255, 240, 245, 0.3) 50%, rgba(212, 175, 55, 0.1) 100% );
    z-index: 1;
}

/* Center Title Styling */
.image-title-center-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.image-title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    /* Gold stroke/tint effect */
    -webkit-text-stroke: 0.5px rgba(212, 175, 55, 0.5);
}

.image-title-accent {
    color: #ffb7c5; /* Sakura Pink */
    font-style: italic;
    text-transform: none;
    letter-spacing: 2px;
}

/* Bottom Text Styling */
.image-title-footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.image-title-desc {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.9;
    /* Matcha Green tint on the text */
    color: #dbe9d3;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .image-title-banner {
        height: 15vh; /* Slightly smaller on mobile to save space */
        background-attachment: scroll; /* Better performance on mobile */
    }

    .image-title-main {
        letter-spacing: 5px;
    }

    .image-title-desc {
        letter-spacing: 2px;
        font-size: 0.65rem;
    }
}







/*seporator titel-----------------------*/

/* --- SECTION SEPARATOR TITLE --- */
.section-separator-title-wrap {
    position: relative;
    width: 100%; /* Full screen width */
    background-color: #ffb7c5; /* Sakura Pink */
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* The "Fancy" Decorative Green Lines */
.section-separator-title-line-top,
.section-separator-title-line-bottom {
    position: absolute;
    width: 150px;
    height: 4px;
    background-color: #2d6a4f; /* Matcha Green */
    border-radius: 2px;
}

.section-separator-title-line-top {
    top: 20px;
    left: 10%;
    transform: rotate(-2deg);
    box-shadow: 20px 5px 0px rgba(45, 106, 79, 0.2); /* Ghost line effect */
}

.section-separator-title-line-bottom {
    bottom: 20px;
    right: 10%;
    transform: rotate(2deg);
    box-shadow: -20px -5px 0px rgba(45, 106, 79, 0.2);
}

/* Typography Container */
.section-separator-title-content {
    text-align: center;
    z-index: 2;
}

/* "Discover the Art of" - Fancy Script Style */
.section-separator-title-fancy {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: -10px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* "Matcha Perfection" - Bold and Elegant */
.section-separator-title-main {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive sizing */
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 0;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Floating Green Accent Circles (Subtle) */
.section-separator-title-wrap::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -50px;
    z-index: 1;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .section-separator-title-wrap {
        padding: 40px 0;
    }

    .section-separator-title-main {
        letter-spacing: 4px;
        line-height: 1.1;
    }

    .section-separator-title-line-top,
    .section-separator-title-line-bottom {
        width: 80px; /* Shorter lines for smaller screens */
    }
}