/* === Everaura About Us Page Styles === */

.about-header {
    height: 40vh;
    min-height: 300px;
    /* You can replace this placeholder with a specific image for this page */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://res.cloudinary.com/dxzynrf5e/image/upload/v1759518822/Gemini_Generated_Image_8pe71z8pe71z8pe7_bbxq5y.png') no-repeat center center/cover;
}

.about-header .section-title {
    margin: 0;
    color: var(--light-color); /* Ensure title is visible on dark image */
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.about-text .highlight-text {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.founder-section {
    background-color: var(--card-bg-color);
}

.motivational-text {
    font-size: 1.3rem !important;
    font-style: italic;
    line-height: 1.6 !important;
}

.founder-signature {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: right;
    margin-top: 2rem;
}

/* Responsive adjustments for about page */
@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Flips the order on mobile for the founder section */
    .founder-section .about-text {
        order: 2;
    }
    .founder-section .about-image {
        order: 1;
    }
    .about-text h2 {
        font-size: 2.5rem;
    }
}

/* About section image */
.about-image.craftsmanship {
    background: url("https://res.cloudinary.com/dxzynrf5e/image/upload/v1759518608/Gemini_Generated_Image_wrsahcwrsahcwrsa_ocwjcf.png") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 750px; /* give height since no img */
    border-radius: 8px;
  }
  
  /* Founder image */
  .about-image.founder-image {
    background: url("https://res.cloudinary.com/dxzynrf5e/image/upload/v1759516688/IMG_8602_d1flfw.jpg") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 750px;
    border-radius: 8px;
  }


/* === ABOUT PAGE MOBILE === */
@media (max-width: 768px) {
    .about-header {
        height: 30vh;
        min-height: 250px;
    }
    
    .about-section {
        padding: 3rem 5%;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem !important;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-text .highlight-text {
        font-size: 1.1rem;
    }
    
    .about-image.craftsmanship,
    .about-image.founder-image {
        height: 400px;
    }
    
    /* FIX FONT CONSISTENCY */
    .about-header .section-title {
        font-size: 2rem !important;
    }
    .about-text h2 {
        font-family: var(--heading-font) !important;
        font-weight: 400 !important;
        color: var(--accent-color) !important;
    }
    .about-text p {
        font-family: var(--primary-font) !important;
        line-height: 1.8 !important;
        color: #ccc !important;
    }
    .about-text .highlight-text,
    .motivational-text,
    .founder-signature {
        font-family: var(--heading-font) !important;
        font-style: italic !important;
    }
    .founder-signature {
        font-size: 1.3rem !important;
    }

    /* Cart Modal Mobile Fixes */
    .cart-modal-content {
        width: 95% !important;
        max-width: 95% !important;
        padding: 20px;
    }
    
    .cart-modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cart-item {
        padding: 10px 0;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-details {
        font-size: 0.9rem;
    }
    
    .coupon-area {
        flex-direction: column;
        gap: 8px;
    }
    
    .coupon-area input,
    .apply-coupon-btn {
        width: 100%;
    }
    
    .checkout-btn {
        font-size: 0.95rem;
        padding: 12px 16px;
    }
}


@media (max-width: 768px) {
    .main-nav {
      justify-content: space-between;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      left: 0;
      width: 70%;
      height: 100vh;
      background: var(--background-color);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(-100%);
      transition: transform 0.4s ease-in-out;
      z-index: 1002;
    }
  
    .nav-links.active {
      transform: translateX(0);
    }
  
    .mobile-nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1003;
    }
  
    .mobile-nav-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      margin: 4px 0;
      background: var(--text-color);
      transition: all 0.3s ease;
    }
  
    .mobile-nav-toggle.active span:first-child {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .mobile-nav-toggle.active span:last-child {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  }
