/* cotechgo Tai Chi - Main Stylesheet */

:root {
  /* Color palette */
  --cotechgo-black: #000000;
  --cotechgo-mint: #CFFFE2;
  --cotechgo-teal: #A2D5C6;
  --cotechgo-white: #F6F6F6;
  
  /* Typography */
  --cotechgo-font-primary: 'Noto Serif', serif;
  --cotechgo-font-secondary: 'Quicksand', sans-serif;
  
  /* Spacing */
  --cotechgo-space-xs: 0.5rem;
  --cotechgo-space-sm: 1rem;
  --cotechgo-space-md: 2rem;
  --cotechgo-space-lg: 4rem;
  --cotechgo-space-xl: 6rem;
  
  /* Borders */
  --cotechgo-border-radius: 4px;
  
  /* Transitions */
  --cotechgo-transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--cotechgo-font-primary);
  background-color: var(--cotechgo-white);
  color: var(--cotechgo-black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cotechgo-font-secondary);
  margin-bottom: var(--cotechgo-space-sm);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--cotechgo-space-md);
}

a {
  color: var(--cotechgo-black);
  text-decoration: none;
  transition: var(--cotechgo-transition);
}

a:hover {
  color: var(--cotechgo-teal);
}

img {
  max-width: 100%;
  height: auto;
}

.cotechgo-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--cotechgo-space-md) 0;
}

.cotechgo-section {
  padding: var(--cotechgo-space-lg) 0;
}

/* Header */
.cotechgo-header {
  background-color: var(--cotechgo-mint);
  padding: var(--cotechgo-space-sm) 0;
  transition: var(--cotechgo-transition);
  transform: translateY(0);
}

.cotechgo-header.cotechgo-hidden {
  transform: translateY(-100%);
}

.cotechgo-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cotechgo-logo {
  display: flex;
  align-items: center;
}

.cotechgo-logo img{
  width: 7rem;
  position: relative;
  z-index: 20;
}

.cotechgo-logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.cotechgo-logo:hover img {
  transform: rotate(0);
}
/* Responsive Styles */
@media (max-width: 992px) {
  .cotechgo-logo img{
  width: 5rem;
  position: relative;
  z-index: 20;
}
}

@media (max-width: 768px) {
  .cotechgo-logo img{
  width: 5rem;
  position: relative;
  z-index: 20;
}
}

@media (max-width: 576px) {
  .cotechgo-logo img{
  width: 4rem;
  position: relative;
  z-index: 20;
}
}

@media (max-width: 400px) {
  .cotechgo-logo img{
  width: 4rem;
  position: relative;
  z-index: 20;
}
}

.cotechgo-nav {
  display: flex;
}

.cotechgo-nav-list {
  display: flex;
  list-style: none;
}

.cotechgo-nav-item {
  margin-left: var(--cotechgo-space-md);
}

.cotechgo-nav-link {
  position: relative;
  font-family: var(--cotechgo-font-secondary);
  font-weight: 500;
}

.cotechgo-nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--cotechgo-teal);
  transition: var(--cotechgo-transition);
}

.cotechgo-nav-link:hover:after {
  width: 100%;
}

.cotechgo-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.cotechgo-burger-line {
  width: 25px;
  height: 3px;
  background-color: var(--cotechgo-black);
  margin: 2px 0;
  transition: var(--cotechgo-transition);
}

/* Hero Section */
.cotechgo-hero {
  height: 80vh;
  background-color: var(--cotechgo-mint);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cotechgo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cotechgo-hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--cotechgo-space-md);
}

.cotechgo-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--cotechgo-space-lg);
  font-family: var(--cotechgo-font-primary);
}

.cotechgo-hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--cotechgo-teal);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.3;
  z-index: 1;
}

/* Button Styles */
.cotechgo-btn {
  display: inline-block;
  padding: var(--cotechgo-space-sm) var(--cotechgo-space-md);
  background-color: var(--cotechgo-black);
  color: var(--cotechgo-white);
  border: none;
  border-radius: var(--cotechgo-border-radius);
  font-family: var(--cotechgo-font-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--cotechgo-transition);
}

.cotechgo-btn:hover {
  background-color: var(--cotechgo-teal);
  color: var(--cotechgo-white);
  transform: translateY(-2px);
}

.cotechgo-btn-outline {
  background-color: transparent;
  border: 2px solid var(--cotechgo-black);
  color: var(--cotechgo-black);
}

.cotechgo-btn-outline:hover {
  background-color: var(--cotechgo-black);
}

/* Products Section */
.cotechgo-products {
  background-color: var(--cotechgo-white);
}

.cotechgo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--cotechgo-space-md);
}

.cotechgo-product-card {
  background-color: white;
  border-radius: var(--cotechgo-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--cotechgo-transition);
}

.cotechgo-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cotechgo-product-content {
  padding: var(--cotechgo-space-md);
}

.cotechgo-product-title {
  font-size: 1.5rem;
  margin-bottom: var(--cotechgo-space-xs);
}

