/* === Studio Chop - Professional Portfolio Design === */
/* Mobile-first CSS - Clean, sophisticated, modern design */

:root {
  --primary: #1e3a5f;
  --secondary: #2a5a8a;
  --accent: #4a90e2;
  --light: #ffffff;
  --medium: #f8f9fa;
  --dark: #333333;
  --text: #4a4a4a;
  --success: #28a745;
  --warning: #ffc107;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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


h1, h2, h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Clear all emojis from text */
h1::before, h2::before, h3::before,
p::before, a::before, span::before {
  content: none;
}

header, footer {
  font-family: 'Inter', sans-serif;
}

/* === Navigation - Professional Hamburger Menu === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: var(--transition);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  padding: 1rem 0;
}

.desktop-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
}

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

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  padding: 0.6rem 0;
  position: relative;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

/* Responsive Navigation Button */
.burger-menu {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
}

.burger-menu .burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 5px;
  transition: var(--transition);
  border-radius: 1px;
}

/* Mobile Navigation Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--light);
  box-shadow: 0 15px 40px rgba(28,58,95,0.12);
  z-index: 1000;
  padding: 2rem 0;
  border-top: 1px solid var(--medium);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  text-decoration: none;
  color: var(--dark);
  padding: 0.9rem 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color var(--transition);
  border-left: 3px solid transparent;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background-color: var(--medium);
  color: var(--primary);
  border-left-color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary, .btn-secondary {
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 95, 0.25);
}

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

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

/* === Hero Section - Modern Professional Design === */
.hero-section {
  padding: 12rem 0 6rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 1rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.no-obligation {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.hero-image {
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1.4);
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* === Services Section - Clean Grid === */
.services-highlights {
  padding: 5rem 0;
  background: var(--light);
}

.services-highlights h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1.3rem;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
}

.benefit-card {
  background: var(--medium);
  padding: 2.2rem;
  border-radius: 16px;
  text-align: center;
  max-width: 280px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Template Gallery - Sophisticated Layout === */
.template-gallery {
  padding: 5rem 0;
  background: #f1f5fa;
}

.template-gallery h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 3.5rem;
  padding: 0 1.5rem;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.template-card {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid rgba(30,58,95,0.06);
}

.template-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30,58,95,0.18);
}

.template-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.template-card-content {
  padding: 1.5rem;
}

.template-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.template-card p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

/* === Pricing Section - Premium Design === */
.pricing-section {
  padding: 5rem 0;
  background: var(--light);
}

.pricing-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 3.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.pricing-tier {
  background: var(--light);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--medium);
  transition: var(--transition);
  flex: 1;
}

.pricing-tier:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.18);
}

.tier-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tier-header h3 {
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.price {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 0.7rem 0;
}

.period {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.features-list {
  list-style: none;
  margin-bottom: 2.2rem;
}

.features-list li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding-left: 1.8rem;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 1.2rem;
}

.included-domain {
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.8rem;
  font-weight: 400;
}

/* === Footer - Professional Design === */
.site-footer {
  background: var(--primary);
  color: var(--light);
  padding: 3.5rem 0 1.5rem;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}

.footer-links a:hover {
  color: var(--light);
  background: rgba(255, 255, 255, 0.15);
}

.legal-notice {
  margin-bottom: 2rem;
}

.legal-notice p {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
}

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

/* === Responsive Design - Full Mobile Support === */
@media (min-width: 768px) {
  body {
    padding-top: 80px;
  }
  
  .desktop-nav {
    display: block;
  }
  
  .burger-menu {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
  
  .hero-section {
    padding: 15rem 0 8rem;
  }
  
  .hero-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  
  .hero-content {
    flex: 1;
    text-align: left;
    padding-left: 4rem;
  }
  
  .hero-image {
    flex: 1;
  }
  
  .services-highlights h2 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  
  .templates-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    gap: 2.5rem;
  }
  
  .pricing-grid {
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .container {
    padding: 0 2rem;
  }
}

/* === Clean Utility Classes === */
.text-center {
  text-align: center;
}

.py-xl {
  padding: 3rem 0;
}

.py-lg {
  padding: 2rem 0;
}

.full-width {
  width: 100%;
  max-width: none;
}

/* === Remove emoji content from all elements === */
body, h1, h2, h3, p, span, a, li, button, h4, h5, h6 {
  emoji: none;
}

/* Mobile menu toggle classes */
.mobile-menu.active {
  transform: translateY(0);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Remove any unwanted emoji characters from service content */
.service-description, .benefit-card p, .template-card p {
  font-style: normal;
  text-emphasis: none;
}

/* Professional typography refinements */
h1, h2, h3, h4 {
  letter-spacing: -0.01em;
  margin-top: 0;
}

/* Prevent any emojis in navigation */
nav a, .main-nav a, .mobile-menu a {
  text-emphasis: none;
  emoji: none;
}