/*
 * Theme Name: Social Media Girls - Kadence Child
 * Theme URI: https://yoursite.com
 * Description: Custom child theme for Social Media Girls landing page on Kadence
 * Author: Your Name
 * Author URI: https://yoursite.com
 * Template: kadence
 * 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: smg-kadence-child
 * Domain Path: /languages
 */

/* ===================================
   CSS Variables & Color Palette
   =================================== */
:root {
  --smg-orange: #F5A962;
  --smg-pink: #F5C8E8;
  --smg-light-pink: #FBE7F7;
  --smg-lime: #D9E81E;
  --smg-light-bg: #FFF5E8;
  --smg-text-dark: #1a1a1a;
  --smg-text-muted: #666;
  --smg-white: #ffffff;
  --smg-wave-bg: rgba(245, 169, 98, 0.15);
}

/* ===================================
   Global Styles
   =================================== */
* {
  box-sizing: border-box;
}

body.smg-landing {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--smg-text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */
.smg-landing h1,
.smg-landing h2,
.smg-landing h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.smg-landing h1 {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
}

.smg-landing h2 {
  font-size: 2rem;
  font-family: 'Georgia', serif;
}

.smg-landing p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--smg-text-muted);
}

/* ===================================
   HEADER / NAV BAR
   =================================== */