.cotechgo-product-price {
  font-family: var(--cotechgo-font-secondary);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cotechgo-teal);
  margin-bottom: var(--cotechgo-space-sm);
}

/* Etiquette Section */
.cotechgo-etiquette {
  background-color: var(--cotechgo-mint);
  padding: var(--cotechgo-space-xl) 0;
}

.cotechgo-etiquette-list {
  list-style: none;
  margin-top: var(--cotechgo-space-md);
}

.cotechgo-etiquette-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--cotechgo-space-md);
}

.cotechgo-etiquette-icon {
  margin-right: var(--cotechgo-space-sm);
  font-size: 1.5rem;
  color: var(--cotechgo-teal);
}

/* Private Coaching Section */
.cotechgo-coaching {
  background-color: var(--cotechgo-white);
}

.cotechgo-coaching-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cotechgo-space-lg);
}

.cotechgo-coaching-content {
  flex: 1;
  min-width: 300px;
}

.cotechgo-coaching-image {
  flex: 1;
  min-width: 300px;
  background-color: var(--cotechgo-teal);
  height: 400px;
  border-radius: var(--cotechgo-border-radius);
}

/* Testimonials Section */
.cotechgo-testimonials {
  background-color: var(--cotechgo-teal);
  color: var(--cotechgo-black);
  padding: var(--cotechgo-space-xl) 0;
}

.cotechgo-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--cotechgo-space-md);
  margin-top: var(--cotechgo-space-lg);
  
}

.cotechgo-testimonial-card {
  background-color: var(--cotechgo-white);
  padding: var(--cotechgo-space-md);
  border-radius: var(--cotechgo-border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cotechgo-testimonial-text {
  font-style: italic;
  margin-bottom: var(--cotechgo-space-md);
}

.cotechgo-testimonial-author {
  font-family: var(--cotechgo-font-secondary);
  font-weight: 700;
}

/* Gift Cards Section */
.cotechgo-gift-cards {
  background-color: var(--cotechgo-white);
  padding: var(--cotechgo-space-xl) 0;
}

.cotechgo-gift-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cotechgo-space-lg);
  align-items: center;
}

.cotechgo-gift-cards-content {
  flex: 1;
  min-width: 300px;
}

.cotechgo-gift-card-image {
  flex: 1;
  min-width: 300px;
  height: 250px;
  background-color: var(--cotechgo-mint);
  border-radius: var(--cotechgo-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cotechgo-font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Contact Section */
.cotechgo-contact {
  background-color: var(--cotechgo-mint);
  padding: var(--cotechgo-space-xl) 0;
}

.cotechgo-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cotechgo-space-lg);
}

.cotechgo-contact-info {
  flex: 1;
  min-width: 300px;
}

.cotechgo-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--cotechgo-space-md);
}

.cotechgo-contact-icon {
  margin-right: var(--cotechgo-space-sm);
  font-size: 1.25rem;
  color: var(--cotechgo-black);
}

.cotechgo-contact-form {
  flex: 1;
  min-width: 300px;
}

.cotechgo-form-group {
  margin-bottom: var(--cotechgo-space-md);
}

.cotechgo-form-label {
  display: block;
  margin-bottom: var(--cotechgo-space-xs);
  font-family: var(--cotechgo-font-secondary);
  font-weight: 500;
}

.cotechgo-form-input,
.cotechgo-form-textarea {
  width: 100%;
  padding: var(--cotechgo-space-sm);
  border: 1px solid var(--cotechgo-teal);
  border-radius: var(--cotechgo-border-radius);
  font-family: var(--cotechgo-font-primary);
}

.cotechgo-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.cotechgo-map {
  width: 100%;
  height: 400px;
  margin-top: var(--cotechgo-space-lg);
  border-radius: var(--cotechgo-border-radius);
  overflow: hidden;
}

/* Footer */
.cotechgo-footer {
  background-color: var(--cotechgo-black);
  color: var(--cotechgo-white);
  padding: var(--cotechgo-space-lg) 0;
}

.cotechgo-footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cotechgo-space-lg);
}

.cotechgo-footer-logo {
  flex: 1;
  min-width: 200px;
}

.cotechgo-footer-links {
  flex: 1;
  min-width: 200px;
}

.cotechgo-footer-title {
  font-size: 1.25rem;
  margin-bottom: var(--cotechgo-space-md);
  color: var(--cotechgo-teal);
}

.cotechgo-footer-list {
  list-style: none;
}

.cotechgo-footer-item {
  margin-bottom: var(--cotechgo-space-xs);
}

.cotechgo-footer-link {
  color: var(--cotechgo-white);
}

.cotechgo-footer-link:hover {
  color: var(--cotechgo-mint);
}

.cotechgo-copyright {
  margin-top: var(--cotechgo-space-lg);
  text-align: center;
  font-size: 0.9rem;
  color: var(--cotechgo-teal);
}

