/* assets/css/style.css */
:root {
    --bg-color: #F6D6DF;
    --text-color: #3A1A22;
    --surface-color: #FCE4EA;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .brand-logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--text-color);
    margin: 20px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-solid {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--text-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .is-visible {
        opacity: 1;
        transform: translate(0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(246, 214, 223, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    border-radius: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(246, 214, 223, 0.9), rgba(246, 214, 223, 0.9)), repeating-linear-gradient(45deg, #FCE4EA 0, #FCE4EA 1px, transparent 1px, transparent 40px);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 68px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About */
.about {
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--surface-color);
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
}

.stat-card:last-child {
    grid-column: 1 / -1;
}

.stat-number {
    font-size: 48px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

/* Services */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--bg-color);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid var(--surface-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.service-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 2px;
    font-weight: 500;
}

/* Gallery */
.gallery {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--surface-color);
    border-radius: 4px;
}

.gallery-item:nth-child(2n) {
    grid-row: span 2;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.placeholder-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: #888;
    font-size: 20px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Contact */
.contact {
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--surface-color);
    background-color: var(--bg-color);
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
    color: #fff;
}

.footer-desc {
    color: #aaa;
    font-size: 15px;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #fff;
    border-color: #fff;
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: #aaa;
    transition: fill 0.3s;
}

.social-icons a:hover svg {
    fill: var(--text-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 14px;
}

/* Konseptler Ek CSS */
.konseptler {
    background-color: var(--surface-color);
}

.konseptler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.konsept-card {
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.konsept-card:hover {
    transform: translateY(-8px);
}

.konsept-cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.konsept-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.konsept-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 10px;
}

.konsept-content p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
    flex-grow: 1;
}

.konsept-card .btn {
    align-self: center;
    margin-top: auto;
}

/* Çiçek Atölyesi Bölümü */
:root {
    --cicek-bg: #fcf9f9;
    --cicek-accent: #d8b4b8;
    --cicek-dark: #3a2e2f;
}

.cicek-hero {
    background-color: var(--cicek-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cicek-hero-content {
    padding-right: 40px;
}

.cicek-hero-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--cicek-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cicek-hero-content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    font-family: var(--font-body);
}

.cicek-hero-illustration {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cicek-hero-illustration svg {
    width: 80%;
    max-width: 400px;
    height: auto;
    opacity: 0.8;
}

.cicek-services {
    background-color: #fff;
}

.cicek-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cicek-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--cicek-accent);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cicek-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.cicek-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    fill: var(--cicek-accent);
}

.cicek-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--cicek-dark);
    margin-bottom: 15px;
}

.cicek-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cicek-features {
    background-color: var(--cicek-dark);
    color: #fff;
    padding: 60px 0;
}

.cicek-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.cicek-feature-item svg {
    width: 50px;
    height: 50px;
    fill: #fff;
    margin-bottom: 15px;
}

.cicek-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
}

.cicek-feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cicek-cta {
    background: linear-gradient(rgba(58, 46, 47, 0.85), rgba(58, 46, 47, 0.85)), url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cicek-cta h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 20px;
}

.cicek-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cicek-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 18px;
    transition: var(--transition);
    display: inline-block;
}

.btn-whatsapp:hover {
    background-color: #1ebd5a;
}

@media (max-width: 991px) {
    .hero h1 { font-size: 52px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text { text-align: center; }
    .services-grid, .gallery-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cicek-hero { flex-direction: column; text-align: center; }
    .cicek-hero-content { padding-right: 0; padding-bottom: 40px; }
    .cicek-hero-content h2 { font-size: 38px; }
    .cicek-hero-illustration { min-height: 300px; }
    .cicek-features-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .konseptler-grid { grid-template-columns: 1fr; }
    .hamburger { display: flex; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: rgba(246, 214, 223, 0.98);
        flex-direction: column; align-items: center; padding: 30px 0; gap: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        transform: translateY(-150%); opacity: 0; transition: var(--transition); z-index: -1;
    }
    .nav-links.active { transform: translateY(0); opacity: 1; }
    .hero h1 { font-size: 42px; }
    .services-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-grid { text-align: center; }
    .social-icons { justify-content: center; }
    .hero-btns { flex-direction: column; }
    .cicek-services-grid { grid-template-columns: 1fr; }
    .cicek-hero-content h2 { font-size: 32px; }
    .cicek-cta h2 { font-size: 28px; }
}

/* Glitter Animation */
.glitter-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999; overflow: hidden;
}

.sparkle {
    position: absolute; width: 3px; height: 3px; background-color: #fff;
    border-radius: 50%; box-shadow: 0 0 5px #fff, 0 0 10px #FFB6C1;
    opacity: 0; animation: twinkle linear infinite;
}

@keyframes twinkle {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.9; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* Logo Sizing */
.brand-logo img { height: 55px; width: auto; transition: height 0.3s ease; display: block; }
.navbar.scrolled .brand-logo img { height: 42px; }
.hero-logo { height: 180px; width: auto; margin-bottom: 20px; }
.footer-logo { height: 70px; width: auto; filter: invert(1) brightness(2); margin-bottom: 20px; display: block; }

@media (max-width: 768px) {
    .brand-logo img { height: 40px; }
    .navbar.scrolled .brand-logo img { height: 35px; }
    .hero-logo { height: 120px; }
    .footer-logo { height: 55px; }
}
