/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a2882;
    --secondary-color: #7f56d9;
    --text-color: #333;
    --light-text: #fff;
    --dark-gray: #666;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
    --deep-purple: #512C6D;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Main Background Wrapper */
.main-bg-wrapper {
    background-image: url('assets/main-background-frame.png');
    background-size: 100% 115%;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

/* New Hero Section */
.hero-new {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 56px; /* 200px - 80px header = 120px top padding, 56px bottom for slider gap */
}

.hero-new-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 62px;
    font-weight: 700; /* Bold */
    color: #1a1a1a;
    line-height: 150%;
    margin-bottom: 0;
}

.hero-title-italic {
    margin-bottom: 12px; /* Space to description */
}

.hero-subtitle {
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400; /* Roman */
    color: #444;
    margin-bottom: 56px; /* Space to buttons */
}

/* Store Buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 273px;
    height: 64px;
    padding: 0 24px;
    background-color: #fff;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.store-btn-apple {
    box-shadow: 4px 4px 24px 0 #EEDFFF;
}

.store-btn-android {
    box-shadow: 4px 4px 24px 0 #FFE4CF;
}

/* Fill animation background for store buttons */
.store-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 40px;
    transition: width 0.4s ease;
    z-index: 1;
}

.store-btn-apple::before {
    background: linear-gradient(135deg, #EEDFFF 0%, #E0D0F5 100%);
}

.store-btn-android::before {
    background: linear-gradient(135deg, #FFE4CF 0%, #FFD9BC 100%);
}

.store-btn:hover::before {
    width: 100%;
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-btn-apple:hover {
    box-shadow: 4px 8px 32px 0 #EEDFFF;
}

.store-btn-android:hover {
    box-shadow: 4px 8px 32px 0 #FFE4CF;
}

.store-btn i {
    font-size: 2rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.store-btn-small {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.store-btn-large {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.4s ease;
}

/* Soulmate Slider Section */
.soulmate-slider-section {
    padding: 0 0 80px;
    overflow: hidden;
    background: transparent;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 0px;
    animation: slideInfinite 40s linear infinite;
    width: max-content;
}

.slider-item {
    flex-shrink: 0;
    width: 190px;
    height: 242px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.slider-item:hover {
    transform: scale(1.1);
    z-index: 10;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* Pause animation on hover */
.slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Soulmate Vision Section */
.soulmate-vision-section {
    padding: 0px 20px;
    background: transparent;
    text-align: center;
}

.vision-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600; /* Semi-bold */
    color: #1a1a1a;
    margin-bottom: 16px;
}

.vision-subtitle {
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400; /* Roman */
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.vision-image {
    max-width: 800px;
    margin: 0 auto;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Meet Pixie Section */
.meet-pixie-section {
    padding: 80px 20px;
    background-color: #F5F3FF;
    text-align: center;
}

.pixie-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600; /* Semi-bold */
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pixie-subtitle {
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400; /* Roman */
    color: #555;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.pixie-image {
    max-width: 900px;
    margin: 0 auto;
}

.pixie-image img {
    width: 100%;
    height: auto;
}

/* Insights Section */
.insights-section {
    padding: 80px 20px;
    background-color: #FEF7F1;
    text-align: center;
}

.insights-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600; /* Semi-bold */
    
    color: #1a1a1a;
    margin-bottom: 16px;
}

.insights-subtitle {
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400; /* Roman */
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.insights-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1000px;
}

.insight-card {
    flex: 0 0 300px;
    max-width: 300px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.insight-card img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-card:hover {
    transform: rotateY(15deg) rotateX(5deg) scale(1.05);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Add floating animation on hover */
@keyframes cardFloat {
    0%, 100% {
        transform: rotateY(15deg) rotateX(5deg) scale(1.05) translateY(0);
    }
    50% {
        transform: rotateY(15deg) rotateX(5deg) scale(1.05) translateY(-10px);
    }
}

.insight-card:hover {
    animation: cardFloat 2s ease-in-out infinite;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Compatibility Section */
.compatibility-section {
    padding: 80px 20px;
    background-image: url('assets/compatibility-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #FEF9F5;
    text-align: center;
}

.compatibility-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600; /* Semi-bold */
    
    color: #1a1a1a;
    margin-bottom: 16px;
}

.compatibility-subtitle {
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400; /* Roman */
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.compatibility-phone {
    max-width: 600px;
    margin: 0 auto;
    animation: phoneBounce 3s ease-in-out infinite;
}

.compatibility-phone img {
    width: 100%;
    height: auto;
}

@keyframes phoneBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-image: url('assets/comment-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.testimonials-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600; /* Semi-bold */
    
    color: #1a1a1a;
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400; /* Roman */
    color: #555;
    max-width: 500px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-card-wide {
    grid-column: span 3;
    width: 100%;
}

/* Hover Effects for Testimonial Cards */
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(81, 44, 109, 0.2);
    z-index: 10;
}

/* Add glow effect on hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Staggered animation on hover for different cards */
.testimonial-card:nth-child(1):hover {
    transform: translateY(-12px) rotate(-1deg) scale(1.03);
}

.testimonial-card:nth-child(2):hover {
    transform: translateY(-15px) scale(1.04);
}

.testimonial-card:nth-child(3):hover {
    transform: translateY(-12px) rotate(1deg) scale(1.03);
}

.testimonial-card:nth-child(4):hover {
    transform: translateY(-8px) scale(1.02);
}

/* Begin Journey Section */
.begin-journey-section {
    padding: 100px 20px;
    background-image: url('assets/begin-journey-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.journey-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600; /* Semi-bold */
    color: #1a1a1a;
    margin-bottom: 16px;
}

.journey-subtitle {
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400; /* Roman */
    color: #555;
    max-width: 500px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.journey-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.journey-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 273px;
    height: 64px;
    padding: 0 24px;
    background-color: #fff;
    border-radius: 40px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.journey-btn-apple {
    box-shadow: 4px 4px 24px 0 #EEDFFF;
}

.journey-btn-android {
    box-shadow: 4px 4px 24px 0 #FFE4CF;
}

.journey-btn i {
    font-size: 2rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.journey-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.journey-btn-small {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.journey-btn-large {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.4s ease;
}

/* Fill animation background */
.journey-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 40px;
    transition: width 0.4s ease;
    z-index: 1;
}

.journey-btn-apple::before {
    background: linear-gradient(135deg, #EEDFFF 0%, #E0D0F5 100%);
}

.journey-btn-android::before {
    background: linear-gradient(135deg, #FFE4CF 0%, #FFD9BC 100%);
}

.journey-btn:hover::before {
    width: 100%;
}

.journey-btn:hover {
    transform: translateY(-3px);
}

.journey-btn-apple:hover {
    box-shadow: 4px 8px 32px 0 #EEDFFF;
}

.journey-btn-android:hover {
    box-shadow: 4px 8px 32px 0 #FFE4CF;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .vision-title {
        font-size: 2.2rem;
    }
    
    .pixie-title {
        font-size: 2.2rem;
    }
    
    .insights-title {
        font-size: 2.2rem;
    }
    
    .compatibility-title {
        font-size: 2.2rem;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .journey-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 40px 20px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 280px;
        height: 58px;
        justify-content: center;
    }
    
    .slider-item {
        width: 154px;
        height: 182px;
    }
    
    .slider-track {
        gap: 12px;
    }
    
    .vision-title {
        font-size: 1.8rem;
    }
    
    .vision-subtitle {
        font-size: 0.9rem;
    }
    
    .pixie-title {
        font-size: 1.8rem;
    }
    
    .pixie-subtitle {
        font-size: 0.9rem;
    }
    
    .meet-pixie-section {
        padding: 50px 20px;
    }
    
    .insights-section {
        padding: 50px 20px;
    }
    
    .insights-title {
        font-size: 1.8rem;
    }
    
    .insights-subtitle {
        font-size: 0.9rem;
    }
    
    .insight-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
    
    .compatibility-section {
        padding: 50px 20px;
    }
    
    .compatibility-title {
        font-size: 1.8rem;
    }
    
    .compatibility-subtitle {
        font-size: 0.9rem;
    }
    
    .compatibility-phone {
        max-width: 450px;
    }
    
    .testimonials-section {
        padding: 50px 20px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card-wide {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .begin-journey-section {
        padding: 60px 20px;
    }
    
    .journey-title {
        font-size: 1.8rem;
    }
    
    .journey-subtitle {
        font-size: 0.9rem;
    }
    
    .journey-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .journey-btn {
        width: 100%;
        max-width: 280px;
        height: 58px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        margin-bottom: 32px;
    }
    
    .slider-item {
        width: 120px;
        height: 142px;
    }
    
    .slider-track {
        gap: 12px;
    }
    
    .insight-card {
        flex: 0 0 100%;
        max-width: 280px;
    }
    
    .insights-cards {
        gap: 20px;
    }
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Header Styles - Updated */
header {
  height: 80px; /* Sabit yükseklik */
  background-color: transparent;
  position: relative;
  z-index: 1000;
}

nav {
  margin-left: auto;
}

header .container {
  /* height: 100%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 30px; */
}

/* Logo Styles - Updated */
.logo {

}

.logo img {
  
  
}
  nav ul {
    display: flex;
    margin: 0;
    padding-right: 20px; /* Add consistent padding on the right */
  }

  nav ul li {
    margin-left: 25px;
  }

  nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: color 0.3s;
  }

  nav ul li a:hover {
    color: #663399;
  }

  nav ul li a.nav-btn {
    background-color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
  }

  nav ul li a.nav-btn:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #1a1a1a;
  }

  .mobile-menu-btn {
    display: none !important;
  }

/* Mobile Navigation */
@media (max-width: 768px) {
    header .container {
      /* padding: 15px 20px; */
    }

    nav {
      position: static;
      width: auto;
      height: auto;
      background-color: transparent;
      box-shadow: none;
      padding-top: 0;
    }

    nav ul {
      flex-direction: row;
      margin: 0;
      padding: 0;
      gap: 12px;
    }

    nav ul li {
      margin: 0;
      padding: 0;
      border-bottom: none;
    }

    /* Hide About Us link on mobile (for pages with Get the app) */
    nav ul li a:not(.nav-btn):not(.get-the-app-btn) {
      display: none;
    }

    /* Show Get the app button on mobile */
    nav ul li a.nav-btn,
    nav ul li a.get-the-app-btn {
      display: flex;
      padding: 10px 16px;
      font-size: 12px;
    }

    .mobile-menu-close,
    .mobile-menu-overlay {
      display: none !important;
    }

    /* Index page - show About Us, no Get the app button */
    body.index-page nav ul li a:not(.nav-btn) {
      display: inline-block;
      font-size: 14px;
    }
  }



  .hero {
    background-image: url('assets/easystars-header3.jpg');
    background-size: cover;
    background-position: center;
    height: 72vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 90%;
    width: 100%;
    z-index: 2;
  }


  .hero h2 {
    font-size: 2rem;
    font-weight: 400;
    /* margin-bottom: 10px; */
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 5rem;
    font-weight: 700;
    /* margin-bottom: 40px; */
    white-space: nowrap;
  }

  .hero h1 span {
    
  }

  .download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
  }

  .download-button {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }

  .btn-apple, .btn-android {
    background-color: #3f237e;
    color: white;
  }

  .btn-apple:hover, .btn-android:hover {
    background-color: #5a2d8a;
    transform: translateY(-3px);
  }

  .qr-code {
    width: 150px;
    height: 150px;
    background-color: transparent;
    padding: 8px;
    border-radius: 5px;
  }


@media (max-width: 1200px) {
    .hero h1 {
      font-size: 4rem;
    }

    .hero h2 {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 992px) {
    .hero h1 {
      font-size: 3rem;
      white-space: normal;
    }

    .hero h2 {
      font-size: 1.4rem;
      white-space: normal;
    }
  }
  @media (max-width: 768px) {
    .hero {
      height: auto;
      padding: 40px 0;
    }

    .hero h1 {
      font-size: 2.5rem;
    }

    .hero h2 {
      font-size: 1.2rem;
    }

    .download-options {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .download-button {
      width: 100%;
      max-width: 250px;
    }

    .qr-code {
      width: 120px;
      height: 120px;
    }
  }

  @media (max-width: 576px) {
    .hero {
      height: auto;
      padding: 20px;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero h2 {
      font-size: 1rem;
    }
    .download-options {
      flex-direction: column;
  }
  }

  /* App Features Section */

.app-features {
    padding: 50px 0px 0px 120px;
    background-color: #fff;
  }

  .app-features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
  }

  .feature-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .left-image {
    flex: 0 0 30%;
  }

  .left-image img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .center-content {
    margin-top: 100px;
    text-align: center;
    padding: 0 0px;
  }

  .feature-text {
    font-size: 1.4rem;
    color: #512C6D;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
  }

  .right-image {
    flex: 0 0 45%;
  }

  .right-image img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .btn-primary {
    background-color: #3F237E;
    color: white;
    padding: 12px 14px 12px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
  }

  .btn-primary:hover {
    background-color: #5a2d8a;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .feature-content {
      flex-direction: column;
      align-items: center;
    }

    .left-image, .center-content, .right-image {
      flex: 0 0 100%;
      margin-bottom: 20px;
    }

    .left-image img, .right-image img {
      max-width: 90%;
      margin: 0 auto;
    }

    .center-content {
      padding: 15px 0;
    }
  }

  @media (max-width: 768px) {
    .app-features {
      padding: 30px 0;
    }

    .feature-text {
      font-size: 1.3rem;
    }
  }
/* Welcome Section */
.welcome-section {
    padding: 80px 120px;
    background-color: #fff;
    display: flex;
    justify-content: center;
  }

  .welcome-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }

  .welcome-text {
    flex: 0 0 45%;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
  }

  .welcome-title {
    font-size: 20px;
    color: #512C6D;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    padding-right: 60px;
    padding-left: 60px;

  }

  .welcome-title span {
    
  }

  .welcome-description {
    font-size: 18px;
    color: #512C6D;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
  }

  .welcome-image {
    flex: 0 0 50%;
    position: relative;
  }

  .welcome-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
  }


  .welcome-text .btn {
    margin: 20px auto;
    display: block;
    max-width: fit-content;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .welcome-content {
      flex-direction: column-reverse;
    }

    .welcome-text, .welcome-image {
      flex: 0 0 100%;
      padding-right: 0;
    }

    .welcome-title {
      font-size: 2rem;
      text-align: center;
    }

    .welcome-description {
      text-align: center;
    }

    .welcome-text .btn {
      display: block;
      margin: 0 auto;
      max-width: 200px;
    }
  }

  @media (max-width: 768px) {
    .welcome-section {
      padding: 50px 0;
    }

    .welcome-title {
      font-size: 1.8rem;
    }
  }


  /* Footer Styles */
  .site-footer {
    position: relative;
    padding: 88px 60px 40px;
    background-color: #FEF7F1;
    min-height: 300px;
  }

  /* Gradient line at top - 88px from footer start */
  .site-footer::before {
    content: '';
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      #FEF7F1 0%, 
      #FCE6D4 25%, 
      #FBD4B7 50%, 
      #FDEBDD 83%, 
      #FEF7F1 100%
    );
  }

  .footer-content {
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
  }

  .footer-links {
    display: flex;
    justify-content: flex-start;
    gap: 126px;
    margin-bottom: 0px;
    width: 100%;
    padding-left: 40px;
  }

  .footer-column h3 {
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 150%;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    color: #1a1a1a;
    font-family: 'Avenir', 'Poppins', sans-serif;
    margin-bottom: 8px;
  }

  .footer-column ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400; /* Roman */
    font-family: 'Avenir', 'Poppins', sans-serif;
    line-height: 150%;
    transition: opacity 0.3s ease;
  }

  .footer-column ul li a:hover {
    opacity: 0.7;
  }

  .social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }

  .social-links li a {
    color: #1a1a1a;
  }

  .social-links li a i {
    font-size: 22px;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
  }

  .social-links li a:hover i {
    opacity: 0.7;
  }

  .footer-column .easyhistory-link {
    color: #1a1a1a;
    font-family: 'Avenir', 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400; /* Roman */
    line-height: 150%;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .footer-column .easyhistory-link:hover {
    opacity: 0.7;
  }

  .footer-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 300px;
  }

  .footer-banner img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Footer Responsive İyileştirmeler */
@media (max-width: 1200px) {
    .footer-links {
      gap: 80px;
    }
  }

@media (max-width: 992px) {
    .site-footer {
      padding: 60px 30px 40px;
    }

    .site-footer::before {
      top: 60px;
    }

    .footer-content {
      padding-top: 30px;
    }

    .footer-links {
      flex-wrap: wrap;
      gap: 50px;
      padding-left: 0;
      justify-content: center;
    }

    .footer-column {
      flex: 0 0 45%;
    }

    .footer-column h3 {
      font-size: 22px;
    }

    .footer-column ul li a {
      font-size: 16px;
    }

    .footer-column .easyhistory-link {
      font-size: 16px;
    }

    .footer-banner {
      position: relative;
      margin-top: 40px;
    }
  }

  @media (max-width: 768px) {
    .site-footer {
      padding: 50px 20px 30px;
    }

    .site-footer::before {
      top: 50px;
    }

    .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
    }

    .footer-column {
      width: 100%;
      flex: none;
    }

    .footer-column h3 {
      font-size: 20px;
    }

    .footer-column ul li a {
      font-size: 15px;
    }

    .social-links {
      justify-content: center;
    }

    .footer-banner {
      margin: 30px auto 0;
      text-align: center;
    }

    .footer-banner img {
      max-width: 220px;
    }
  }

  @media (max-width: 576px) {
    .footer-links {
      gap: 25px;
    }

    .footer-column h3 {
      font-size: 18px;
    }

    .footer-column ul li a {
      font-size: 14px;
    }

    .footer-column .easyhistory-link {
      font-size: 14px;
    }

    .footer-banner img {
      max-width: 200px;
    }
  }
  @media (max-width: 768px) {
    .download-options {
      flex-direction: column !important;
    }

    .download-button {
      margin-bottom: 10px !important;
    }
  }

  @media (max-width: 576px) {
    .footer-links {
      flex-direction: column !important;
      align-items: center !important;
    }

    .footer-column {
      width: 100% !important;
      text-align: center !important;
    }
  }
