/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Green tones - Elite, sophisticated dark green tones */
    --green-primary: #4A7C2A;
    --green-light: #5A8F35;
    --green-lighter: #6BA342;
    --green-very-light: #E8F5E3;
    --green-dark: #3D6B1F;
    --green-darker: #2D5016;
    
    /* Accent colors - Green-based accents */
    --accent-primary: #6BA342;
    --accent-light: #7CB342;
    --accent-lighter: #8BC34A;
    
    /* Neutral colors - Sophisticated */
    --white: #F8F8F8;
    --off-white: #F0F0F0;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Banner */
header {
    position: relative;
}

.banner {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    max-height: 1080px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    z-index: 1;
}

.banner img[src=""],
.banner img:not([src]) {
    display: none;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
    z-index: 0;
}

.banner:has(img[src]:not([src=""]))::before {
    display: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0;
}

.banner-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 50%, var(--green-primary) 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--accent-light);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-light);
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Contact Top Section */
.contact-top {
    background: linear-gradient(to right, var(--green-light), var(--green-lighter));
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.phone-item, .whatsapp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-item:hover, .whatsapp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    background: #ffffff;
}

.phone-item a, .whatsapp-item a {
    color: var(--green-darker);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.whatsapp-link {
    color: #25D366 !important;
}

.phone-icon, .whatsapp-icon {
    font-size: 1.3rem;
}

/* Information Banner */
.info-banner {
    background: linear-gradient(135deg, var(--green-lighter) 0%, var(--green-light) 100%);
    padding: 50px 0;
    border-top: 3px solid var(--green-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    margin-top: 0;
    margin-bottom: 0;
}

.info-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.info-text strong {
    color: var(--green-darker);
    font-weight: 600;
}


/* Products Section */
.products-section {
    padding: 30px 0 80px 0;
    background: linear-gradient(to bottom, var(--green-very-light), var(--off-white));
}

.products-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-darker);
    margin-top: 0;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

/* Yeşil şeritler - ürünler arasında (sadece mobilde görünür) */
.product-card-link::before {
    content: "Saman Zahire";
    display: none;
    /* Arka plan gradient - yeşil tonları (koyu yeşil'den açık yeşile) */
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 30%, var(--green-lighter) 50%, var(--accent-lighter) 70%, var(--green-lighter) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    animation: gradientShift 3s ease infinite;
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Gradient animasyonu */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px) rotateX(3deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--green-primary);
    position: relative;
    perspective: 1000px;
    border-radius: 20px 20px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 20px 20px 0 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.product-image img[src=""],
.product-image img:not([src]) {
    display: none;
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotateY(8deg) translateZ(40px);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    background: var(--green-primary);
    border-radius: 20px 20px 0 0;
    transform: translateZ(20px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-weight: 500;
}

.image-placeholder[style*="display: none"] {
    display: none !important;
}

.straw-placeholder {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: var(--white);
    font-weight: 500;
}

.beet-placeholder {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: var(--white);
    font-weight: 500;
}


.product-info {
    padding: 30px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--green-darker);
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.product-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.product-price {
    background: linear-gradient(135deg, var(--green-lighter) 0%, var(--green-light) 100%);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 10px;
    text-align: center;
}

.product-price .price-label {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.product-price .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-price .price-amount .price-unit {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-shadow: none;
}

.product-price .price-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
    line-height: 1.4;
}

.product-location {
    background: var(--green-very-light);
    padding: 12px 15px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-location strong {
    color: var(--green-darker);
    font-weight: 600;
}


/* Policy Page Styles */
.policy-main {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--green-very-light), var(--off-white));
    min-height: calc(100vh - 200px);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-darker);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.policy-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--green-very-light);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-darker);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-section li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.policy-section a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--green-darker);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 60px 0 25px;
    margin-top: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--accent-light);
    letter-spacing: -0.3px;
}

.footer-section p {
    line-height: 1.8;
    color: var(--green-very-light);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.facebook-link {
    color: #1877F2;
    background: var(--white) !important;
}

.facebook-link:hover {
    color: #42A5F5;
    background: #f0f0f0 !important;
}

.social-link span {
    font-size: 1rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--green-very-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 50vh;
        min-height: 400px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-banner {
        padding: 30px 0;
    }
    
    .info-content {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }
    
    .info-icon {
        font-size: 2rem;
        text-align: center;
    }
    
    .info-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.6rem;
    }
    
    .products-section h2 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }
    
    .product-card-link {
        width: 100%;
    }
    
    .product-card-link::before {
        display: block;
        font-size: 1.05rem;
        padding: 12px 18px;
    }
    
    .product-card-link:first-child::before {
        display: none;
    }
    
    .product-card {
        transform: scale(1);
        margin: 0 auto;
        max-width: 100%;
    }
    
    .product-card:hover {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }
    
    .product-image {
        height: 260px;
    }
    
    .product-info {
        padding: 25px;
        gap: 15px;
    }
    
    .product-info h3 {
        font-size: 1.5rem;
    }
    
    .product-info p {
        font-size: 1rem;
    }
    
    .product-price {
        padding: 15px 18px;
    }
    
    .product-price .price-label {
        font-size: 0.85rem;
    }
    
    .product-price .price-amount {
        font-size: 1.6rem;
    }
    
    .product-price .price-unit {
        font-size: 0.95rem;
    }
    
    .product-price .price-note {
        font-size: 0.8rem;
    }
    
    .product-location {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 40vh;
        min-height: 300px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 5px 10px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
    }
    
    .banner-overlay {
        padding-bottom: 20px;
    }
    
    .products-section h2 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card-link {
        width: 100%;
    }
    
    .product-card-link::before {
        display: block;
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .product-card-link:first-child::before {
        display: none;
    }
    
    .product-card {
        transform: scale(0.98);
        margin: 0 auto;
        max-width: 98%;
    }
    
    .product-card:hover {
        transform: scale(0.98);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-info {
        padding: 22px;
        gap: 12px;
    }
    
    .product-info h3 {
        font-size: 1.4rem;
    }
    
    .product-info p {
        font-size: 0.95rem;
    }
    
    .product-price {
        padding: 14px 16px;
    }
    
    .product-price .price-label {
        font-size: 0.8rem;
    }
    
    .product-price .price-amount {
        font-size: 1.5rem;
    }
    
    .product-price .price-unit {
        font-size: 0.9rem;
    }
    
    .product-price .price-note {
        font-size: 0.75rem;
    }
    
    .product-location {
        font-size: 0.85rem;
        padding: 11px 13px;
    }
    
    .info-banner {
        padding: 25px 0;
    }
    
    .info-content {
        flex-direction: column;
        gap: 12px;
        padding: 20px 15px;
    }
    
    .info-icon {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .info-text p {
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .social-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
}

