/* Additional Luxury Font Styles for Rumi Konağı Website */

/* Main Fonts */
.cormorant {
  font-family: 'Cormorant Garamond', serif;
}

.playfair {
  font-family: 'Playfair Display', serif;
}

.raleway {
  font-family: 'Raleway', sans-serif;
}

/* Luxury Font Utilities */
.font-thin {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

/* Elegant Text Styles */
.elegant-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.luxury-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Stylish text decorations */
.gold-underline {
  position: relative;
  display: inline-block;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.fancy-first-letter::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--gold);
}

/* Text highlight effects */
.text-highlight {
  position: relative;
  display: inline-block;
}

.text-highlight::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(212, 175, 55, 0.2);
  z-index: -1;
}

/* Animated underline on hover */
.hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: all 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

/* Gold text gradient */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #c19b26 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Text shadow for depth */
.text-shadow-sm {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-md {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.text-shadow-lg {
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Small caps for elegance */
.small-caps {
  font-variant: small-caps;
}

/* Spacing utilities */
.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.letter-spacing-3 {
  letter-spacing: 3px;
}

/* Font size utilities for responsive design */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.text-8xl {
  font-size: 6rem;
}

@media (max-width: 768px) {
  .text-7xl {
    font-size: 3.5rem;
  }
  
  .text-6xl {
    font-size: 3rem;
  }
  
  .text-5xl {
    font-size: 2.5rem;
  }
}
