/* sotechnetdi Tai Chi Hi-Tech Website Styles */

:root {
  /* Color Scheme */
  --sotechnetdi-primary: #E43636;
  --sotechnetdi-light: #F6EFD2;
  --sotechnetdi-mid: #E2DDB4;
  --sotechnetdi-dark: #000000;
  
  /* Spacing */
  --sotechnetdi-space-xs: 0.25rem;
  --sotechnetdi-space-sm: 0.5rem;
  --sotechnetdi-space-md: 1rem;
  --sotechnetdi-space-lg: 2rem;
  --sotechnetdi-space-xl: 4rem;
  
  /* Typography */
  --sotechnetdi-font-heading: 'Exo 2', sans-serif;
  --sotechnetdi-font-body: 'Quicksand', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sotechnetdi-font-body);
  background-color: var(--sotechnetdi-light);
  color: var(--sotechnetdi-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sotechnetdi-font-heading);
  margin-bottom: var(--sotechnetdi-space-md);
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--sotechnetdi-primary);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--sotechnetdi-space-md);
}

a {
  color: var(--sotechnetdi-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--sotechnetdi-dark);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--sotechnetdi-space-xl) 0;
}

.sotechnetdi-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sotechnetdi-space-md);
}

/* Header Styles */
.sotechnetdi-header {
  position: relative;
  padding: var(--sotechnetdi-space-md) 0;
  background-color: rgba(246, 239, 210, 0.95);
  z-index: 100;
  transition: all 0.4s ease;
}

.sotechnetdi-header-hidden {
  transform: translateY(-100%);
}

.sotechnetdi-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sotechnetdi-logo {
  display: flex;
  align-items: center;
  font-family: var(--sotechnetdi-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sotechnetdi-dark);
}

.sotechnetdi-logo img{
  width: 7rem;
  position: relative;
  z-index: 20;
}

.sotechnetdi-logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.sotechnetdi-logo:hover img {
  transform: rotate(0);
}
/* Responsive Styles */
@media (max-width: 992px) {
  .sotechnetdi-logo img{
  width: 5rem;
  position: relative;
  z-index: 20;
}
}

@media (max-width: 768px) {
  .sotechnetdi-logo img{
  width: 5rem;
  position: relative;
  z-index: 20;
}
}

@media (max-width: 576px) {
  .sotechnetdi-logo img{
  width: 4rem;
  position: relative;
  z-index: 20;
}
}

@media (max-width: 400px) {
  .sotechnetdi-logo img{
  width: 4rem;
  position: relative;
  z-index: 20;
}
}

.sotechnetdi-nav {
  display: flex;
  align-items: center;
}

.sotechnetdi-nav-list {
  display: flex;
  list-style: none;
}

.sotechnetdi-nav-item {
  margin-left: var(--sotechnetdi-space-lg);
}

.sotechnetdi-nav-link {
  color: var(--sotechnetdi-dark);
  font-weight: 500;
  position: relative;
}

.sotechnetdi-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sotechnetdi-primary);
  transition: width 0.3s ease;
}

.sotechnetdi-nav-link:hover::after {
  width: 100%;
}

.sotechnetdi-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--sotechnetdi-dark);
}

/* Hero Section */
.sotechnetdi-hero {
  height: 85vh;
  min-height: 500px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('../img/0.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  color: white;
}

.sotechnetdi-hero-content {
  max-width: 650px;
}

.sotechnetdi-hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--sotechnetdi-space-md);
  line-height: 1.2;
}

.sotechnetdi-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--sotechnetdi-space-lg);
}