/* Privacy Policy Popup */
.cotechgo-privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--cotechgo-black);
  color: var(--cotechgo-white);
  padding: var(--cotechgo-space-md);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: var(--cotechgo-transition);
}

.cotechgo-privacy-popup.cotechgo-active {
  transform: translateY(0);
}

.cotechgo-privacy-text {
  margin-bottom: 0;
  margin-right: var(--cotechgo-space-md);
}

.cotechgo-privacy-btn {
  background-color: var(--cotechgo-teal);
  color: var(--cotechgo-black);
  padding: var(--cotechgo-space-xs) var(--cotechgo-space-md);
  border: none;
  border-radius: var(--cotechgo-border-radius);
  cursor: pointer;
  font-family: var(--cotechgo-font-secondary);
  font-weight: 500;
}

/* Responsive Styles */
/* Tablet Styles */
@media (max-width: 1024px) {
  .cotechgo-products-grid,
  .cotechgo-testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .cotechgo-container {
    width: 95%;
  }
}

/* Small Tablet / Large Mobile Styles */
@media (max-width: 768px) {
  :root {
    --cotechgo-space-sm: 0.85rem;
    --cotechgo-space-md: 1.75rem;
    --cotechgo-space-lg: 3rem;
    --cotechgo-space-xl: 5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .cotechgo-hero-title {
    font-size: 2.5rem;
  }
  
  .cotechgo-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cotechgo-header-container {
    padding: 0.75rem 0;
  }
  
  .cotechgo-logo-space {
    width: 40px;
    height: 40px;
  }
  
  .cotechgo-logo-text {
    font-size: 1.5rem;
  }
  
  .cotechgo-nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--cotechgo-mint);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--cotechgo-space-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .cotechgo-nav-list.cotechgo-active {
    display: flex;
  }
  
  .cotechgo-nav-item {
    margin: var(--cotechgo-space-sm) 0;
  }
  
  .cotechgo-nav-link {
    font-size: 1.25rem;
  }
  
  .cotechgo-burger {
    display: flex;
    z-index: 1000;
  }
  
  .cotechgo-burger.cotechgo-active .cotechgo-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .cotechgo-burger.cotechgo-active .cotechgo-burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .cotechgo-burger.cotechgo-active .cotechgo-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .cotechgo-coaching-container,
  .cotechgo-gift-cards-container,
  .cotechgo-contact-container {
    flex-direction: column;

  }
  
  .cotechgo-coaching-image,
  .cotechgo-gift-card-image {
    margin-top: var(--cotechgo-space-md);
    height: 300px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  :root {
    --cotechgo-space-xs: 0.4rem;
    --cotechgo-space-sm: 0.75rem;
    --cotechgo-space-md: 1.5rem;
    --cotechgo-space-lg: 2.5rem;
    --cotechgo-space-xl: 4rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .cotechgo-container {
    width: 92%;
  }
  
  .cotechgo-section {
    padding: var(--cotechgo-space-md) 0;
  }
  
  .cotechgo-hero {
    height: auto;
    padding: var(--cotechgo-space-xl) 0;
  }
  
  .cotechgo-hero-title {
    font-size: 1.85rem;
  }
  
  .cotechgo-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--cotechgo-space-md);
  }
  
  .cotechgo-btn {
    padding: var(--cotechgo-space-xs) var(--cotechgo-space-md);
    font-size: 0.9rem;
  }
  
  .cotechgo-product-title {
    font-size: 1.25rem;
  }
  
  .cotechgo-product-price {
    font-size: 1.1rem;
  }
  
  .cotechgo-products-grid,
  .cotechgo-testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--cotechgo-space-sm);
  }
  
  .cotechgo-coaching-image,
  .cotechgo-gift-card-image {
    height: 200px;
  }
  
  .cotechgo-map {
    height: 300px;
  }
  
  .cotechgo-footer-container {
    flex-direction: column;
    gap: var(--cotechgo-space-md);
  }
  
  .cotechgo-footer-title {
    margin-bottom: var(--cotechgo-space-sm);
  }
  
  .cotechgo-privacy-popup {
    flex-direction: column;
  }
  
  .cotechgo-privacy-text {
    margin-bottom: var(--cotechgo-space-sm);
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 360px) {
  :root {
    --cotechgo-space-xs: 0.35rem;
    --cotechgo-space-sm: 0.6rem;
    --cotechgo-space-md: 1.2rem;
    --cotechgo-space-lg: 2rem;
    --cotechgo-space-xl: 3rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.9rem;
    margin-bottom: var(--cotechgo-space-sm);
  }
  
  .cotechgo-container {
    width: 94%;
  }
  
  .cotechgo-logo-space {
    width: 30px;
    height: 30px;
  }
  
  .cotechgo-logo-text {
    font-size: 1.2rem;
  }
  
  .cotechgo-hero-title {
    font-size: 1.6rem;
  }
  
  .cotechgo-hero-subtitle {
    font-size: 0.9rem;
  }
}