/* Homepage Specific Styles - ANBRIDE Stili + Zeyran Renk Paleti */

/* =============================================
   HERO SECTION — ANBRIDE Yatay Kayan Bant
   ============================================= */
.hero-section {
    /* Sitenin mürdüm/krem paleti — elbiselerin ışıltısını öne çıkaran açık ton */
    background-color: #faf7f3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%237c2348' fill-opacity='0.03'%3E%3Cpath d='M30 18c0 6.627-5.373 12-12 12 6.627 0 12 5.373 12 12 0-6.627 5.373-12 12-12-6.627 0-12-5.373-12-12z'/%3E%3Ccircle cx='30' cy='30' r='1.2'/%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    height: 90vh;
    min-height: 580px;
    overflow: hidden;
    border-bottom: 1px solid #e8d6c8;
}

/* -----------------------------------------------
   Başlık: Görsellerin üzerine absolute olarak biniyor
   ----------------------------------------------- */
.hero-overlay-text {
    position: absolute;
    top: 0;
    left: 4vw;
    bottom: 0;
    width: 40vw;                /* Text is wide, spans over background and image */
    display: flex;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5vw;           /* Responsive text size to match screen width */
    font-weight: 300;           /* Hafif — ANBRIDE gibi ince ve zarif */
    color: #3d1a2b;
    line-height: 1.0;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    mix-blend-mode: normal;
}

/* -----------------------------------------------
   Yatay Kayan Bant (Track)
   ----------------------------------------------- */
.hero-track-wrapper {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    left: 25vw;                 /* 25% empty background + 75% for 3 cards */
    overflow: hidden;
}

