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

:root {
  /* The 5 Core Brand Colors */
  --color-primary: #1F2937; /* Deep Charcoal - Headers/Dark Elements */
  --color-secondary: #869D96; /* Muted Sage - Secondary Backgrounds/Accents */
  --color-accent: #D4AF37; /* Premium Gold - Buttons, Highlights */
  --color-light: #F8F9FA; /* Off-White - Main Background */
  --color-dark: #0D1117; /* Rich Black - Text on light, deep contrast */

  /* Derived Utility Colors (Optional, but based on the 5 cores) */
  --color-text-main: var(--color-dark);
  --color-text-light: var(--color-light);
  --color-text-muted: #6b7280;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
}

/* Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-premium:hover {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.btn-outline-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline-premium:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  box-shadow: var(--shadow-sm);
}

/* Animations & Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

.dark-glass-panel {
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  color: var(--color-light);
}

/* Custom Utilities */
.text-accent { color: var(--color-accent) !important; }
.bg-primary-custom { background-color: var(--color-primary) !important; }
.bg-secondary-custom { background-color: var(--color-secondary) !important; }
.bg-dark-custom { background-color: var(--color-dark) !important; }

/* Timeline (Sipariş Takip vb.) */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--color-secondary);
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: 4px solid var(--color-light);
}

/* Skeleton Loading Animation */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.skeleton {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 1000px 100%; 
  display: inline-block;
  position: relative; 
  animation-duration: 2s;
  animation-fill-mode: forwards; 
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
  border-radius: 4px;
}

/* Modern Overline for Headings */
.modern-overline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Modern Gallery Cards */
.gallery-card-modern {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.gallery-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.gallery-card-modern:hover img {
    transform: scale(1.08);
}
.gallery-overlay-modern {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(13,17,23,0.9) 0%, transparent 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.gallery-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.75rem;
    margin: 0;
}
.gallery-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

/* Blurred Modal Backdrop */
.modal-backdrop {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(13, 17, 23, 0.7) !important;
}
.modal-backdrop.show {
    opacity: 1 !important;
}