/* Inter Font Import (Premium Look) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* SoDo Sans benzeri fontu yükleme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
  --primary-green: rgb(0, 123, 78);
  --secondary-green: #234b46;
  --text-color: #000000;
  --light-green: #6daeb4;
  --footer-color:  rgb(255, 255, 255);
  --orange: #f7941d;
  --brown: #a3633e;
  --light-brown: #c58b50;
  --beige: #daaa91;
  --gray: #9b9c9d;
  --light-gray: #f7f7f6;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

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

html {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.015em;
  line-height: 1.6;
}


body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;

}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.container-fluid {
  width: 100%;
  padding: 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-green);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  font-size: 22px;
  color: var(--primary-green);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.header-icon:hover {
  color: var(--orange);
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.stores-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.stores-button:hover {
  background-color: #cfa053;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-green);
  cursor: pointer;
}

.mobile-menu-nav {
  padding: 20px 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 20px;
  color: var(--text-color);
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}

.mobile-menu-nav a:hover {
  background-color: var(--light-gray);
  color: var(--orange);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Slider */
.hero-slider {
  margin-top: 80px;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  text-align: center;
  color: var(--primary-green);
  z-index: 2;
}

.slide-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.slide-content p {
  font-size: 24px;
  font-weight: 400;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary-green);
  width: 30px;
  border-radius: 6px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  font-size: 14px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

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

/* Section Styles */
.section {
  padding: 80px 0;
}

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

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
}

/* Info Cards Grid */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.info-card {
  background-color: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.info-card:hover .info-card-image img {
  transform: scale(1.1);
}

.info-card-content {
  padding: 30px;
  text-align: center;
}

.info-card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.info-card-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Feature Section */
.feature-section {
  background-color: var(--light-gray);
  padding: 80px 0;
  position: relative;
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  border-radius: 15px;
}

.feature-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-text p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Grid Section */
.grid-section {
  padding: 80px 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.grid-item:hover img {
  transform: scale(1.1);
}

.grid-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
}

.grid-item-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.grid-item-overlay p {
  font-size: 16px;
  margin-top: 5px;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--primary-green);
  padding: 80px 0;
  color: var(--white);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  text-align: center;
  padding: 40px;
}

.testimonial-stars {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}

.stat-item h3 {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
}

/* Scrolling Banner */
.scrolling-banner {
  background-color: var(--orange);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.scrolling-content {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.scrolling-text {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.scrolling-text span {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* Form Section */
.form-section {
  background-color: var(--footer-color);
  padding: 80px 0;
  color: var(--white);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 50px;
  border-radius: 15px;
  color: var(--primary-green);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.form-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.btn-submit {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--orange);
}

.btn-reset {
  background-color: #dc3545;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-reset:hover {
  background-color: #c82333;
}

.contact-button {
  background-color: var(--white);
  color: var(--primary-green);
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.contact-button:hover {
  background-color: var(--orange);
  color: var(--white);
}

.social-icon {
  font-size: 24px;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--orange);
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 10px 15px;
  }

  .logo img {
    height: 40px;
  }

  .stores-button {
    
  }

  .hero-slider {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 18px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-content {
    grid-template-columns: 1fr;
  }

  .feature-text h2 {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-item h3 {
    font-size: 48px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .form-buttons {
    flex-direction: column;
  }

  .form-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 300px;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .feature-text h2 {
    font-size: 28px;
  }

  .grid-item {
    height: 250px;
  }
}

nav .mobile-menu-nav a,
nav  .desktop-nav a {
  color: black;           /* Yazı rengini siyah yapar */
  font-family: 'Inter', sans-serif; /* SoDo Sans benzeri font */
  text-decoration: none;  /* Altı çizgiyi kaldırmak için */
  font-weight: 500;       /* Orta kalınlık */
}


/* === Desktop Header Only (Visible ≥ 992px) === */
.desktop-header {
  display: none;
}

@media (min-width: 992px) {
  .desktop-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

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

  .slogan {

    color:#cfa053;
  }

  .desktop-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 18px;
    text-decoration: none;
  }

  .desktop-logo img {
    height: 45px;
    width: auto;
  }

  .desktop-nav {
    display: flex;
    gap: 35px;
  }

  .desktop-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    text-decoration: none;
    padding: 5px 0;
  }

  .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a.active::after {
    width: 100%;
  }

  .desktop-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .desktop-icon {
    font-size: 18px;
    color: var(--primary-green);
    background: none;
    border: none;
    cursor: pointer;
  }

  .desktop-icon:hover {
    color: var(--orange);
    transform: scale(1.1);
  }

  .desktop-stores-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .desktop-stores-button:hover {
    background: #cfa053;
    transform: translateY(-2px);
  }

  .moneroclub-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .moneroclub-button:hover {
    background: #000;
    transform: translateY(-2px);
  }
}

/* Mobil header sadece mobilde görünsün */
@media (min-width: 992px) {
  .header {
    display: none !important;
  }
}

/* Desktop header sadece desktopta görünsün */
@media (max-width: 991px) {
  .desktop-header {
    display: none !important;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: 75px;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 8s ease forwards;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 67, 63, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  z-index: 3;
}

.hero-slide-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-slide-text {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-slide-btn {
  display: inline-block;
}

/* Pagination */
.hero-slider-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-pagination-dot.active {
  background: var(--primary-green);
  border-color: white;
  transform: scale(1.2);
}

.hero-pagination-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Nav Arrows */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

.hero-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: all;
}

.hero-nav-btn:hover {
  background: var(--primary-green);
  transform: scale(1.1);
}

.hero-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-green);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.hero-nav-btn:hover svg {
  stroke: white;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-slider { height: 500px; margin-top: 70px; }
  .hero-slide-title { font-size: 2.5rem; }
  .hero-slide-text { font-size: 1.2rem; }
  .hero-nav-btn { width: 40px; height: 40px; }
  .hero-nav-btn svg { width: 20px; height: 20px; }
}

@media (max-width: 576px) {
  .hero-slider { height: 400px; margin-top: 65px; }
  .hero-slide-title { font-size: 1.75rem; }
  .hero-slide-text { font-size: 1rem; margin-bottom: 20px; }
  .hero-slider-nav { padding: 0 15px; }
  .hero-slider-pagination { bottom: 20px; }
  .hero-pagination-dot { width: 10px; height: 10px; }
}

/* Editorial Sections */
.editorial-section {
  padding: 90px 0;
  background: #fff;
}

.editorial-section.alt {
  background: #f7f7f7;
}

.editorial-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.editorial-container h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.editorial-container p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}


.um-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.um-section.dark {
  background: #111;
  color: #fff;
}

.um-section.light {
  background: #f6f6f6;
}

.um-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.um-text h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.um-text p {
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 22px;
}

.um-text .um-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.um-image {
  position: relative;
}

.um-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.25);
}

/* reverse layout */
.um-section.reverse .um-container {
  grid-template-columns: 1fr 1fr;
}

.um-section.reverse .um-text {
  order: 2;
}

.um-section.reverse .um-image {
  order: 1;
}

/* decorative element */
.um-deco {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  z-index: 0;
}

.um-section.dark .um-deco {
  background: rgba(255,255,255,0.05);
}

/* responsive */
@media(max-width: 992px) {
  .um-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .um-text h2 {
    font-size: 36px;
  }
}

<style>
/* === UNO MONERO EDITORIAL SECTIONS === */

.um-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.um-section.dark {
  background: #111;
  color: #fff;
}

.um-section.light {
  background: #f6f6f6;
}

.um-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.um-text h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.um-text p {
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 22px;
}

.um-text .um-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.um-image {
  position: relative;
}

.um-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.25);
}

