/*
Theme Name: SPORSHIKA
Theme URI: https://sporshika.com
Author: SPORSHIKA Team
Author URI: https://sporshika.com
Description: A high-converting landing page theme for marriage wellness ebook - balancing emotional safety with professional authority.
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: sporshika
Tags: landing-page, ebook, wellness, responsive, mobile-first

This theme, like WordPress, is licensed under the GPL.
*/

/* 
===========================================
SPORSHIKA - Marriage Wellness Ebook Theme
===========================================

Brand Colors (STRICT):
- Canvas/Background: #F4F1ED (Warm Parchment)
- Headings: #3E5A35 (Forest Green)
- Body Text: #3D3D3D (Deep Charcoal)
- CTA Buttons: #8C2F3E (Deep Burgundy)

Typography:
- Bangla: Hind Siliguri
- English Headings: Helvetica Now Condensed (Bold)
- English Body: Helvetica World (Regular)
*/

/* Basic Reset & Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root Variables */
:root {
  --color-canvas: #F4F1ED;
  --color-heading: #3E5A35;
  --color-body: #3D3D3D;
  --color-cta: #8C2F3E;
  --color-cta-text: #F4F1ED;
  --font-bangla: 'Hind Siliguri', sans-serif;
  --font-heading: 'Helvetica Now Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition: all 0.3s ease;
}

/* Global Styles */
body {
  font-family: var(--font-bangla);
  background-color: var(--color-canvas);
  color: var(--color-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: var(--font-bangla);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

a:hover {
  opacity: 0.8;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-cta);
  color: var(--color-cta-text);
  font-family: var(--font-bangla);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 12px rgba(140, 47, 62, 0.2);
}

.btn:hover {
  background-color: #732531;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(140, 47, 62, 0.3);
}

.btn:active {
  transform: translateY(0);
}

/* Sections */
section {
  padding: 4rem 0;
}

/* Responsive Typography */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  
  section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }