/*
Theme Name: Stok Entegratör
Theme URI: https://stokentegrator.com/
Author: Stok Entegratör Team
Description: Stok Entegratör custom marketing and presentation website theme. Built with Tailwind CSS and Manrope font.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stokentegrator
*/

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Custom Grid Background Pattern */
.bg-grid-pattern {
    background-size: 80px 80px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-position: center top;
}

/* Global Text Selection styling */
::selection {
    background-color: #ff6a00 !important;
    color: #ffffff !important;
}
::-moz-selection {
    background-color: #ff6a00 !important;
    color: #ffffff !important;
}

/* Glassmorphism card styles */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.02),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Rich Orange-Yellow Gradient Background Transition */
.hero-gradient-section {
    position: relative;
    background-color: #ffffff;
}

.hero-gradient-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        linear-gradient(180deg, #ffffff 0%, #ffffff 45%, rgba(255, 255, 255, 0) 80%),
        radial-gradient(circle at 15% 100%, rgba(255, 94, 58, 0.45) 0%, rgba(255, 146, 60, 0.15) 50%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(circle at 85% 100%, rgba(245, 158, 11, 0.4) 0%, rgba(251, 113, 133, 0.1) 50%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(254, 243, 199, 0.3) 100%);
    pointer-events: none;
}