/* reverse layout */
.um-section.reverse .um-container {
  grid-template-columns: 1fr 1fr;
}

.um-section.reverse .um-text {
  order: 2;
}

.um-section.reverse .um-image {
  order: 1;
}

/* decorative element */
.um-deco {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  z-index: 0;
}

.um-section.dark .um-deco {
  background: rgba(255,255,255,0.05);
}

/* responsive */
@media(max-width: 992px) {
  .um-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .um-text h2 {
    font-size: 36px;
  }
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 80vh; /* Video yüksekliğini burada kontrol edebilirsin (örneğin 60% viewport) */
  overflow: hidden;
}

.hero-slide video.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Taşmaları kesip düzgün görünüm sağlar */
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 20px;
}

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

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}

.menu-overlay.active {
  display: block;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: block;
  margin-left: auto;
}


/* GENEL ALAN */
.logo-marquee {
  background-color: #cfa053;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

/* KAYAN TRACK */
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* LOGO GRUBU */
.logo-group {
  display: flex;
}

/* TEK LOGO */
.logo-group img {
  height: 70px;
  width: auto;
  object-fit: contain;

  opacity: 0.55;          /* 👈 SİLİKLİK */
  margin: 0 4px;          /* 👈 SOL + SAĞ MİNİ BOŞLUK */
}


/* MOBİL */
@media (max-width: 768px) {
  .logo-group img {
    height: 50px;
  }
}

/* HOVER'DA DUR (İSTEĞE BAĞLI) */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* ANİMASYON */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

:root {
  --bg: #cfa053;
  --marquee-height-desktop: 60px; /* BURAYI DARALT */
  --marquee-height-mobile: 42px;
  --speed: 25s;
}

.logo-marquee {
  width: 100%;
  height: var(--marquee-height-desktop);
  background-color: var(--bg);

  background-image: url("../img/logo_white.png"); /* PNG LOGON */
  background-repeat: repeat-x;
  background-position: 0 center;

  /* LOGO YÜKSEKLİĞE GÖRE OTOMATİK KÜÇÜLÜR */
  background-size: auto 100%;

  animation: marquee var(--speed) linear infinite;
}

@media (max-width: 768px) {
  .logo-marquee {
    height: var(--marquee-height-mobile);
  }
}

@keyframes marquee {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1200px;
  }
}

.hover-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px; /* Opsiyonel */
}

/* ===============================
   UNO MONERO PREMIUM FOOTER
================================ */

.um-footer {
  background-color: #0f3824;
  color: #ffffff;
  padding-top: 80px;
  font-family: 'Inter', sans-serif;
}

.um-footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* BRAND */
.um-footer-brand img {
  width: 150px;
  margin-bottom: 25px;
}

.um-footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* COLUMNS */
.um-footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

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

.um-footer-col ul li {
  margin-bottom: 14px;
}

.um-footer-col ul li a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.25s ease;
}

.um-footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* BOTTOM */
.um-footer-bottom {
  margin-top: 70px;
  padding: 25px 20px;
  text-align: center;
  font-size: 13.5px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .um-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .um-footer-container {
    grid-template-columns: 1fr;
    padding: 0 25px;
  }

  .um-footer {
    padding-top: 60px;
  }
}
