/* ============================================================
   LYLA JEWELRY - ABOUT PAGE
   ============================================================ */

/* ==================== MEDIA QUERY BREAKPOINTS ====================
   Large Desktop: 1440px+
   Desktop:       1025px - 1439px (default base styles)
   Tablet:        768px - 1024px
   Large Mobile:  481px - 767px  
   Mobile:        max-width: 480px
   ============================================================ */

/* ==================== BASE STYLES (Desktop 1025px-1439px) ==================== */

/* Hero Section */
.about-hero {
    width: 100%;
    background-color: #fff;
}

.about-hero-image {
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5% 100px 5%;
    text-align: center;
}

.about-hero-title {
    font-size: 45px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #000;
}

.about-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    opacity: 0.8;
    font-weight: 300;
}

/* Founder Section */
.founder-section {
    background-color: #f9f9f9;
    padding: 100px 5%;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.founder-image-column {
    flex: 1;
}

.founder-image-column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.founder-content-column {
    flex: 1;
}

.founder-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 400;
}

.founder-name {
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #000;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.founder-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    font-style: italic;
    margin-top: 40px;
    padding-left: 30px;
    border-left: 3px solid #000;
    font-weight: 300;
}

/* Signature Star Section */
.signature-star-section {
    background-color: #fff;
    padding: 100px 5%;
}

.signature-star-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.signature-star-content-column {
    flex: 1;
}

.signature-star-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signature-star-image-column img,
.signature-star-image-column video {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    object-fit: contain;
}

.signature-star-title {
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #000;
}

.signature-star-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .signature-star-section {
        padding: 80px 4%;
    }
    .signature-star-container {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .signature-star-section {
        padding: 60px 5%;
    }
    .signature-star-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .signature-star-title {
        font-size: 2rem;
    }
    .signature-star-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .signature-star-section {
        padding: 50px 15px;
    }
    .signature-star-container {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .signature-star-title {
        font-size: 1.8rem;
    }
    .signature-star-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* Values Section */
.values-section {
    padding: 100px 5%;
    background-color: #fff;
}

.values-title {
    text-align: center;
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #000;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.value-item {
    text-align: center;
}

.value-heading {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #000;
    opacity: 0.7;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 5%;
    background-color: #f9f9f9;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #000;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px 30px;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: #000;
    opacity: 0.1;
    font-family: Georgia, serif;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #000;
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-author {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.author-location {
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 5%;
    background-color: #eee;
    text-align: center;
}

.cta-title {
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #333;
}

/* ==================== LARGE DESKTOP: 1440px+ ==================== */
@media (min-width: 1440px) {
    .about-hero-title {
        font-size: 45px;
    }

    .about-hero-text {
        font-size: 1.2rem;
    }

    .founder-name {
        font-size: 35px;
    }

    .values-title,
    .testimonials-title,
    .cta-title {
        font-size: 35px;
    }
}

/* ==================== TABLET: 768px - 1024px ==================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .about-hero-image {
        height: 50vh;
    }

    .about-hero-content {
        padding: 60px 4% 80px 4%;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .founder-section {
        padding: 80px 4%;
    }

    .founder-container {
        gap: 50px;
    }

    .founder-name {
        font-size: 2.2rem;
    }

    .values-section {
        padding: 80px 4%;
    }

    .values-grid {
        gap: 40px;
    }

    .testimonials-section {
        padding: 80px 4%;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .about-cta-section {
        padding: 80px 4%;
    }
}

/* ==================== LARGE MOBILE: 481px - 767px ==================== */
@media (min-width: 481px) and (max-width: 767px) {
    .about-hero-image {
        height: 40vh;
    }

    .about-hero-content {
        padding: 50px 5% 60px 5%;
    }

    .about-hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .about-hero-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .founder-section {
        padding: 60px 5%;
    }

    .founder-container {
        flex-direction: column;
        gap: 40px;
    }

    .founder-name {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .founder-bio {
        font-size: 0.95rem;
    }

    .founder-quote {
        font-size: 1rem;
        margin-top: 30px;
        padding-left: 20px;
    }

    .values-section {
        padding: 60px 5%;
    }

    .values-title {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-section {
        padding: 60px 5%;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .about-cta-section {
        padding: 60px 5%;
    }

    .cta-title {
        font-size: 35px;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 40px;
    }
}

/* ==================== MOBILE: ≤480px ==================== */
@media (max-width: 480px) {
    .about-hero-image {
        height: 35vh;
    }

    .about-hero-content {
        padding: 40px 15px 50px 15px;
    }

    .about-hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .about-hero-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .founder-section {
        padding: 50px 15px;
    }

    .founder-container {
        flex-direction: column;
        gap: 30px;
    }

    .founder-name {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .founder-bio {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .founder-quote {
        font-size: 0.95rem;
        margin-top: 25px;
        padding-left: 15px;
        border-left-width: 2px;
    }

    .values-section {
        padding: 50px 15px;
    }

    .values-title {
        font-size: 27px;
        margin-bottom: 35px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .value-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .value-text {
        font-size: 0.9rem;
    }

    .testimonials-section {
        padding: 50px 15px;
    }

    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-location {
        font-size: 0.8rem;
    }

    .about-cta-section {
        padding: 50px 15px;
    }

    .cta-title {
        font-size: 27px;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 35px;
        font-size: 0.85rem;
    }
}
