/* ============================================
   ABOUT PAGE STYLES - LAURA'S BEAUTY TOUCH
   Natural Luxury Design System
   Optimized & Conflict-Free
   ============================================ */

/* ============================================
   ABOUT HERO SECTION - FIXED OVERLAY
   ============================================ */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--forest-green);
    background-image: url('../images/spaint.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Enable parallax only on desktop for performance */
@media (min-width: 1024px) {
    .about-hero .hero-background {
        background-attachment: fixed;
    }
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(59, 74, 47, 0.85) 0%, 
        rgba(42, 53, 34, 0.9) 100%);
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(169, 200, 156, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.4);
    color: var(--mint-green);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero .hero-badge i {
    font-size: 1.1rem;
}

.about-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--ivory-white);
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero .hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(250, 250, 247, 0.9);
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-hero .hero-scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--mint-green);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.6s both, bounceAnimation 2s ease-in-out 1.5s infinite;
}

.about-hero .hero-scroll-indicator i {
    font-size: 1.2rem;
}

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

@keyframes bounceAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   LAURA'S STORY SECTION
   ============================================ */
.laura-story-section {
    padding: 120px 40px;
    background: linear-gradient(to bottom, var(--ivory-white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.laura-story-section .story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.laura-story-section .story-image-wrapper {
    position: relative;
}

.laura-story-section .image-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(59, 74, 47, 0.25);
}

.laura-story-section .story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.laura-story-section .image-frame:hover .story-image {
    transform: scale(1.05);
}

.laura-story-section .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(59, 74, 47, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    transition: opacity 0.3s ease;
}

.laura-story-section .overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(169, 200, 156, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.5);
    color: var(--ivory-white);
    padding: 14px 24px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.laura-story-section .overlay-badge i {
    font-size: 1.1rem;
    color: var(--gold-accent);
}

.laura-story-section .floating-decor {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    opacity: 0.1;
    z-index: -1;
}

.laura-story-section .decor-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.laura-story-section .decor-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.laura-story-section .story-text-wrapper {
    padding: 20px 0;
}

.laura-story-section .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mint-green);
    margin-bottom: 20px;
}

.laura-story-section .section-eyebrow i {
    font-size: 1rem;
}

.laura-story-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--forest-green);
    line-height: 1.2;
    margin-bottom: 25px;
}

.laura-story-section .title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green), var(--gold-accent));
    border-radius: 10px;
    margin-bottom: 35px;
}

.laura-story-section .story-content {
    margin-bottom: 40px;
}

.laura-story-section .story-paragraph {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.laura-story-section .story-paragraph.highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--forest-green);
    padding: 30px;
    background: linear-gradient(135deg, rgba(169, 200, 156, 0.1), rgba(169, 200, 156, 0.05));
    border-left: 4px solid var(--mint-green);
    border-radius: 20px;
    margin-top: 30px;
}

.laura-story-section .credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.laura-story-section .credential-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(59, 74, 47, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.laura-story-section .credential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 74, 47, 0.2);
}

.laura-story-section .credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.laura-story-section .credential-info h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 5px;
}

.laura-story-section .credential-info p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--warm-taupe);
    margin: 0;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-forest));
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169, 200, 156, 0.15), transparent);
    border-radius: 50%;
}

.philosophy-section .philosophy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.philosophy-section .philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(169, 200, 156, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-green);
    font-size: 2rem;
}

.philosophy-section .philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ivory-white);
    margin-bottom: 25px;
}

.philosophy-section .philosophy-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green), var(--gold-accent));
    border-radius: 10px;
    margin: 0 auto 35px;
}

.philosophy-section .philosophy-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(250, 250, 247, 0.95);
    margin-bottom: 50px;
}

.philosophy-section .philosophy-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-section .value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: rgba(169, 200, 156, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.3);
    border-radius: 25px;
    transition: all 0.4s ease;
}

.philosophy-section .value-item:hover {
    transform: translateY(-10px);
    background: rgba(169, 200, 156, 0.2);
    border-color: rgba(169, 200, 156, 0.5);
}

