/* =================================================================== */
/* 1. ANASAYFA (index.html) STİLLERİ */
/* =================================================================== */

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7), rgba(139, 111, 71, 0.5)), 
    url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4e6c3 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: #f9f7f4;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hakkımızda */
.about {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    color: #444;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* Menü Preview */
.menu-preview {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    text-align: center;
}

.menu-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.menu-gallery img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-gallery img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Takılar (Anasayfa) */
.jewelry {
    background: rgba(255, 255, 255, 0.9);
}

.jewelry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.jewelry-item {
    background: white;
    height: 380px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.jewelry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.jewelry-item:hover::before {
    opacity: 1;
}

.jewelry-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.jewelry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.jewelry-item:hover img {
    transform: scale(1.05);
}

/* Hikayeler - Ana Sayfa */
.stories .container {
    max-width: 1400px;
}

.stories {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.story-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-content h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.story-content p {
    color: #666;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Duyurular (Anasayfa) */
.announcements {
    background: rgba(255, 255, 255, 0.9);
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.announcement-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.announcement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.announcement-image {
    width: 100%;
    height: 270px;
    background: linear-gradient(135deg, #8b6f47, #a0826d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
}

.announcement-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent);
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.announcement-card:hover .announcement-image img {
    transform: scale(1.1);
}

.announcement-content {
    padding: 2rem;
}

.announcement-content h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.announcement-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Etkinlikler (Anasayfa) */
.events {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.event-image {
    width: 100%;
    height: 270px;
    background: linear-gradient(135deg, #2c1810, #4a3020);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
}

.event-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.event-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.events > .container > .text-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}
/* Galeri (Anasayfa) */
.gallery {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    overflow: hidden;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.gallery-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc(50% - 1rem);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 400px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #2c1810, #4a3020);
    color: #d4af37;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-arrow:hover {
    background: linear-gradient(135deg, #d4af37, #f4e6c3);
    color: #2c1810;
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-left {
    left: 0;
}

.gallery-arrow-right {
    right: 0;
}

/* İletişim Bölümü (Anasayfa) */
.contact {
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4e6c3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.whatsapp-item:hover {
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
}

.instagram-item:hover {
    box-shadow: 0 20px 50px rgba(225, 48, 108, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contact-item h3 {
    color: #2c1810;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.contact-item p {
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    margin-top: auto;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #2c1810, #4a3020);
    color: #d4af37;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-link:hover {
    background: linear-gradient(135deg, #d4af37, #f4e6c3);
    color: #2c1810;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.whatsapp-link {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
}

/* İletişim Formu (Anasayfa) */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-title {
    text-align: center;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(184, 148, 31, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(249, 247, 244, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #2c1810, #4a3020);
    color: #d4af37;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.form-submit:hover {
    background: linear-gradient(135deg, #d4af37, #f4e6c3);
    color: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* Harita (Anasayfa) */
.map-container {
    max-width: 1200px;
    margin: 4rem auto;
}

.map-title {
    text-align: center;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* =================================================================== */
/* 2. ANASAYFA RESPONSIVE */
/* =================================================================== */

/* Tablet Boyutu (768px - 1024px) */
@media (max-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil Boyutu (768px ve altı) */
@media (max-width: 768px) {

    .hero {
        height: 400px;
        background-position: center;
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0;
        max-width: 100%;
    }

    .about-content {
        padding: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .menu-gallery img {
        height: 250px;
        border-radius: 15px;
    }

    .jewelry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .jewelry-item {
        height: 300px;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .story-card {
        max-width: 100%;
    }
    
    .story-image {
        height: 200px;
    }
    
    .story-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .story-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .story-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .announcements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .announcement-card {
        max-width: 100%;
    }
    
    .announcement-image {
        height: 220px;
    }
    
    .announcement-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .announcement-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .announcement-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .event-card {
        max-width: 100%;
    }
    
    .event-image {
        height: 220px;
    }
    
    .event-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .event-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .event-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .gallery-slider-wrapper {
        padding: 0 50px;
    }
    
    .gallery-slider {
        gap: 1rem;
        scroll-snap-type: x mandatory;
    }
    
    .gallery-item {
        flex: 0 0 100%;
        height: 250px;
        scroll-snap-align: start;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .contact-link {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .form-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .map-container {
        padding: 0 1rem;
    }
    
    .map-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .map {
        height: 300px;
        border-radius: 15px;
    }

    .menu-category,
    .story-card,
    .jewelry-item,
    .announcement-card,
    .event-card {
        animation-duration: 0.5s;
    }
}

/* Çok Küçük Ekranlar (480px ve altı) */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .story-content,
    .announcement-content,
    .event-content {
        padding: 1rem;
    }
}

/* Yatay Mod (Landscape) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 350px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
}