.hero-track {
    display: flex;
    flex-direction: row;
    align-items: flex-end;      /* Alt hiza — ANBRIDE'daki gibi */
    gap: 1.5vw;
    height: 100%;
    padding: 0 5vw 0 0;
    position: relative;         /* For offsetLeft tracking */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* -----------------------------------------------
   Her Görsel Kartı
   ----------------------------------------------- */
.hero-card {
    flex: 0 0 16vw;             /* Küçük kartlar */
    height: 70%;
    display: flex;
    flex-direction: column;
    transition: flex-basis 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* Aktif (büyük, gösterimde olan) kart */
.hero-card--active {
    flex: 0 0 40vw;             /* 40vw (Active) + 1.5vw (Gap) + 16vw (Small) + 1.5vw (Gap) + 16vw (Small) = 75vw */
    height: 94%;
}

.hero-card-img {
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.hero-card:hover .hero-card-img img {
    transform: scale(1.02);
}

/* Görsel altındaki ad ve link — ANBRIDE gibi */
.hero-card-info {
    flex: 0 0 auto;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.hero-card-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85vw;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3d1a2b;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75vw;
    font-weight: 600;
    color: #a05a74;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.hero-card-link:hover {
    color: #7c2348;
}

/* -----------------------------------------------
   Alt Bar: KİRALA + Navigasyon (sağ alt)
   ----------------------------------------------- */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 30;
    padding: 0;
}

.btn-kirala {
    display: none;          /* Navigasyonun yanına koymak yerine kart linkini kullan */
}

/* Navigasyon butonları — sağ alt koyu panel (ANBRIDE gibi) */
.hero-nav {
    display: flex;
    align-items: center;
    gap: 0;
    background: #7c2348;    /* Sitenin mürdün rengi */
    padding: 1.1rem 1.5rem;
}

.hero-nav-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    line-height: 1;
    padding: 0;
}

.hero-nav-btn:hover {
    background: rgba(255,255,255,0.15);
}

/* Orta çizgi (ANBRIDE nav butonları arasındaki çizgi) */
.hero-nav-line {
    display: inline-block;
    width: 30px;
    height: 1.5px;
    background: rgba(255,255,255,0.4);
    margin: 0 0.5rem;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1100px) {
    .hero-title { font-size: 6vw; left: 3vw; }
    .hero-track-wrapper { left: 20vw; }
    .hero-card--active { flex: 0 0 45vw; }
    .hero-card { flex: 0 0 16vw; }
    .hero-card-name { font-size: 1.1vw; }
    .hero-card-link { font-size: 1.0vw; }
}

@media (max-width: 860px) {
    .hero-section { height: 75vh; min-height: 400px; }
    .hero-overlay-text { left: 3vw; width: 50vw; }
    .hero-title { font-size: 8vw; }
    .hero-track-wrapper { left: 15vw; }
    .hero-track { gap: 2vw; }
    .hero-card--active { flex: 0 0 50vw; height: 90%; }
    .hero-card { flex: 0 0 30vw; height: 70%; }
    .hero-card-name { font-size: 1.6vw; }
    .hero-card-link { font-size: 1.4vw; }
    .hero-nav { padding: 0.8rem 1rem; }
    .hero-nav-btn { font-size: 1.4rem; width: 36px; height: 36px; }
}

@media (max-width: 560px) {
    .hero-section { height: 70vh; min-height: 350px; }
    .hero-overlay-text { left: 2vw; width: 60vw; }
    .hero-title { font-size: 10vw; text-shadow: 1px 1px 3px rgba(255,255,255,0.8); }
    .hero-track-wrapper { left: 5vw; }
    .hero-track { gap: 3vw; }
    .hero-card--active { flex: 0 0 70vw; height: 85%; }
    .hero-card { flex: 0 0 60vw; height: 75%; }
    .hero-card-name { font-size: 3.5vw; }
    .hero-card-link { font-size: 3vw; }
    .hero-nav-line { width: 16px; }
}

/* =============================================
   HOME SECTIONS - Koleksiyonlar
   ============================================= */
.home-sections-wrapper {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: transparent;
}

/* Ornaments */
.ornament-star {
    position: absolute;
    color: #d4af37;
    opacity: 0.8;
    animation: twinkle 4s infinite alternate;
}
.ornament-star-1 { top: 0rem; left: 10%; width: 40px; height: 40px; }
.ornament-star-2 { top: 5rem; right: 5%; width: 25px; height: 25px; }
.ornament-star-3 { bottom: 10rem; left: -2%; width: 35px; height: 35px; }

.ornament-flower {
    position: absolute;
    color: #d4af37;
    opacity: 0.5;
}
.ornament-flower-1 { top: -2rem; right: 15%; width: 60px; height: 60px; }

@keyframes twinkle {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

.home-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #7c2348;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.home-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.home-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}
.home-category-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(124, 35, 72, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s;
    text-decoration: none;
    display: block;
    background: #fff;
    height: 450px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.home-category-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 8px 30px rgba(124, 35, 72, 0.15);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #faecef;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 4s linear;
}

.slider-img.active {
    opacity: 1;
}

.home-category-card:hover .slider-img.active {
    opacity: 1;
    transform: scale(1.03);
}

.home-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1rem 1.5rem 1rem;
    background: linear-gradient(to top, rgba(124, 35, 72, 0.85) 0%, rgba(124, 35, 72, 0) 100%);
    text-align: center;
    z-index: 10;
}
.home-category-overlay h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.home-category-overlay p {
    margin: 0.5rem 0 0;
    color: #f3ede7;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Section */
.home-contact {
    display: flex;
    flex-wrap: wrap;
    background: #fffaf7;
    border: 1px solid rgba(124, 35, 72, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(124, 35, 72, 0.05);
    position: relative;
    z-index: 2;
}
.home-contact-info {
    flex: 1;
    min-width: 300px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #7c2348;
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #3d1a2b;
    line-height: 1.6;
}
.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #d4af37;
}
.contact-detail a {
    color: #7c2348;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.contact-detail a:hover {
    color: #d4af37;
}
.home-contact-map {
    flex: 1;
    min-width: 300px;
    min-height: 350px;
}
.home-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Old hero-action btn (fallback) */
.btn-hero-action {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3.5rem;
    background: linear-gradient(90deg, #d4af37, #c7a17a);
    color: #1e0d16 !important;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-hero-action:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    color: #1e0d16 !important;
}