/* ==========================================================================
   MAJO BAEZ MAKEUP PORTFOLIO STYLING
   Aesthetic Dark Theme - Rose Gold Accents - Premium Animations
   ========================================================================== */

/* --- Custom Variables --- */
:root {
    --bg-color: #080a0e;
    --bg-navbar: rgba(8, 10, 14, 0.85);
    --bg-card: #11141b;
    --bg-card-hover: #161a23;
    --primary: #e2b7a9;         /* Elegant Rose Gold */
    --primary-hover: #cf9b8c;
    --primary-glow: rgba(226, 183, 169, 0.3);
    --text-white: #ffffff;
    --text-muted: #9ba3b0;
    --text-dark: #1f2937;
    --font-title: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --border-color: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    letter-spacing: 2px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
}

/* --- Navigation Bar (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-white);
    position: relative;
}

.brand-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.brand-logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

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

.instagram-nav-link {
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 4px;
}

.instagram-nav-link:hover {
    background-color: var(--primary);
    color: var(--bg-color);
}

.menu-toggle {
    display: none;
    font-size: 20px;
    color: var(--text-white);
}

/* --- Mobile Navigation --- */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    transform: translateY(-150%);
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav-item {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav-item:hover {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px 20px;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(8,10,14,0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: floatGradient 18s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.hero-text-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 4px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-color);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 35px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(226, 183, 169, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(226, 183, 169, 0.3);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 35px;
    border-radius: 4px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    z-index: 2;
    animation: fadeInScale 1.2s ease;
}

.image-frame {
    position: relative;
    border-radius: 8px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: var(--shadow-premium);
}

.hero-profile-image {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* --- Section Layouts --- */
.portfolio-section, .about-section {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary);
    margin: 0 auto 20px auto;
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- Filter Controls --- */
.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    border: none;
    background: transparent;
    padding: 12px 28px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 30px;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
    color: var(--text-white);
}

.filter-btn:hover::before {
    transform: scale(0.95);
    opacity: 0.2;
}

.filter-btn.active {
    color: var(--bg-color);
}

.filter-btn.active::before {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* --- Portfolio Grid (Masonry / Flex Grid) --- */
.portfolio-grid-container {
    position: relative;
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    grid-auto-flow: dense;
    gap: 20px;
    transition: var(--transition-smooth);
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    border-radius: 12px; /* Smoother border radius */
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: pointer;
    box-shadow: var(--shadow-light);
    animation: fadeIn 0.6s ease;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    grid-column: span 1;
    grid-row: span 1;
}

/* Bento Box Layout */
.portfolio-item:nth-child(8n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item:nth-child(8n+4) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.portfolio-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.7);
}

/* Hover Overlay */
.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 10, 14, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(226, 183, 169, 0.2);
}

.overlay-description {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 12px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-item:hover .overlay-description {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    transform: scale(0.5) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.portfolio-item:hover .overlay-icon {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* --- Infinite Scroll Spinner --- */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    gap: 15px;
}

.loading-container.hidden {
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(226, 183, 169, 0.1);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* End of feed message */
.end-feed-message {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 1px;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    animation: fadeIn 0.8s ease;
}

.end-feed-message.hidden {
    display: none;
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-card);
    border-radius: 12px;
    margin: 100px auto;
    border: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
}

.about-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.divider-left {
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 25px;
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-contact-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.info-item i {
    font-size: 18px;
    color: var(--primary);
    width: 25px;
    text-align: center;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 20px;
    background-color: var(--bg-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 18px;
    color: var(--text-muted);
}

.footer-socials a:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 998;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #1e1e1e;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- Lightbox / Modal --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-content-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 2001;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    z-index: 2005;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Left Pane: Media Slider */
.lightbox-media-container {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2002;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--bg-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }
.slider-arrow.hidden { display: none; }

.slider-indicator {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2002;
    letter-spacing: 1px;
}

.slider-indicator.hidden { display: none; }

/* Overlay description */
.lightbox-description-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2003;
    pointer-events: none;
    gap: 20px;
}

.lightbox-description {
    font-size: 16px;
    color: white;
    font-weight: 300;
    line-height: 1.6;
    max-width: 70%;
    pointer-events: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.lightbox-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    pointer-events: auto;
    flex-shrink: 0;
}

.lightbox-wa-btn:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}


/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image-wrapper {
        order: -1;
    }
    .hero-profile-image {
        width: 280px;
        height: 360px;
    }
    .about-container {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
        gap: 30px;
    }
    .about-image {
        max-width: 280px;
    }
    .divider-left {
        margin: 0 auto 25px auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .lightbox-content-wrapper {
        height: 100vh;
        max-height: none;
    }
    .lightbox-description-overlay {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px 20px 20px;
    }
    .lightbox-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}


/* --- Keyframe Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes floatGradient {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    transform: translateX(-40px);
}
.reveal-left.active {
    transform: translateX(0);
}
.reveal-right {
    transform: translateX(40px);
}
.reveal-right.active {
    transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

