/* Fashionaut - Wellness & Fitness Main Stylesheet */

/* CSS Variables/Custom Properties */
:root {
  /* Colors */
  --fashionaut-dark: #021526;
  --fashionaut-blue: #03346E;
  --fashionaut-light-blue: #6EACDA;
  --fashionaut-beige: #E2E2B6;
  --fashionaut-white: #ffffff;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--fashionaut-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--fashionaut-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  color: var(--fashionaut-blue);
}

h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 3px rgba(2, 21, 38, 0.1);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--fashionaut-light-blue);
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

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

a:hover {
  color: var(--fashionaut-light-blue);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.fashionaut-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.fashionaut-section {
  padding: var(--space-lg) 0;
  position: relative;
}

.fashionaut-section:nth-child(even) {
  background-color: rgba(110, 172, 218, 0.05);
}

.fashionaut-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--fashionaut-blue);
  color: var(--fashionaut-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.fashionaut-btn:hover {
  background-color: var(--fashionaut-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(3, 52, 110, 0.2);
  color: var(--fashionaut-white);
}

.fashionaut-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--fashionaut-blue);
  color:#fff;
}

.fashionaut-btn-secondary:hover {
  background-color: var(--fashionaut-blue);
  color: var(--fashionaut-white);
}

/* Header & Navigation */
.fashionaut-header {
  padding: var(--space-xs) 0;
  background-color: var(--fashionaut-white);
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fashionaut-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fashionaut-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fashionaut-blue);
}

.fashionaut-logo span {
  color: var(--fashionaut-light-blue);
}

.fashionaut-nav {
  display: flex;
  gap: var(--space-md);
}

.fashionaut-nav li{
    list-style: none;
}

.fashionaut-nav-item {
  position: relative;
  font-weight: 500;
}

.fashionaut-nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--fashionaut-light-blue);
  transition: width 0.3s ease;
}

.fashionaut-nav-item:hover::after {
  width: 100%;
}

.fashionaut-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--fashionaut-blue);
  cursor: pointer;
}

/* Hero Section */
.fashionaut-hero {
  height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(2, 21, 38, 0.85), rgba(3, 52, 110, 0.85)), url(../img/position.jpg) no-repeat center/cover;
  color: var(--fashionaut-white);
  margin-top: 0px;
}

.fashionaut-hero-content {
  max-width: 700px;
}

.fashionaut-hero h1 {
  color: var(--fashionaut-white);
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fashionaut-hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fashionaut-hero-buttons {
  display: flex;
  gap: var(--space-sm);
}

/* About Section */
.fashionaut-about {
  position: relative;
  overflow: hidden;
}

.fashionaut-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.fashionaut-about-text h2 {
  margin-bottom: var(--space-md);
}

.fashionaut-about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fashionaut-about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--fashionaut-light-blue);
  border-left: 4px solid var(--fashionaut-light-blue);
  z-index: -1;
}

.fashionaut-about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--fashionaut-beige);
  border-right: 4px solid var(--fashionaut-beige);
  z-index: -1;
}

/* Services Section */
.fashionaut-services {
  background-color: rgba(226, 226, 182, 0.1);
}

