/* Çiçek Moda - Internal Stylesheet
 * Brand Colors: Purple (#6B2D5C), Gold (#D4AF37)
 */
:root {
    --primary: #6B2D5C;
    --primary-dark: #522246;
    --secondary: #D4AF37;
    --secondary-dark: #bfa030;
    --bg-light: #FDFBF7;
    --text-main: #1D1D1F;
    --text-light: #86868B;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    --card-bg: #5b2b5f;
    --card-accent: #d6b04e;
    --card-text: #f6f1f7;
    --card-muted: #d0c0d0;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; color: var(--primary); }
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    color: #1D1D1F;
}
.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 400;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 40px 0; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; border-radius: 4px;
    transition: var(--transition); font-size: 0.9rem;
}
.btn-primary { background-color: var(--secondary); color: var(--white); border: 2px solid var(--secondary); }
.btn-primary:hover { background-color: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-2px); }
.btn-outline { background-color: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background-color: var(--white); color: var(--primary); transform: translateY(-2px); }

.btn-whatsapp-pill {
    background-color: #25D366; color: white;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 10px 24px; border-radius: 99px;
    font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp-pill:hover {
    background-color: #1DA851;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Header & Nav */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.nav-wrapper { height: 70px; display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
    color: var(--primary); letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 10px;
}
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-link {
    font-weight: 500; color: var(--text-main); font-size: 0.9rem;
    opacity: 0.8; transition: opacity 0.3s;
}
.nav-link:hover { opacity: 1; color: var(--primary); }
.nav-link.active { opacity: 1; color: var(--primary); }
.nav-cta {
    background-color: var(--primary); color: var(--white);
    padding: 8px 20px; border-radius: 99px;
    font-size: 0.85rem; font-weight: 600;
}
.nav-cta:hover { background-color: var(--primary-dark); }

.hamburger { display: none; cursor: pointer; z-index: 1001; }
.bar { width: 22px; height: 2px; background-color: var(--text-main); margin: 6px 0; transition: var(--transition); }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        height: 100vh; width: 100%;
        background-color: var(--white);
        flex-direction: column; justify-content: center;
        transition: var(--transition); gap: 40px;
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1.5rem; }
    .hamburger.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }
}

/* Hero */
#hero {
    height: 100vh; min-height: 600px;
    background: linear-gradient(rgba(107, 45, 92, 0.6), rgba(0, 0, 0, 0.4)), url('https://dikiskursu.com.tr/photo-1556905055-8f358a7a47b2.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center;
    padding-top: 15px; padding-bottom: 15px;
    position: relative;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.hero-subtitle {
    font-size: 0.9rem; text-transform: uppercase;
    letter-spacing: 3px; color: var(--secondary);
    font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: block; margin-bottom: 5px;
}
.hero-content h1 {
    color: var(--white); font-size: 4rem;
    margin-bottom: 1rem; line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.hero-content h1 span { color: var(--secondary); font-style: italic; font-family: var(--font-serif); }
.hero-text {
    font-size: 1.3rem; max-width: 650px; margin: 0 auto 1.5rem;
    color: rgba(255,255,255,0.95); font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Marquee */
.marquee-section {
    background-color: var(--primary); padding: 15px 0;
    overflow: hidden; white-space: nowrap;
    position: relative; border-bottom: 4px solid var(--secondary);
}
.marquee-content { display: inline-block; animation: marquee 35s linear infinite; }
.marquee-section:hover .marquee-content { animation-play-state: paused; }
.marquee-item {
    display: inline-block; color: var(--white);
    font-size: 1rem; font-weight: 500; padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.marquee-item:last-child { border-right: none; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Calendar */
#calendar { background: linear-gradient(135deg, #c71585, #6B2D5C); color: var(--white); padding: 60px 0; }
#calendar h2 { color: var(--white); font-size: 2.5rem; text-align: center; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 1px; }
.appointment-area {
    margin-top: 10px; display: flex; flex-direction: column;
    align-items: center; max-width: 800px; margin-left: auto; margin-right: auto;
}
.hours-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; width: 100%; max-width: 700px; margin-bottom: 20px;
}
.glass-time-card {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px;
    padding: 20px; text-align: center; transition: transform 0.3s ease;
}
.glass-time-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.15); }
.glass-time-card h4 { color: var(--white); font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 8px; }
.time-badge { display: block; color: var(--secondary); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.5px; }
.holiday-notice {
    background: rgba(0, 0, 0, 0.2); color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px; border-radius: 50px; font-size: 0.9rem;
    margin-bottom: 20px; font-weight: 500; text-align: center;
}
.planning-note {
    text-align: center; max-width: 600px;
    color: rgba(255, 255, 255, 0.85); font-size: 0.95rem;
    margin-bottom: 30px; line-height: 1.5;
}
.direct-link {
    color: var(--white); opacity: 0.7; font-size: 0.9rem;
    margin-top: 15px; border-bottom: 1px dotted var(--white);
}
.direct-link:hover { opacity: 1; color: var(--secondary); border-bottom-color: var(--secondary); }

/* Product grid */
.products-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px; padding-bottom: 30px;
}
.product-card {
    background-color: var(--card-bg); border-radius: 12px;
    padding: 24px; color: var(--card-text);
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex: 0 0 100%; width: 100%; text-align: center;
}
@media (min-width: 768px)  { .product-card { flex: 0 0 calc(50% - 24px); } }
@media (min-width: 1024px) { .product-card { flex: 0 0 calc(33.333% - 24px); } }
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border-color: var(--card-accent);
}
.pc-header {
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; margin-bottom: 12px; gap: 10px;
}
.pc-title {
    font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
    color: var(--card-accent); line-height: 1.3;
}
.pc-tag {
    font-size: 0.7rem; text-transform: uppercase;
    padding: 4px 8px; border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px; white-space: nowrap;
    color: rgba(255,255,255,0.8); letter-spacing: 0.5px;
}