/* Button Styles */
.sotechnetdi-btn {
  display: inline-block;
  padding: var(--sotechnetdi-space-sm) var(--sotechnetdi-space-lg);
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sotechnetdi-btn-primary {
  background-color: var(--sotechnetdi-primary);
  color: white;
  border: 2px solid var(--sotechnetdi-primary);
}

.sotechnetdi-btn-primary:hover {
  background-color: transparent;
  color: var(--sotechnetdi-primary);
}

.sotechnetdi-btn-outline {
  background-color: transparent;
  border: 2px solid var(--sotechnetdi-primary);
  color: var(--sotechnetdi-primary);
}

.sotechnetdi-btn-outline:hover {
  background-color: var(--sotechnetdi-primary);
  color: white;
}

/* Product Section */
.sotechnetdi-products {
  background-color: white;
}

.sotechnetdi-section-title {
  text-align: center;
  margin-bottom: var(--sotechnetdi-space-xl);
}

.sotechnetdi-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sotechnetdi-space-lg);
}

.sotechnetdi-product-card {
  background-color: var(--sotechnetdi-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sotechnetdi-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sotechnetdi-product-image {
  height: 200px;
  background-color: var(--sotechnetdi-mid);
  position: relative;
  overflow: hidden;
}

.sotechnetdi-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sotechnetdi-product-card:hover .sotechnetdi-product-image img {
  transform: scale(1.05);
}

.sotechnetdi-product-content {
  padding: var(--sotechnetdi-space-lg);
}

.sotechnetdi-product-title {
  margin-bottom: var(--sotechnetdi-space-sm);
  font-size: 1.25rem;
}

.sotechnetdi-product-price {
  font-weight: 700;
  color: var(--sotechnetdi-primary);
  margin-bottom: var(--sotechnetdi-space-md);
  font-size: 1.2rem;
}

.sotechnetdi-product-description {
  margin-bottom: var(--sotechnetdi-space-lg);
  font-size: 0.9rem;
}

/* Member Stories */
.sotechnetdi-stories {
  background-color: var(--sotechnetdi-mid);
}

.sotechnetdi-stories-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sotechnetdi-space-lg);
}

.sotechnetdi-story {
  flex: 1 1 300px;
  background-color: white;
  padding: var(--sotechnetdi-space-lg);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sotechnetdi-story-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--sotechnetdi-space-md);
}

.sotechnetdi-story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--sotechnetdi-space-md);
  object-fit: cover;
}

.sotechnetdi-story-author {
  font-weight: 600;
  margin-bottom: 0;
}

.sotechnetdi-story-meta {
  color: #666;
  font-size: 0.85rem;
}

.sotechnetdi-story-content {
  font-style: italic;
  color: #444;
}

/* Disciplines Section */
.sotechnetdi-disciplines {
  background-color: white;
}

.sotechnetdi-disciplines-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sotechnetdi-space-lg);
}

.sotechnetdi-discipline {
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
  padding: var(--sotechnetdi-space-lg);
  border-radius: 8px;
  background-color: var(--sotechnetdi-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sotechnetdi-discipline:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sotechnetdi-discipline-icon {
  font-size: 2.5rem;
  color: var(--sotechnetdi-primary);
  margin-bottom: var(--sotechnetdi-space-md);
}

.sotechnetdi-discipline-title {
  margin-bottom: var(--sotechnetdi-space-sm);
}

/* Testimonials Section */
.sotechnetdi-testimonials {
  background-color: var(--sotechnetdi-mid);
  position: relative;
}

.sotechnetdi-testimonial-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.sotechnetdi-testimonial {
  background-color: white;
  padding: var(--sotechnetdi-space-xl);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.sotechnetdi-testimonial-quote {
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: 20px;
  color: var(--sotechnetdi-primary);
  opacity: 0.2;
}

.sotechnetdi-testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: var(--sotechnetdi-space-lg);
}

.sotechnetdi-testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
}

.sotechnetdi-testimonial-role {
  color: #666;
  font-size: 0.9rem;
}

/* Meal Plans Section */
.sotechnetdi-meal-plans {
  background-color: white;
}

.sotechnetdi-meal-plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sotechnetdi-space-lg);
}

