/*
Theme Name: Aras Lazer
Theme URI: 
Author: Antigravity
Description: Profesyonel Güzellik ve Lazer Cihazları Teması
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aras-lazer
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;700&display=swap');

:root {
  /* Vibrant Beauty/Tech Palette */
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --primary: #ec4899; /* Vibrant Pink/Magenta */
  --primary-glow: rgba(236, 72, 153, 0.5);
  --secondary: #8b5cf6; /* Vibrant Purple */
  --accent: #06b6d4; /* Vibrant Cyan */

  --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-main);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
  color: white;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.1rem;
}

.main-nav a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 40%),
              radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.15), transparent 40%);
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Devices Section */
.devices-section {
  padding: 8rem 0;
  background-color: var(--bg-darker);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.device-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(236, 72, 153, 0.2);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.device-card::before,
.device-gallery::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: -1;
  border-radius: 26px;
  opacity: 0.4;
  filter: blur(15px);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.device-card:hover {
  transform: translateY(-10px);
}

.device-card:hover::before,
.device-gallery:hover::before {
  opacity: 0.7;
}

.device-gallery {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(236, 72, 153, 0.2) !important;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.device-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}

.device-card a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.device-card:hover img,
.device-card:hover .device-img {
  transform: scale(1.1);
}

.single-device-img {
  transition: transform 0.5s ease;
}

.device-gallery:hover .single-device-img {
  transform: scale(1.1);
}

.device-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
  color: white;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .device-detail-grid { grid-template-columns: 1fr !important; }
  
  /* Mobilde 2 ürün yan yana */
  .device-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem; 
  }
  
  /* Kart içi boşlukları ve metinleri dar ekrana göre küçült */
  .device-card {
    padding: 1rem;
    border-radius: 15px;
  }
  
  .device-card img {
    height: 150px;
    margin-bottom: 1rem;
  }
  
  .device-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .device-excerpt {
    font-size: 0.8rem !important;
    margin-bottom: 1rem !important;
  }
  
  .device-card .btn-primary {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .floating-whatsapp {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 25px;
    height: 25px;
  }
}
