/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C3E50;
    --secondary-color: #ECF0F1;
    --accent-color: #95A5A6;
    --text-color: #2C3E50;
    --background-color: #FFFFFF;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent-color);
}

.header-icons {
    display: flex;
    gap: 1.5rem;
}

.header-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.header-icons a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1483985988355-763728e1935b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--secondary-color);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Virtual Try-On Banner */
.virtual-try-on {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.try-on-content {
    max-width: 800px;
    margin: 0 auto;
}

.try-on-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.secondary-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 25px;
    margin-top: 1rem;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Product Showcase */
.product-showcase {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* User Gallery */
.user-gallery {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
}

.gallery-carousel {
    max-width: 1200px;
    margin: 2rem auto;
    overflow: hidden;
}

/* Gamification Section */
.gamification {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.newsletter-form input {
    padding: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--accent-color);
}

/* Chatbot Icon */
.chatbot-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chatbot-icon:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .try-on-content {
    animation: fadeIn 1s ease-out;
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .quick-view {
    bottom: 20px;
    opacity: 1;
}

.product-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
}

.product-card .price {
    padding: 0 1rem 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Quick View Modal */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
    display: flex;
    gap: 2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color);
}

.modal-body {
    display: flex;
    gap: 2rem;
}

.modal-body img {
    width: 50%;
    object-fit: cover;
    border-radius: 5px;
}

.product-details {
    flex: 1;
}

.product-details h2 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.add-to-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.add-to-cart:hover {
    background: var(--accent-color);
}

/* Chat Window */
.chat-window {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-messages {
    height: calc(100% - 130px);
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
}

.message.user {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.message.bot {
    background: var(--secondary-color);
    color: var(--text-color);
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid var(--secondary-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
}

.send-message {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.send-message:hover {
    background: var(--accent-color);
}

/* Gallery Carousel */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item p {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Ürün Detay Sayfası Stilleri */
.product-detail-page {
    padding: 120px 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail-images img:hover {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-info .price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description h3,
.product-features h3,
.size-selector h3,
.color-selector h3,
.quantity-selector h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.size-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.size-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    background: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.color-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-btn:hover,
.color-btn.selected {
    border-color: var(--primary-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    background: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

#quantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    flex: 2;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--accent-color);
}

.wishlist-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn:hover {
    background: var(--secondary-color);
}

.product-meta {
    border-top: 1px solid var(--secondary-color);
    padding-top: 2rem;
}

.product-meta p {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.product-meta i {
    margin-right: 0.5rem;
}

.related-products {
    margin-top: 5rem;
}

.related-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .add-to-cart-btn,
    .wishlist-btn {
        width: 100%;
    }
}

/* Koleksiyon Sayfası Stilleri */
.collection-page {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Filtreler */
.filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.filter-section ul {
    list-style: none;
    padding: 0;
}

.filter-section ul li {
    margin-bottom: 0.5rem;
}

.filter-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.filter-section ul li a:hover,
.filter-section ul li a.active {
    color: #333;
    font-weight: 500;
}

/* Fiyat Aralığı */
.price-range {
    padding: 0 0.5rem;
}

.price-slider {
    width: 100%;
    margin-bottom: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-inputs input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Renk ve Beden Filtreleri */
.color-filters,
.size-filters {
    display: grid;
    gap: 0.5rem;
}

.color-filters label,
.size-filters label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Ürün Listesi */
.products-section {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-options button {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-options button.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: bottom 0.3s;
}

.product-card:hover .quick-view-btn {
    bottom: 20px;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.price {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-colors {
    display: flex;
    gap: 0.5rem;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .collection-page {
        grid-template-columns: 240px 1fr;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .collection-page {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
        margin-bottom: 2rem;
    }

    .products-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .products-controls {
        width: 100%;
        justify-content: space-between;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .sort-select {
        width: 100%;
    }
}

/* Sürdürülebilirlik Sayfası Stilleri */
.sustainability-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/sustainability-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.sustainability-hero .hero-content {
    max-width: 800px;
    padding: 2rem;
}

.sustainability-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.sustainability-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sürdürülebilirlik Değerlerimiz */
.sustainability-values {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
}

.sustainability-values h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Üretim Sürecimiz */
.production-process {
    padding: 5rem 2rem;
}

.production-process h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Çevresel Etki */
.environmental-impact {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
}

.environmental-impact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Sürdürülebilirlik Sözümüz */
.sustainability-pledge {
    padding: 5rem 2rem;
}

.sustainability-pledge h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.pledge-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pledge-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.pledge-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.pledge-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pledge-list i {
    color: var(--accent-color);
}

/* Katılım Çağrısı */
.join-movement {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.join-movement h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-movement p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.join-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sustainability-hero h1 {
        font-size: 2.5rem;
    }

    .values-grid,
    .process-timeline,
    .impact-stats {
        grid-template-columns: 1fr;
    }

    .join-actions {
        flex-direction: column;
    }

    .join-actions .cta-button,
    .join-actions .secondary-button {
        width: 100%;
    }
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.contact-hero .hero-content {
    max-width: 800px;
    padding: 2rem;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* İletişim Bölümü */
.contact-section {
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* İletişim Bilgileri */
.contact-info {
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* İletişim Formu */
.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--accent-color);
}

/* Harita Bölümü */
.map-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.map-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* --- ABOUT PAGE STYLES --- */

.about-hero {
  background: linear-gradient(rgba(255,255,255,0.85), rgba(245,245,245,0.95)), url('images/about-hero.jpg') center/cover no-repeat;
  padding: 64px 0 48px 0;
  text-align: center;
}
.about-hero .hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--text-color, #222);
  margin-bottom: 1rem;
}
.about-hero .hero-content p {
  font-size: 1.25rem;
  color: var(--text-color, #444);
  max-width: 600px;
  margin: 0 auto;
}

.about-story.section-padding,
.about-values.section-padding,
.about-team.section-padding {
  padding: 56px 0 40px 0;
}

.about-story h2,
.about-values h2,
.about-team h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--text-color, #222);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-story p {
  font-size: 1.15rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.value-item i {
  font-size: 2.2rem;
  color: var(--primary-color, #bfa980);
  margin-bottom: 0.7rem;
}
.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.value-item p {
  color: #555;
  font-size: 1rem;
}
.value-item:hover {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  width: 220px;
  transition: box-shadow 0.2s;
}
.team-member img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-color, #bfa980);
}
.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #222;
}
.team-member p {
  color: #666;
  font-size: 0.98rem;
}
.team-member:hover {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .about-hero {
    padding: 40px 0 24px 0;
  }
  .about-hero .hero-content h1 {
    font-size: 2.1rem;
  }
  .about-story.section-padding,
  .about-values.section-padding,
  .about-team.section-padding {
    padding: 32px 0 20px 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .team-member {
    width: 90vw;
    max-width: 320px;
  }
} 