/* 
 * Rams Hukuk & Danışmanlık - Premium Lüks Tasarım
 * Saf CSS (Vanilla CSS)
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Renk Paleti - Lüks Koyu Tema (Dark Mode default) */
  --color-bg-base: #0a0a0c;
  --color-bg-surface: #141416;
  --color-text-main: #f0f0f0;
  --color-text-muted: #a0a0a5;
  
  /* Lüks Vurgu Renkleri (Premium Gold / Blueish) */
  --color-accent: #c5a059; /* Altın sarısı/bronz detaylar */
  --color-accent-hover: #e0bb73;
  
  --color-glass-bg: rgba(20, 20, 22, 0.65);
  --color-glass-border: rgba(255, 255, 255, 0.08);

  /* Fontlar */
  --font-serif: 'Playfair Display', serif; /* Başlıklar için lüks his */
  --font-sans: 'Inter', sans-serif; /* Okunabilirlik için metinler */
  
  /* Animasyonlar */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--color-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Header & Navbar */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

header.site-header.scrolled {
    padding: 0.8rem 0;
    background: var(--color-glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg-base);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--color-accent);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Page Hero Header */
.page-hero {
    padding: 10rem 0 5rem 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.2), var(--color-bg-base)), url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?auto=format&fit=crop&q=80') center/cover;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.7); /* Koyu Overlay */
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Area */
.main-content {
    padding: 5rem 0;
    min-height: 50vh;
}

.content-box {
    padding: 3rem;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.content-box h2, .content-box h3 {
    color: var(--color-accent);
    margin: 2rem 0 1rem 0;
}

.content-box p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

/* Footer Element */
.site-footer {
    background: var(--color-bg-surface);
    border-top: 1px solid var(--color-glass-border);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.footer-col p, .footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-glass-border);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Scroll Animations Data Attributes */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-main);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Basitlik için gizli, JS ile toggle eklenebilir */
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}