.fashionaut-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.fashionaut-service-card {
  background-color: var(--fashionaut-white);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

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

.fashionaut-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(110, 172, 218, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.fashionaut-service-card:hover .fashionaut-service-icon {
  background-color: var(--fashionaut-light-blue);
}

.fashionaut-service-card:hover .fashionaut-service-icon svg {
  fill: var(--fashionaut-white);
}

.fashionaut-service-card h3 {
  margin-bottom: var(--space-sm);
}

/* Products Section */
.fashionaut-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.fashionaut-product-card {
  background-color: var(--fashionaut-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.fashionaut-product-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.fashionaut-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fashionaut-product-card:hover .fashionaut-product-image img {
  transform: scale(1.05);
}

.fashionaut-product-content {
  padding: var(--space-md);
}

.fashionaut-product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fashionaut-blue);
  margin-bottom: var(--space-sm);
}

.fashionaut-product-features {
  margin: var(--space-sm) 0;
}

.fashionaut-product-feature {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.fashionaut-product-feature svg {
  margin-right: 10px;
  fill: var(--fashionaut-light-blue);
}

/* Testimonials Section */
.fashionaut-testimonials {
  background-color: rgba(3, 52, 110, 0.05);
  position: relative;
  overflow: hidden;
}

.fashionaut-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236EACDA' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.fashionaut-testimonials-container {
  position: relative;
  z-index: 2;
}

.fashionaut-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.fashionaut-testimonial-card {
  background-color: var(--fashionaut-white);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fashionaut-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 5rem;
  font-family: var(--font-secondary);
  color: rgba(110, 172, 218, 0.2);
  line-height: 1;
}

.fashionaut-testimonial-content {
  position: relative;
  z-index: 2;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.fashionaut-testimonial-author {
  display: flex;
  align-items: center;
}

.fashionaut-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-sm);
}

.fashionaut-testimonial-name {
  font-weight: 600;
}

.fashionaut-testimonial-role {
  font-size: 0.9rem;
  color: var(--fashionaut-light-blue);
}

/* Gallery Section */
.fashionaut-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.fashionaut-gallery-item {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.fashionaut-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fashionaut-gallery-item:hover img {
  transform: scale(1.05);
}

.fashionaut-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(2, 21, 38, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
}

.fashionaut-gallery-item:hover .fashionaut-gallery-overlay {
  opacity: 1;
}

.fashionaut-gallery-caption {
  color: var(--fashionaut-white);
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Modal for Image Zoom */
.fashionaut-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 21, 38, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

.fashionaut-modal.active {
  display: flex;
}

.fashionaut-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.fashionaut-modal-image {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.fashionaut-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--fashionaut-white);
  font-size: 2rem;
  cursor: pointer;
}

.fashionaut-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.fashionaut-modal-prev,
.fashionaut-modal-next {
  background: none;
  border: none;
  color: var(--fashionaut-white);
  font-size: 2rem;
  cursor: pointer;
  padding: var(--space-sm);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.fashionaut-modal-prev:hover,
.fashionaut-modal-next:hover {
  opacity: 1;
}

/* Contact Section */
.fashionaut-contact {
  background: linear-gradient(135deg, rgba(2, 21, 38, 0.05), rgba(3, 52, 110, 0.05));
}

.fashionaut-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.fashionaut-contact-info {
  margin-bottom: var(--space-md);
}

.fashionaut-contact-method {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.fashionaut-contact-icon {
  margin-right: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(110, 172, 218, 0.1);
  border-radius: 50%;
}

.fashionaut-contact-form {
  background-color: var(--fashionaut-white);
  padding: var(--space-md);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.fashionaut-form-group {
  margin-bottom: var(--space-sm);
}

.fashionaut-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.fashionaut-form-input,
.fashionaut-form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(3, 52, 110, 0.2);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.fashionaut-form-input:focus,
.fashionaut-form-textarea:focus {
  outline: none;
  border-color: var(--fashionaut-light-blue);
}

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

/* Footer */
.fashionaut-footer {
  background-color: var(--fashionaut-dark);
  color: var(--fashionaut-white);
  padding: var(--space-lg) 0 var(--space-md);
}

.fashionaut-footer-container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--space-lg);
}

.fashionaut-footer-logo {
  color: var(--fashionaut-white);
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.fashionaut-footer-logo span {
  color: var(--fashionaut-light-blue);
}

.fashionaut-footer-about {
  margin-bottom: var(--space-md);
}

.fashionaut-footer-heading {
  color: var(--fashionaut-white);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
  position: relative;
}

.fashionaut-footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--fashionaut-light-blue);
}

.fashionaut-footer-links {
  list-style: none;
}

.fashionaut-footer-link {
  margin-bottom: var(--space-xs);
  transition: all 0.3s ease;
}

.fashionaut-footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.fashionaut-footer-link a:hover {
  color: var(--fashionaut-light-blue);
  padding-left: 5px;
}

.fashionaut-footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.fashionaut-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.fashionaut-social-icon:hover {
  background-color: var(--fashionaut-light-blue);
  transform: translateY(-3px);
}

.fashionaut-copyright {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Success Page */
.fashionaut-success {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(2, 21, 38, 0.05), rgba(3, 52, 110, 0.05));
}

.fashionaut-success-container {
  background-color: var(--fashionaut-white);
  padding: var(--space-lg);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fashionaut-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background-color: rgba(110, 172, 218, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fashionaut-success-title {
  margin-bottom: var(--space-sm);
}

.fashionaut-success-message {
  margin-bottom: var(--space-md);
}

/* Policy Pages */
.fashionaut-policy {
  padding-top: 120px;
  padding-bottom: var(--space-lg);
}

.fashionaut-policy-container {
  background-color: var(--fashionaut-white);
  padding: var(--space-lg);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.fashionaut-policy-section {
  margin-bottom: var(--space-lg);
}

.fashionaut-policy-section h2 {
  margin-bottom: var(--space-md);
}

.fashionaut-policy-section h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.fashionaut-policy-section ul {
  margin-left: 16px;
  margin-bottom: var(--space-md);
}

.fashionaut-policy-section li {
  margin-bottom: var(--space-xs);
  word-break: break-all;
}

.fashionaut-last-updated {
  margin-bottom: var(--space-md);
  font-style: italic;
  color: var(--fashionaut-light-blue);
}

/* Custom Icons */
.fashionaut-icon {
  width: 24px;
  height: 24px;
  fill: var(--fashionaut-light-blue);
  transition: fill 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .fashionaut-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  /* Increased spacing and fonts for tablet */
  :root {
    --space-sm: 1.2rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  p {
    font-size: 1.1rem;
  }
  
  .fashionaut-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
  }
  
  .fashionaut-hero h1 {
    font-size: 2.2rem;
  }
  
  .fashionaut-contact-container,
  .fashionaut-about-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .fashionaut-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--fashionaut-white);
    padding: var(--space-sm) 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .fashionaut-nav.active {
    display: flex;
  }
  
  .fashionaut-nav-toggle {
    display: block;
  }

  .fashionaut-footer-container{
    grid-template-columns: 1fr 1fr;
  }
  
  .fashionaut-testimonials-grid,
  .fashionaut-services-grid,
  .fashionaut-products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fashionaut-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .fashionaut-hero {
    height: auto;
    padding: var(--space-xl) 0;
  }
  
  .fashionaut-hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .fashionaut-footer-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .fashionaut-policy-container h1{
    font-size: 1.75rem;
  }

  .fashionaut-policy-section h2{
    font-size: 1.6rem;
    word-wrap: break-word;
  }
}

@media (max-width: 480px) {
  /* Further increased spacing and fonts for mobile */
  :root {
    --space-sm: 1.4rem;
    --space-md: 2.8rem;
    --space-lg: 5.5rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .fashionaut-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
  }

  .fashionaut-product-card,
  .fashionaut-service-card,
  .fashionaut-testimonial-card,
  .fashionaut-contact-form,
  .fashionaut-policy-container{
    padding: var(--space-sm);
  }
  
  .fashionaut-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .fashionaut-hero {
    text-align: center;
  }

  .fashionaut-product-content,
  .fashionaut-success-container {
  padding: var(--space-xs);
  }

  .fashionaut-success-icon{
    margin: auto;
  }
  .fashionaut-section {
    padding: var(--space-md) 0;
}
}

@media (max-width: 360px) {
  .fashionaut-logo {
    font-size: 1.5rem;
  }
  
  .fashionaut-container {
    width: 100%;
  }
}