/* Kör Eşleşme - Modern Matching App Website */
:root {
  --primary: #FF2162;
  --primary-dark: #E5394C;
  --secondary: #FF5184;
  --gradient-1: linear-gradient(45deg, #FF2162, #FF5184);
  --gradient-2: linear-gradient(45deg, #FF2162, #FF5184);
  --background: #ffffff;
  --card-bg: #ffffff;
  --text-primary: #424242;
  --text-secondary: #737373;
  --text-light: #ADADAD;
  --border-radius: 8px;
  --button-radius: 50px;
  --card-radius: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  font-family: var(--font-family);
  border: none;
  outline: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Add inner page header styling */
.inner-page .header {
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.inner-page .nav-menu a,
.inner-page .logo,
.inner-page .mobile-toggle {
  color: var(--text-primary);
}

.inner-page .nav-menu a::after {
  background: var(--primary);
}

.header.scrolled {
  background: rgba(255, 33, 98, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}

.logo.scrolled {
  color: white;
}

.logo img {
  height: 36px;
  margin-right: 12px;
}

.nav-menu {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu.scrolled a {
  color: white;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: #fff;
  font-size: 24px;
}

.mobile-toggle.scrolled {
  color: white;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 60px 20px 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Kapatma düğmesi için stil */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
  z-index: 1002;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: white;
  color: var(--primary) !important;
  font-weight: 600;
  border-radius: var(--button-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
  white-space: nowrap;
}

.cta-button:hover {
  /* Removed hover effects */
}

/* Fix for navbar CTA button */
.nav-menu .cta-button {
  margin-left: 10px;
  padding: 10px 25px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('assets/images/pattern.png');
  opacity: 0.1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 650px;
  color: white;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 90%;
}

.hero-image {
  flex: 1;
  max-width: 300px;
  position: relative;
}

.hero-image img {
  width: 100%;
  transform: perspective(1000px) rotateY(-15deg);
  border-radius: 30px;
}

.store-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  border-radius: var(--button-radius);
  padding: 12px 24px;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  min-width: 160px;
}

.store-button:hover {
  /* Removed hover effects */
}

.store-button img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

/* Features Section */
.features {
  padding: 120px 0;
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-top: 80px;
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 50px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  /* Removed hover effects */
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 33, 98, 0.1), rgba(255, 81, 132, 0.1));
  color: var(--primary);
}

.feature-title {
  font-size: 1.7rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* How It Works */
.how-it-works {
  padding: 120px 0;
  background: #f9f9f9;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
  gap: 40px;
}

.step {
  flex: 1;
  min-width: 350px;
  text-align: center;
  padding: 0 30px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 24px;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.step-text {
  color: var(--text-secondary);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: #eee;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: var(--background);
}

.testimonial-slider {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.testimonial-card {
  flex: 1;
  min-width: 350px;
  max-width: 400px;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  /* Removed hover effects */
}

.testimonial-content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta .store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 500px;
  flex-wrap: wrap;
}

/* Footer Section */
.footer {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  padding: 40px 0 20px;
  color: white;
}

/* Remove or comment out the conflicting footer styles */
/* 
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
}

.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-logo {
  margin-bottom: 15px;
  max-width: 100px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}
*/

/* Simple Footer Styles - Updated to be stronger and apply to all pages */
.simple-footer {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 20px 0 !important;
  gap: 10px !important;
}

.simple-footer a {
  color: #fff !important;
  text-decoration: none !important;
  margin: 5px 0 !important;
  font-size: 1rem !important;
  transition: color 0.3s !important;
  display: block !important;
}

.simple-footer a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.simple-footer p {
  margin-top: 15px !important;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto 60px;
  }
  
  .hero .container {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-image {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .store-buttons {
    justify-content: center;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .features, .how-it-works, .testimonials {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .step {
    margin-bottom: 40px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .bottom-footer {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .store-buttons {
    flex-direction: column;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

.cta-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px auto 0;
  max-width: 500px;
  flex-wrap: wrap;
}

.cta-buttons-container .store-button {
  min-width: 180px;
  padding: 14px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: white;
  border: none;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
  text-align: left;
}

.cta-buttons-container .store-button:hover {
  /* Removed hover effects */
}

.cta-buttons-container .store-button img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.mobile-menu a:hover {
  /* Keep color but remove other effects */
  color: var(--primary);
}

.testimonial-card:hover {
  /* Removed hover effects */
}

.screenshot-item:hover {
  /* Removed hover effects */
}

.stat-item:hover {
  /* Removed hover effects */
}

.step:hover {
  /* Nothing to hover */
}

.screenshots-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.screenshot-item {
  width: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  transform: perspective(1000px) rotateY(5deg);
}

.screenshot-item:nth-child(2) {
  z-index: 2;
  transform: scale(1.05) perspective(1000px) rotateY(0);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
} 