.sotechnetdi-meal-plan {
  background-color: var(--sotechnetdi-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sotechnetdi-meal-plan-header {
  background-color: var(--sotechnetdi-primary);
  color: white;
  padding: var(--sotechnetdi-space-md) var(--sotechnetdi-space-lg);
  text-align: center;
}

.sotechnetdi-meal-plan-title {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.sotechnetdi-meal-plan-content {
  padding: var(--sotechnetdi-space-lg);
}

.sotechnetdi-meal-list {
  list-style: none;
  margin-bottom: var(--sotechnetdi-space-lg);
}

.sotechnetdi-meal-item {
  padding: var(--sotechnetdi-space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}

.sotechnetdi-meal-item:last-child {
  border-bottom: none;
}

.sotechnetdi-meal-name {
  font-weight: 500;
}

.sotechnetdi-meal-calories {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section */
.sotechnetdi-contact {
  background-color: var(--sotechnetdi-mid);
}

.sotechnetdi-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sotechnetdi-space-xl);
}

.sotechnetdi-contact-info {
  flex: 1 1 300px;
}

.sotechnetdi-contact-form {
  flex: 1 1 500px;
}

.sotechnetdi-contact-item {
  margin-bottom: var(--sotechnetdi-space-md);
  display: flex;
  align-items: flex-start;
}

.sotechnetdi-contact-icon {
  color: var(--sotechnetdi-primary);
  font-size: 1.25rem;
  margin-right: var(--sotechnetdi-space-md);
  margin-top: 5px;
}

.sotechnetdi-map {
  height: 250px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: var(--sotechnetdi-space-lg);
}

.sotechnetdi-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.sotechnetdi-form-group {
  margin-bottom: var(--sotechnetdi-space-md);
}

.sotechnetdi-form-label {
  display: block;
  margin-bottom: var(--sotechnetdi-space-sm);
  font-weight: 500;
}

.sotechnetdi-form-input,
.sotechnetdi-form-textarea {
  width: 100%;
  padding: var(--sotechnetdi-space-sm);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--sotechnetdi-font-body);
  transition: border-color 0.3s ease;
}

.sotechnetdi-form-input:focus,
.sotechnetdi-form-textarea:focus {
  border-color: var(--sotechnetdi-primary);
  outline: none;
}

.sotechnetdi-form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer Styles */
.sotechnetdi-footer {
  background-color: var(--sotechnetdi-dark);
  color: white;
  padding: var(--sotechnetdi-space-lg) 0;
  text-align: center;
}

.sotechnetdi-footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: var(--sotechnetdi-space-md);
}

.sotechnetdi-footer-link {
  margin: 0 var(--sotechnetdi-space-md);
}

.sotechnetdi-footer-link a {
  color: white;
}

.sotechnetdi-footer-link a:hover {
  color: var(--sotechnetdi-primary);
}

.sotechnetdi-copyright {
  font-size: 0.9rem;
  color: #aaa;
}

/* Privacy Policy Page */
.sotechnetdi-privacy {
  padding: var(--sotechnetdi-space-xl) 0;
}

.sotechnetdi-privacy-section {
  margin-bottom: var(--sotechnetdi-space-xl);
}

.sotechnetdi-privacy-title {
  margin-bottom: var(--sotechnetdi-space-md);
}

.sotechnetdi-privacy-list {
  margin-left: var(--sotechnetdi-space-lg);
  margin-bottom: var(--sotechnetdi-space-md);
}

.sotechnetdi-privacy-item {
  margin-bottom: var(--sotechnetdi-space-sm);
}

/* Thank You Page */
.sotechnetdi-thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sotechnetdi-thankyou-content {
  max-width: 600px;
}

.sotechnetdi-thankyou-icon {
  font-size: 5rem;
  color: var(--sotechnetdi-primary);
  margin-bottom: var(--sotechnetdi-space-lg);
}

/* Privacy Policy Popup */
.sotechnetdi-privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: var(--sotechnetdi-space-lg);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sotechnetdi-privacy-popup.active {
  transform: translateY(0);
}

.sotechnetdi-popup-text {
  flex: 1;
  margin-right: var(--sotechnetdi-space-md);
}

.sotechnetdi-popup-btn {
  background-color: var(--sotechnetdi-primary);
  color: white;
  border: none;
  padding: var(--sotechnetdi-space-sm) var(--sotechnetdi-space-lg);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.sotechnetdi-popup-btn:hover {
  background-color: #c42d2d;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .sotechnetdi-hero-title {
    font-size: 2.5rem;
  }
  
  .sotechnetdi-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--sotechnetdi-light);
    flex-direction: column;
    align-items: center;
    padding: var(--sotechnetdi-space-md) 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .sotechnetdi-nav-list.active {
    display: flex;
  }
  
  .sotechnetdi-nav-item {
    margin: var(--sotechnetdi-space-sm) 0;
  }
  
  .sotechnetdi-menu-toggle {
    display: block;
  }
  
  .sotechnetdi-testimonial {
    padding: var(--sotechnetdi-space-lg);
  }
  
  .sotechnetdi-products-grid,
  .sotechnetdi-meal-plans-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .sotechnetdi-contact-container {
    gap: var(--sotechnetdi-space-lg);
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .sotechnetdi-container {
    width: 95%;
    padding: 0 var(--sotechnetdi-space-sm);
  }
  
  .sotechnetdi-hero-title {
    font-size: 2rem;
  }
  
  .sotechnetdi-hero-subtitle {
    font-size: 1rem;
  }
  
  .sotechnetdi-product-card,
  .sotechnetdi-story,
  .sotechnetdi-discipline,
  .sotechnetdi-meal-plan {
    max-width: 100%;
  }
  
  .sotechnetdi-contact-item {
    flex-direction: column;
  }
  
  .sotechnetdi-contact-icon {
    margin-bottom: var(--sotechnetdi-space-sm);
  }
  
  .sotechnetdi-btn {
    padding: var(--sotechnetdi-space-xs) var(--sotechnetdi-space-md);
    font-size: 0.9rem;
  }
  
  .sotechnetdi-hero {
    height: 70vh;
  }
}

/* Additional styles for very small screens (320px) */
@media screen and (max-width: 380px) {
  html {
    font-size: 12px;
  }
  
  .sotechnetdi-container {
    width: 100%;
    padding: 0 var(--sotechnetdi-space-xs);
  }
  
  .sotechnetdi-hero-title {
    font-size: 1.75rem;
  }
  
  .sotechnetdi-hero-subtitle {
    font-size: 0.9rem;
  }
  
  .sotechnetdi-product-title,
  .sotechnetdi-story-author,
  .sotechnetdi-discipline-title,
  .sotechnetdi-meal-plan-title {
    font-size: 1.1rem;
  }
  
  .sotechnetdi-product-description,
  .sotechnetdi-story-content p,
  .sotechnetdi-discipline p,
  .sotechnetdi-meal-item {
    font-size: 0.85rem;
  }
  
  .sotechnetdi-logo {
    font-size: 1.4rem;
  }
  
  .sotechnetdi-logo-space {
    width: 30px;
    height: 30px;
  }
  
  .sotechnetdi-section-title h2 {
    font-size: 1.5rem;
  }
  
  .sotechnetdi-products-grid,
  .sotechnetdi-meal-plans-container {
    grid-template-columns: 1fr;
  }
  
  .sotechnetdi-form-group {
    margin-bottom: var(--sotechnetdi-space-sm);
  }
  
  .sotechnetdi-form-input,
  .sotechnetdi-form-textarea {
    padding: var(--sotechnetdi-space-xs);
  }
  
  .sotechnetdi-form-textarea {
    min-height: 100px;
  }
  
  .sotechnetdi-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .sotechnetdi-testimonial-text {
    font-size: 0.95rem;
  }
  
  .sotechnetdi-footer-links {
    flex-direction: column;
  }
  
  .sotechnetdi-footer-link {
    margin: var(--sotechnetdi-space-xs) 0;
  }
  
  .sotechnetdi-map {
    height: 180px;
  }
  
  .sotechnetdi-privacy-popup {
    flex-direction: column;
  }
  
  .sotechnetdi-popup-text {
    margin-bottom: var(--sotechnetdi-space-sm);
    margin-right: 0;
  }
  
  .sotechnetdi-popup-btn {
    width: 100%;
  }
}