/* /* /* ==========================================================================
   TEMEL STİLLER ve GENEL AYARLAR
   ========================================================================== */

:root {
    --primary-color: #C5A46D;
    --primary-color-darker: #b39362;
    --secondary-color: #2c3e50;
    --accent-color-dark: #8C2E3E;
    --accent-color-red: #e74c3c;
    --dark-color: #1A1A1A;
    --text-color: #444;
    --light-color: #F5F5F5;
    --background-color: #E8E2D9;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --gecis: all 0.3s ease;
    --shadow-lux: 0 10px 30px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
    --glow-shadow-primary: 0 0 20px rgba(197, 164, 109, 0.5);
    --gecis-normal: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gecis-hizli: all 0.2s ease-out;
    --background-color-alt: #f8f9fa;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primary-color);
    color: white;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 2px;
}

a:not(.btn-primary):not(.btn-location):not(.map-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

a:hover::after {
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 1.5rem;
}

.container, .riva-container, .hakkimizda-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.hakkimizda, .pricing, .contact-container {
    background-color: var(--background-color-alt);
}

/* Animasyonlar */
@keyframes slideUpAndFlip {
    0% {
        opacity: 0;
        transform: translateY(100%) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes slow-pan {
    0% { transform: scale(1.05) translate(2%, 2%); }
    100% { transform: scale(1.2) translate(-2%, -2%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
}

.scroll-animate.in-view {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}  
/* temel-stiller.css */
@media (max-width: 576px) {
  body {
    font-size: 14px;
    padding-top: 70px;  /* Navbar yüksekliği */
  }
  .section-header h2 {
    font-size: 1.8rem !important;
    margin-bottom: 10px;
  }
  .btn-primary {
    padding: 10px 20px;
  }
}