/*
Theme Name: Tatva Clothing
Theme URI: https://tatvaclothing.store
Description: Premium ecommerce theme for Tatva Clothing Brand
Version: 1.0.0
Author: Tatva
Author URI: https://tatvaclothing.store
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tatva-clothing
Domain Path: /languages
*/

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

:root {
  --primary-orange: #FF6B35;
  --white: #FFFFFF;
  --dark-text: #1a1a1a;
  --light-gray: #f5f5f5;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: left;
}

p {
  text-align: left;
}

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

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header/Navigation */
header {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.site-branding h1 {
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--dark-text);
  font-weight: 500;
}

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

/* Main Content */
main {
  min-height: calc(100vh - 200px);
}

.page-content {
  padding: 40px 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 60px 20px;
}

.hero .container {
  width: 100%;
}

.hero h1 {
  font-size: 4rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: left;
}

.hero p {
  font-size: 1.3rem;
  color: var(--dark-text);
  margin-bottom: 40px;
  max-width: 600px;
  text-align: left;
}

.cta-button {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-orange);
  cursor: pointer;
}

.cta-button:hover {
  background: var(--white);
  color: var(--primary-orange);
}

/* Products Section */
.products-section {
  padding: 80px 20px;
  background: var(--white);
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-text);
  text-align: left;
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.product-info {
  padding: 20px;
  text-align: left;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.product-price {
  font-size: 1.5rem;
  color: var(--primary-orange);
  font-weight: 700;
  margin-bottom: 15px;
}

.product-button {
  width: 100%;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.product-button:hover {
  background: #ff5a1f;
}

/* Brand Story Section */
.brand-story {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.story-content {
  max-width: 100%;
  text-align: left;
}

.story-content h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 30px;
}

.story-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left;
}

/* Email Signup */
.email-signup {
  padding: 60px 20px;
  background: var(--primary-orange);
  color: var(--white);
}

.email-signup .container {
  text-align: left;
}

.email-signup h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
  text-align: left;
}

.email-signup p {
  color: var(--white);
  text-align: left;
}

.email-form {
  max-width: 500px;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.email-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.email-form button {
  padding: 12px 30px;
  background: var(--white);
  color: var(--primary-orange);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.email-form button:hover {
  background: var(--light-gray);
}

/* Contact Page */
.contact-section {
  padding: 60px 20px;
}

.contact-content {
  max-width: 100%;
  text-align: left;
}

.contact-form {
  margin: 40px 0;
  max-width: 600px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-info-item {
  text-align: left;
}

.contact-info-item h3 {
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.contact-info-item p {
  color: #666;
}

.contact-info-item a {
  display: block;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff5a1f;
  transform: translateY(-3px);
}

/* About Page */
.about-section {
  padding: 60px 20px;
}

.about-content {
  max-width: 100%;
  text-align: left;
}

.about-content h1 {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 30px;
}

.about-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.value-item {
  padding: 30px;
  background: var(--light-gray);
  border-radius: 8px;
  text-align: left;
}

.value-item h3 {
  color: var(--primary-orange);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-item p {
  color: #666;
}

/* Shop Page */
.shop-section {
  padding: 60px 20px;
}

.shop-header {
  text-align: left;
  margin-bottom: 40px;
}

.shop-header h1 {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.shop-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-group label {
  font-weight: 600;
  color: var(--dark-text);
}

.filter-group select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 40px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: var(--primary-orange);
}

.footer-section p, .footer-section a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

/* Forms */
form {
  margin: 20px 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input[type="submit"],
button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

input[type="submit"]:hover,
button:hover {
  background: #ff5a1f;
}

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

  .section-title {
    font-size: 2rem;
  }

  .email-form {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .site-header {
    flex-direction: column;
    gap: 20px;
  }

  .about-content h1,
  .shop-header h1 {
    font-size: 2rem;
  }
}
