/* About Page Specific Styles */

/* Story Section Styles */
.story-section {
    background-color: #f8f9fa !important;
    padding: 4rem 0;
}

.story-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.story-image-container > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.story-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-img {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.decoration-1 {
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
}

.decoration-2 {
    bottom: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
}

.story-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #333;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Contact Section Styles */
.contact-section {
    background-color: #fff;
    padding: 4rem 0;
    padding-bottom: 400px !important; /* Footer yüksekliği kadar boşluk */
}

.contact-card {
    padding: 1.8rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-contact {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.card-image-container {
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.card-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Story & Contact Responsive */
@media (max-width: 991px) {
    .story-title {
        font-size: 1.9rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .story-subtitle {
        text-align: center;
    }
    
    .decoration-1,
    .decoration-2 {
        display: none;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-section {
        padding-bottom: 320px !important;
    }
}

@media (max-width: 767px) {
    .story-title {
        font-size: 1.7rem;
    }
    
    .story-text {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .contact-card-title {
        font-size: 1.3rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .card-image-container {
        height: 70px;
    }
    
    .story-image-container > img {
        height: 200px;
    }
    
    .contact-section {
        padding-bottom: 280px !important;
    }
}

@media (max-width: 576px) {
    .story-title {
        font-size: 1.5rem;
    }
    
    .story-subtitle {
        font-size: 0.9rem;
    }
    
    .story-text {
        font-size: 0.8rem;
    }
    
    .contact-card-title {
        font-size: 1.2rem;
    }
    
    .card-image-container {
        height: 60px;
    }
    
    .story-image-container > img {
        height: 180px;
    }
}

/* Products Section Styles */
.products-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    padding-bottom: 400px !important; /* Footer yüksekliği kadar boşluk */
}

.products-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.product-decoration {
    position: absolute;
    width: 35px;
    height: 35px;
}

.product-decoration-top {
    top: -10px;
    left: 20px;
}

.product-decoration-top-right {
    top: -10px;
    right: 20px;
}

.decoration-fruit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8B4B9B; /* Mor renk */
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.btn-products {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%); /* Altın renk */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-products:hover {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

/* Products Responsive */
@media (max-width: 991px) {
    .products-title {
        font-size: 2.2rem;
    }
    
    .product-image {
        width: 100px;
        height: 100px;
    }
    
    .product-decoration {
        width: 30px;
        height: 30px;
    }
    
    .products-section {
        padding-bottom: 320px !important;
    }
}

@media (max-width: 767px) {
    .products-title {
        font-size: 1.9rem;
    }
    
    .product-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-image {
        width: 90px;
        height: 90px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .products-section {
        padding-bottom: 280px !important;
    }
}

@media (max-width: 576px) {
    .products-title {
        font-size: 1.7rem;
    }
    
    .product-card {
        padding: 1.2rem;
    }
    
    .product-image {
        width: 80px;
        height: 80px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
}

/* Product Gallery Section */
.product-gallery-section {
    padding-bottom: 0 !important; /* Footer ile bitişik olsun */
    margin-bottom: 400px !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.product-gallery-section .container-fluid {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-gallery-section .row {
    margin: 0 !important;
    width: 100% !important;
}

.product-gallery-section .col {
    padding: 0 !important;
    flex: 1 !important;
    max-width: 20% !important; /* 5 sütun için */
    width: 20% !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: block;
    width: 100% !important;
}

.gallery-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    min-height: 200px;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Responsive */
@media (max-width: 991px) {
    .gallery-item {
        height: 180px;
    }
    
    .gallery-image {
        min-height: 180px;
    }
}

@media (max-width: 767px) {
    .gallery-item {
        height: 150px;
    }
    
    .gallery-image {
        min-height: 150px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 120px;
    }
    
    .gallery-image {
        min-height: 120px;
    }
    
    /* Mobilde 2x3 grid yapısı */
    .product-gallery-section .row {
        flex-wrap: wrap;
    }
    
    .product-gallery-section .col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
    
    .product-gallery-section .col:nth-child(5) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}
