/* Component imports */
@import '../index/navbar.css';
@import '../index/carousel.css';
@import '../index/product-card.css';
@import '../index/modal.css';

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Global styles */
:root {
    /* Modern renk paleti */
    --primary-color: #b8b507;
    --primary-dark: #444400;
    --primary-light: #f6ff00;
    --secondary-color: #707a03;
    --accent-color: #ec4899;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --background-light: #f9fafb;
    --background-dark: #111827;
    --modal-background: #1f2937;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-speed: 0.3s;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

section {
    padding: 5rem 0;
}

.products-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--background-light) 100%);
}

.git:link {
    color: #10b981;
    background-color: transparent;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.git:visited {
    color: #10b981;
    background-color: transparent;
    text-decoration: none;
}

.git:hover {
    color: var(--primary-color);
    background-color: transparent;
    text-decoration: underline;
}

/* Modern WhatsApp Float Button */
.float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 30px -5px rgba(37, 211, 102, 0.3), 0 10px 10px -5px rgba(37, 211, 102, 0.2);
}

.my-float {
    margin: 0;
}