/* wwwroot/css/site.css */
:root {
    --rima-primary: #003a78; /* Deep Corporate Blue */
    --rima-secondary: #00224b; /* Darker Blue */
    --rima-accent: #e53935; /* Red Accent */
    --rima-light: #f8f9fa;
    --rima-dark: #121212;
    --rima-gray: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Colors Utilities */
.text-primary { color: var(--rima-primary) !important; }
.bg-primary { background-color: var(--rima-primary) !important; }
.text-accent { color: var(--rima-accent) !important; }

/* Buttons */
.btn-primary {
    background-color: var(--rima-primary);
    border-color: var(--rima-primary);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--rima-secondary);
    border-color: var(--rima-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 58, 120, 0.3);
}

.btn-accent {
    background-color: var(--rima-accent);
    border-color: var(--rima-accent);
    color: white;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #c62828;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.top-bar {
    background-color: var(--rima-secondary);
    padding: 8px 0;
}
.site-header .navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}
.site-header .navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
/* Premium Nav Links */
.tracking-wide { letter-spacing: 0.5px; }
.text-shadow-sm { text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.nav-link {
    font-size: 0.85rem;
    position: relative;
    color: #4a5568 !important;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--rima-primary) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--rima-accent);
    transition: all 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}
.dropdown-fade {
    animation: fadeInDown 0.3s ease;
}
.dropdown-item {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: normal;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-item:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dropdown-item:hover .bg-light {
    background-color: var(--rima-primary) !important;
    color: #fff !important;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Utility */
.hover-opacity-100:hover { opacity: 1 !important; }
.transition { transition: all 0.3s ease; }

/* Hero Slider */
.hero-section {
    position: relative;
    background-color: #000;
}
.hero-slider {
    width: 100%;
    height: 80vh;
    min-height: 600px;
}
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #000;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 58, 120, 0.8), rgba(0, 0, 0, 0.4));
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 700;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--rima-accent);
}
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 0;
    transition: all 0.4s ease;
    background: #fff;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f4f6f9;
    padding: 2rem;
}
.product-img-wrapper img {
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

/* Counters */
.counter-box {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.counter-box:last-child {
    border-right: none;
}
.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rima-accent);
}

/* Footer */
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}
.hover-white:hover { color: #fff !important; }
/* Panelden düzenlenen zengin metin içerikleri */
.page-content { color: #6c757d; }
.page-content > :first-child { margin-top: 0; }
.page-content h2 { font-weight: 700; color: #212529; margin: 0 0 1.5rem; }
.page-content h3, .page-content h4 { font-weight: 700; color: #212529; margin: 2.5rem 0 1rem; }
.page-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.page-content img { max-width: 100%; height: auto; border-radius: 1rem; }
.page-content ul { list-style: none; padding-left: 0; }
.page-content ul li { position: relative; padding: .6rem 0 .6rem 2.2rem; }
.page-content ul li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: .55rem; color: var(--rima-accent); font-size: 1.15rem; }
.page-content table { width: 100%; margin-bottom: 1.5rem; border-collapse: collapse; }
.page-content table td, .page-content table th { border: 1px solid #dee2e6; padding: .6rem .8rem; }
.page-content blockquote { border-left: 4px solid var(--rima-primary); padding: .5rem 1.25rem; background: var(--rima-light); border-radius: 0 .5rem .5rem 0; }
.legal-content p { font-size: 1rem; }
.legal-content ul { list-style: disc; padding-left: 2rem; }
.legal-content ul li { padding: 0; }
.legal-content ul li::before { content: none; }
