:root {
    --primary-pink: #ff6b81;
    --secondary-pink: #fecfef;
    --soft-pink: #fff0f3;
    --dark-brown: #5d4037;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --shadow-soft: 0 10px 30px rgba(255, 107, 129, 0.1);
    --shadow-strong: 0 15px 35px rgba(255, 107, 129, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #fffafb;
    color: var(--dark-brown);
    scroll-behavior: smooth;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Avenir', 'Avenir Next', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-pink);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    min-width: 220px; /* SVG'nin 0x0 görünmesini engellemek için */
    object-fit: contain;
    display: block;
}

.footer-brand .logo img {
    max-height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.btn-nav {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.badge {
    background: var(--soft-pink);
    color: var(--primary-pink);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-family: 'Pacifico', cursive;
    margin: 0 0 20px 0;
    color: var(--primary-pink);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: #7d5a50;
}

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

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: var(--primary-pink);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 107, 129, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.btn-pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(255, 107, 129, 0.4); }
    100% { box-shadow: 0 0 0 20px rgba(255, 107, 129, 0); }
}

/* FAB Order Button */
.fab-order {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-pink);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 107, 129, 0.4);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.fab-order:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ff4757;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

/* Background Shapes */
.hero-shapes .shape {
    position: absolute;
    font-size: 5rem;
    opacity: 0.15;
    z-index: 1;
    animation: floatAnim 6s infinite ease-in-out;
}

.s1 { top: 20%; left: 10%; }
.s2 { bottom: 20%; right: 10%; animation-delay: 2s !important; }
.s3 { top: 40%; right: 15%; animation-delay: 4s !important; }

@keyframes floatAnim {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(10deg); }
}

/* Features */
.features {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

/* Section Common */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Avenir', 'Avenir Next', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--primary-pink);
}

/* Products */
.products { padding: 100px 0; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-pink);
    color: white;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-image {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Process Steps */
.process { background-color: var(--soft-pink); padding: 100px 0; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    padding: 40px;
    text-align: center;
    position: relative;
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* About Section */
.flex-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 300px; }
.about-visual {
    flex: 1;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-strong);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-visual:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials { padding: 100px 0; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-item { padding: 40px; text-align: center; }

.stars { color: #f1c40f; margin-bottom: 15px; }

/* Instagram */
.instagram-feed { padding: 100px 0; text-align: center; background: white; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.insta-item {
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: transform 0.3s;
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: #fffafb;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info i { color: var(--primary-pink); margin-right: 10px; }

/* Footer */
footer {
    background: white;
    padding: 80px 0 20px;
    border-top: 1px solid var(--soft-pink);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links a { text-decoration: none; color: #7d5a50; }

.social-icons { display: flex; gap: 20px; font-size: 1.1rem; }
.social-icons a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-icons a i { font-size: 1.5rem; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--soft-pink);
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar { top: 0; width: 100%; border-radius: 0; }
    .nav-links { display: none; }
    .hero { height: auto; padding: 120px 0 60px; }
    .hero-btns { flex-direction: column; }
    .contact-card { padding: 30px; }
}