.smg-header {
  background: linear-gradient(135deg, #F5A962 0%, #FFB87A 100%);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.smg-header-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--smg-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.smg-header-button {
  background: var(--smg-lime);
  color: var(--smg-text-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.smg-header-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===================================
   HERO SECTION
   =================================== */
.smg-hero {
  background: var(--smg-light-pink);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smg-hero-title {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  color: var(--smg-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.smg-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.smg-hero-image {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smg-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  filter: grayscale(100%) contrast(1.1);
}

.smg-hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--smg-text-dark);
}

.smg-hero-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--smg-text-muted);
}

.smg-button-primary {
  background: var(--smg-pink);
  color: var(--smg-text-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.smg-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 169, 98, 0.3);
  background: #FDD5E8;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.smg-how-it-works {
  background: var(--smg-orange);
  padding: 4rem 2rem;
  text-align: center;
}

.smg-how-it-works h2 {
  font-size: 2.2rem;
  color: var(--smg-text-dark);
  margin-bottom: 3rem;
}

.smg-how-it-works h2 em {
  font-style: italic;
  font-weight: 400;
}

.smg-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.smg-step {
  background: var(--smg-pink);
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.smg-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.smg-step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.smg-step p {
  font-size: 0.95rem;
  color: var(--smg-text-dark);
  font-weight: 500;
  line-height: 1.6;
}

/* ===================================
   USP SECTION (We do one thing, really well)
   =================================== */
.smg-usp {
  background: linear-gradient(135deg, #D9E81E 0%, #E8F44D 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.smg-usp::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.smg-usp-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.smg-usp h2 {
  font-size: 2.2rem;
  color: var(--smg-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.smg-usp h2 em {
  font-style: italic;
  font-weight: 400;
}

.smg-usp p {
  font-size: 0.95rem;
  color: var(--smg-text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.smg-services {
  background: var(--smg-light-bg);
  padding: 4rem 2rem;
}

.smg-services-content {
  max-width: 1200px;
  margin: 0 auto;
}

.smg-services-title {
  text-align: center;
  margin-bottom: 3rem;
}

.smg-services-title h2 {
  font-size: 2.2rem;
  color: var(--smg-text-dark);
  margin-bottom: 1rem;
}

.smg-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.smg-service-item {
  background: var(--smg-white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--smg-orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.smg-service-item h3 {
  color: var(--smg-text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.smg-service-item p {
  font-size: 0.9rem;
  color: var(--smg-text-muted);
  line-height: 1.6;
}

/* ===================================
   MONTHLY SERVICES SECTION
   =================================== */
.smg-monthly-services {
  background: var(--smg-orange);
  padding: 4rem 2rem;
}

.smg-monthly-services h2 {
  font-size: 2.2rem;
  color: var(--smg-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.smg-monthly-services h2 em {
  font-style: italic;
  font-weight: 400;
}

.smg-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.smg-service-tag {
  background: var(--smg-pink);
  color: var(--smg-text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin: 0.5rem;
  border: 2px solid var(--smg-text-dark);
}

.smg-service-tag.alt {
  background: var(--smg-lime);
}

.smg-service-tag.alt2 {
  background: var(--smg-white);
  border-color: var(--smg-text-dark);
}

/* ===================================
   INDUSTRIES SECTION
   =================================== */
.smg-industries {
  background: var(--smg-white);
  padding: 4rem 2rem;
  text-align: center;
}

.smg-industries-content {
  max-width: 1200px;
  margin: 0 auto;
}

.smg-industries h2 {
  font-size: 2.2rem;
  color: var(--smg-text-dark);
  margin-bottom: 3rem;
}

.smg-industries h2 span {
  font-weight: 400;
  font-style: normal;
}

.smg-industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.smg-industry-tag {
  background: var(--smg-orange);
  color: var(--smg-text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--smg-text-dark);
  cursor: default;
  transition: all 0.3s ease;
}

.smg-industry-tag:nth-child(2) {
  background: var(--smg-pink);
}

.smg-industry-tag:nth-child(3) {
  background: var(--smg-white);
  border-color: var(--smg-text-dark);
}

.smg-industry-tag:nth-child(4) {
  background: var(--smg-lime);
}

.smg-industry-tag:nth-child(5) {
  background: var(--smg-lime);
}

.smg-industry-tag:nth-child(6) {
  background: var(--smg-white);
}

.smg-industry-tag:nth-child(7) {
  background: var(--smg-white);
}

.smg-industry-tag:nth-child(8) {
  background: var(--smg-pink);
}

.smg-industry-tag:nth-child(9) {
  background: var(--smg-pink);
}

.smg-industry-tag:nth-child(10) {
  background: var(--smg-white);
}

.smg-industry-tag:nth-child(11) {
  background: var(--smg-white);
}

.smg-industry-tag:nth-child(12) {
  background: var(--smg-pink);
}

.smg-add-button {
  background: var(--smg-lime);
  color: var(--smg-text-dark);
  border: 2px solid var(--smg-text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 2rem 0;
}

.smg-add-button:hover {
  background: #D9E81E;
  transform: translateY(-2px);
}

/* ===================================
   CTA SECTION (Let's do this already)
   =================================== */
.smg-cta {
  background: linear-gradient(135deg, #D9E81E 0%, #E8F44D 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smg-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.smg-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.smg-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.smg-cta h2 {
  font-size: 2.2rem;
  color: var(--smg-text-dark);
  margin-bottom: 1rem;
}

.smg-cta h2 em {
  font-style: italic;
  font-weight: 400;
}

.smg-cta p {
  font-size: 1rem;
  color: var(--smg-text-dark);
  margin-bottom: 2rem;
}

.smg-form-group {
  margin-bottom: 1rem;
}

.smg-form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--smg-text-dark);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--smg-white);
}

.smg-form-group input::placeholder {
  color: var(--smg-text-muted);
}

.smg-form-group input:focus {
  outline: none;
  border-color: var(--smg-orange);
  box-shadow: 0 0 0 3px rgba(245, 169, 98, 0.1);
}

.smg-form-submit {
  background: var(--smg-pink);
  color: var(--smg-text-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.smg-form-submit:hover {
  background: #FDD5E8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 169, 98, 0.3);
}

.smg-form-image {
  margin-top: 2rem;
  position: relative;
  height: 200px;
}

.smg-form-image img {
  max-width: 150px;
  height: auto;
}

/* ===================================
   FOOTER
   =================================== */
.smg-footer {
  background: var(--smg-pink);
  padding: 3rem 2rem;
  text-align: center;
}

.smg-footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--smg-text-dark);
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
}

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

.smg-footer-nav a {
  font-size: 0.85rem;
  color: var(--smg-text-dark);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.smg-footer-nav a:hover {
  color: var(--smg-orange);
}

.smg-footer-bottom {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--smg-text-muted);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  .smg-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .smg-hero-title {
    font-size: 1.8rem;
  }

  .smg-hero h2 {
    font-size: 1.5rem;
  }

  .smg-how-it-works h2,
  .smg-usp h2,
  .smg-monthly-services h2,
  .smg-industries h2,
  .smg-cta h2 {
    font-size: 1.8rem;
  }

  .smg-steps {
    grid-template-columns: 1fr;
  }

  .smg-hero,
  .smg-how-it-works,
  .smg-usp,
  .smg-services,
  .smg-monthly-services,
  .smg-industries,
  .smg-cta {
    padding: 2.5rem 1rem;
  }

  .smg-footer-nav {
    gap: 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .smg-hero-title {
    font-size: 1.5rem;
  }

  .smg-step {
    padding: 1.5rem;
  }

  .smg-header {
    padding: 1rem;
  }

  .smg-header-title {
    font-size: 0.7rem;
  }
}