.philosophy-section .value-item i {
    font-size: 2.5rem;
    color: var(--gold-accent);
}

.philosophy-section .value-item span {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ivory-white);
    text-align: center;
}

/* ============================================
   PHOTO GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 120px 40px;
    background: var(--ivory-white);
}

.gallery-section .gallery-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mint-green);
    margin-bottom: 20px;
}

.gallery-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--forest-green);
    line-height: 1.2;
    margin-bottom: 25px;
}

.gallery-section .title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green), var(--gold-accent));
    border-radius: 10px;
    margin: 0 auto 25px;
}

.gallery-section .section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-taupe);
    margin-top: 20px;
}

.gallery-section .gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    cursor: pointer;
}

.gallery-section .gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-section .gallery-item.gallery-tall {
    grid-row: span 2;
}

.gallery-section .gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-section .gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-section .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(59, 74, 47, 0.95) 0%, 
        rgba(59, 74, 47, 0.7) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

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

.gallery-section .gallery-content {
    color: var(--ivory-white);
}

.gallery-section .gallery-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-section .gallery-content p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.gallery-section .gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(169, 200, 156, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.5);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-section .gallery-view-btn:hover {
    background: var(--mint-green);
    border-color: var(--mint-green);
    transform: translateY(-2px);
}

/* Gallery CTA */
.gallery-section .gallery-cta {
    text-align: center;
    margin-top: 80px;
}

.gallery-section .cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 25px;
}

.gallery-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(169, 200, 156, 0.4);
}

.gallery-section .cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(169, 200, 156, 0.5);
}

.gallery-section .cta-btn i {
    transition: transform 0.3s ease;
}

.gallery-section .cta-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(169, 200, 156, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    background: var(--mint-green);
    border-color: var(--mint-green);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(169, 200, 156, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: var(--mint-green);
    border-color: var(--mint-green);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

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

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-top: 20px;
}

.lightbox-counter {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment-section {
    padding: 100px 40px;
    background: linear-gradient(to bottom, var(--cream), var(--ivory-white));
}

.commitment-section .commitment-container {
    max-width: 1400px;
    margin: 0 auto;
}

.commitment-section .commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.commitment-section .commitment-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 74, 47, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.commitment-section .commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 74, 47, 0.2);
}

.commitment-section .commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.commitment-section .commitment-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.commitment-section .commitment-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .laura-story-section .story-container {
        gap: 60px;
    }
    
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .commitment-section .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about-hero {
        height: 80vh;
        min-height: 550px;
    }
    
    .laura-story-section {
        padding: 80px 30px;
    }
    
    .laura-story-section .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .laura-story-section .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        gap: 15px;
    }
    
    .gallery-section .gallery-item.gallery-large,
    .gallery-section .gallery-item.gallery-wide {
        grid-column: span 2;
    }
    
    .gallery-section .gallery-item.gallery-tall {
        grid-row: span 1;
    }
    
    .philosophy-section .philosophy-values {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .laura-story-section {
        padding: 60px 20px;
    }
    
    .laura-story-section .section-title {
        font-size: 2rem;
    }
    
    .philosophy-section {
        padding: 60px 20px;
    }
    
    .gallery-section {
        padding: 80px 20px;
    }
    
    .gallery-section .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .gallery-section .gallery-item.gallery-large,
    .gallery-section .gallery-item.gallery-wide,
    .gallery-section .gallery-item.gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .commitment-section {
        padding: 60px 20px;
    }
    
    .commitment-section .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .laura-story-section .section-title {
        font-size: 1.8rem;
    }
    
    .laura-story-section .story-paragraph {
        font-size: 1rem;
    }
    
    .laura-story-section .credential-card {
        padding: 20px;
    }
    
    .laura-story-section .credential-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-section .gallery-grid {
        grid-auto-rows: 250px;
    }
    
    .commitment-section .commitment-card {
        padding: 30px 20px;
    }
    
    .commitment-section .commitment-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
