/*
Theme Name: LeadLab
Theme URI: https://leadlab.lt
Author: Bluejuice
Author URI: https://bluejuice.lt
Description: Lengva WordPress tema su ACF Pro palaikymu. Kūrybinė verslo laboratorija.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leadlab
*/

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #fff6db 0%, #fff 60%, #fef7e0 100%);
  color: #222;
  overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .logo img {
  height: 55px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #f9b000;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.bar {
  height: 3px;
  width: 25px;
  background: #111;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 75px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
    padding: 1rem 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 60% 40%, #ffe57e 0%, #fff 70%);
  color: #111;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  max-width: 800px;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #333;
  max-width: 600px;
}

.cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta a {
  background: #f9b000;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(249,176,0,0.3);
  transition: all 0.3s ease;
}

.cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249,176,0,0.4);
}

.cta a.secondary {
  background: #0a1128;
}

.cta a.secondary:hover {
  box-shadow: 0 8px 25px rgba(10,17,40,0.4);
}

/* Sections */
section {
  padding: 5rem 10%;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #0a1128;
}

/* About Section */
.about-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #333;
  line-height: 1.8;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
  color: #f9b000;
  margin-bottom: 1rem;
}

.service-card p {
  color: #333;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: #fff8da;
  text-align: center;
  padding: 3rem 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.contact a {
  color: #f9b000;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  background: #0a1128;
  color: white;
  padding: 2rem 1rem;
}

footer a {
  color: #ffe600;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Page Template */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  min-height: 60vh;
}

.page-content h1 {
  font-size: 2.5rem;
  color: #0a1128;
  margin-bottom: 2rem;
}

.page-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 5%;
  }

  h2 {
    font-size: 1.5rem;
  }
}