/* Price block */
.pc-price {
    display: inline-flex; flex-direction: column;
    align-items: center; gap: 4px; margin-top: 4px;
}
.pc-amounts { display: inline-flex; align-items: baseline; gap: 10px; line-height: 1; }
.pc-amount {
    font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
    color: var(--card-accent); letter-spacing: 0.2px; line-height: 1;
}
.pc-amount-old {
    font-family: var(--font-serif); font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through; text-decoration-thickness: 1px;
    font-weight: 500;
}
.pc-cur {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
    font-feature-settings: "tnum";
    font-weight: 600; margin-right: 1px; opacity: 0.92;
    font-size: 0.82em; position: relative; top: -0.05em;
}
.pc-discount-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px 3px 8px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #fff; font-family: var(--font-sans);
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    border-radius: 99px;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.32);
}
.pc-discount-badge::before { content: '🎁'; font-size: 0.78em; }
.pc-slogan {
    font-family: var(--font-serif); font-style: italic;
    font-size: 0.78rem; color: rgba(255,255,255,0.78);
    margin-top: 2px; letter-spacing: 0.2px;
    max-width: 240px; text-align: center; line-height: 1.3;
}
.pc-price-ask {
    flex-direction: row; align-items: center; gap: 8px;
    padding: 6px 14px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 99px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pc-price-ask:hover {
    background: rgba(214, 176, 78, 0.06);
    border-color: rgba(214, 176, 78, 0.55);
    border-style: solid; transform: translateY(-1px);
}
.pc-price-ask .pc-price-ask-icon { font-size: 0.82rem; opacity: 0.75; }
.pc-price-ask .pc-price-ask-text {
    font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
    color: rgba(255, 255, 255, 0.78); letter-spacing: 0.3px;
    transition: color 0.3s ease;
}
.pc-price-ask:hover .pc-price-ask-text { color: var(--card-accent); }
@media (max-width: 768px) {
    .pc-amount { font-size: 1.2rem; }
    .pc-amount-old { font-size: 0.88rem; }
    .pc-slogan { font-size: 0.74rem; max-width: 220px; }
}

.pc-image {
    width: 100%; aspect-ratio: 16 / 9;
    border-radius: 8px; overflow: hidden;
    margin-bottom: 12px; background: rgba(0,0,0,0.15);
}
.pc-image img { width: 100%; height: 100%; object-fit: cover; }
.pc-desc { font-size: 0.9rem; color: var(--card-muted); margin-bottom: 16px; line-height: 1.5; }
.pc-list { list-style: none; margin-bottom: 20px; flex-grow: 1; text-align: left; }
.pc-list li {
    font-size: 0.85rem; margin-bottom: 6px;
    padding-left: 16px; position: relative;
    color: rgba(255,255,255,0.9);
}
.pc-list li::before { content: "•"; color: var(--card-accent); position: absolute; left: 0; font-weight: bold; }
.pc-meta {
    font-size: 0.8rem; color: var(--card-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px; margin-bottom: 16px;
    display: flex; justify-content: space-between;
}
.pc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pc-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 10px; border-radius: 6px;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; text-align: center;
    transition: all 0.2s; text-decoration: none; gap: 8px;
}
.pc-btn-primary { background-color: var(--card-accent); color: #3e1b3f; }
.pc-btn-primary:hover { background-color: #fff; color: var(--card-bg); }
.pc-btn-outline { background-color: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.pc-btn-outline:hover { border-color: #fff; background-color: rgba(255,255,255,0.1); }

/* Contact bento */
#contact { background-color: #F5F5F7; padding: 60px 0; }
.contact-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 900px; margin: 40px auto 0;
}
.bento-box {
    background-color: #FFFFFF; border-radius: 24px; padding: 32px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    text-decoration: none; color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative; overflow: hidden;
    height: 100%; min-height: 20px;
}
.bento-box:hover { transform: scale(1.02); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.bento-full {
    grid-column: 1 / -1; flex-direction: row;
    justify-content: flex-start; text-align: left;
    padding: 32px 40px; gap: 24px;
}
.bento-icon {
    width: 48px; height: 48px;
    background-color: #F5F5F7; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.4rem;
    flex-shrink: 0; transition: var(--transition);
}
.bento-box:hover .bento-icon { background-color: var(--secondary); color: #fff; transform: rotate(-10deg); }
.bento-content { display: flex; flex-direction: column; }
.bento-label {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1.5px; font-weight: 600;
    color: var(--text-light); margin-bottom: 8px;
}
.bento-text { font-size: 1.25rem; font-weight: 600; color: var(--text-main); line-height: 1.3; }
.bento-subtext { font-size: 0.95rem; color: var(--primary); margin-top: 4px; font-weight: 500; }
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 16px; }
    .bento-full { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .bento-box { min-height: 180px; padding: 24px; }
    .hero-content h1 { font-size: 2.8rem; }
    .marquee-item { font-size: 0.9rem; padding: 0 15px; }
}

/* Footer */
footer { background-color: #111; color: #888; padding: 40px 0; }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.footer-slogan { font-style: italic; margin-bottom: 30px; color: var(--secondary); opacity: 0.8; }
.footer-nav { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #ccc; font-size: 0.85rem; text-transform: uppercase; transition: var(--transition); }
.footer-nav a:hover { color: var(--white); }
.copyright { font-size: 0.8rem; border-top: 1px solid #222; padding-top: 20px; width: 100%; text-align: center; color: #555; }

/* Workshop Info Banner */
.info-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #6B2D5C; padding: 8px 24px;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 8px;
}

/* Atölyeden Kayıtlar — Videolar */
#videos, .videos-section {
    background: linear-gradient(180deg, #FDFBF7 0%, #F5F5F7 100%);
    padding: 70px 0;
}
.videos-section.standalone {
    padding-top: 140px; /* fixed header offset */
    min-height: calc(100vh - 240px);
}
.videos-section .section-title, #videos .section-title { margin-bottom: 0.6rem; }
.videos-section .section-desc, #videos .section-desc { margin-bottom: 2.5rem; }

.videos-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px; max-width: 1100px; margin: 0 auto;
}
.video-card {
    background: #fff; border-radius: 18px; overflow: hidden;
    box-shadow: 0 6px 20px rgba(107, 45, 92, 0.06);
    border: 1px solid rgba(107, 45, 92, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; flex-direction: column;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(107, 45, 92, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}
.video-embed { position: relative; width: 100%; background: #000; overflow: hidden; }
.video-embed.aspect-16-9 { aspect-ratio: 16 / 9; }
.video-embed.aspect-9-16 { aspect-ratio: 9 / 16; max-height: 640px; }
.video-embed iframe, .video-embed > div > iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}
.video-embed > blockquote { margin: 0 !important; min-height: 540px; background: #fff !important; }
.video-meta { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.video-platform {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--primary); opacity: 0.7;
}
.video-platform.p-youtube   { color: #FF0033; }
.video-platform.p-instagram { color: #E1306C; }
.video-platform.p-tiktok    { color: #000; }
.video-platform.p-vimeo     { color: #1AB7EA; }
.video-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--primary); line-height: 1.3; }
.video-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.5; }
.video-open {
    margin-top: 8px; font-size: 0.8rem;
    color: var(--text-light); text-decoration: none;
    align-self: flex-start;
}
.video-open:hover { color: var(--primary); }
.video-open::after { content: ' ↗'; }

@media (max-width: 768px) {
    #videos, .videos-section { padding: 50px 0; }
    .videos-section.standalone { padding-top: 110px; }
    .videos-grid { grid-template-columns: 1fr; gap: 20px; }
    .video-embed.aspect-9-16 { max-height: none; aspect-ratio: 9 / 16; }
}

/* Google Review */
#google-review { background: linear-gradient(135deg, #FDFBF7 0%, #f3ece5 100%); padding: 50px 0; }
.review-card {
    max-width: 680px; margin: 0 auto;
    background: #FFFFFF; border-radius: 24px;
    padding: 40px 36px; text-align: center;
    box-shadow: 0 8px 30px rgba(107, 45, 92, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative; overflow: hidden;
}
.review-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}
.review-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 20px; }
.review-stars svg { width: 28px; height: 28px; fill: #FBBC04; filter: drop-shadow(0 1px 2px rgba(251, 188, 4, 0.3)); }
.review-card h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--primary); margin-bottom: 12px; font-weight: 700; }
.review-card p {
    color: var(--text-light); font-size: 1rem; line-height: 1.6;
    margin-bottom: 10px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.review-card .review-subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }
.btn-google-review {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 36px;
    background: var(--primary); color: var(--white);
    font-weight: 600; font-size: 0.95rem;
    border-radius: 99px; transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(107, 45, 92, 0.25);
    text-decoration: none; letter-spacing: 0.3px;
}
.btn-google-review:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 45, 92, 0.35);
}
.btn-google-review svg { width: 20px; height: 20px; flex-shrink: 0; }
.review-thanks { margin-top: 20px; font-size: 0.85rem; color: var(--secondary-dark); font-weight: 500; font-style: italic; }

@media (max-width: 768px) {
    .review-card { padding: 32px 24px; margin: 0 10px; }
    .review-card h3 { font-size: 1.35rem; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    #calendar h2 { font-size: 1.8rem; }
}
