/* =============================================
   Public Site – Intimate Wedding Palembang
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Reset & Base ─────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Gold is warm and rich */
    --gold: #c08b30;
    --gold-lt: #d9aa50;
    --gold-dk: #9a6e20;

    /* Warm ivory body */
    --cream: #fdf5ec;
    --text: #3a2a1a;
    --muted: #8a7060;
    --white: #fff;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(170, 100, 60, .1);
    --trans: 0.3s ease;

    /* Navbar: soft white with warm tint */
    --navbar-bg: rgba(255, 251, 245, .97);
    --nav-link-c: #3a2a1a;

    /* Hero text */
    --hero-title-c: #2a1a0a;
    --hero-sub-c: rgba(60, 35, 15, .7);
    --hero-scroll-c: rgba(60, 35, 15, .4);

    /* Section plain */
    --section-plain-bg: #fdf5ec;
    --section-plain-text: #3a2a1a;

    /* Warm sections */
    --dark: #f9ede4;
    --dark2: #f0ddd0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    padding-top: 72px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navbar ────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192, 139, 48, .2);
    box-shadow: 0 2px 16px rgba(170, 100, 60, .08);
    transition: var(--trans);
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    margin-left: -24px;
    margin-right: auto;
}

.navbar-brand span {
    color: var(--gold-lt);
}

.navbar-brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--nav-link-c);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--trans);
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: var(--dark) !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(58, 42, 26, 0.08);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--nav-link-c);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ─── Navbar actions (hamburger) ────────── */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: -8px;
}

/* ─── Hero ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #f8e8dc 0%, #f0d5c5 40%, #e8c9b5 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 40%, rgba(232, 180, 140, .5) 0%, transparent 65%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 780px;
}

.hero-badge {
    display: inline-block;
    background: rgba(192, 139, 48, .12);
    border: 1px solid rgba(192, 139, 48, .3);
    color: #9a6e20;
    font-size: .8rem;
    letter-spacing: 3px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--hero-title-c);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #c08b30, #9a6e20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--hero-sub-c);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--hero-scroll-c);
    font-size: .7rem;
    letter-spacing: 3px;
    text-align: center;
}

.hero-scroll svg {
    width: 20px;
    margin: 6px auto 0;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ─── Buttons ───────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 139, 48, .4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #3a2a1a;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 30px;
    border: 2px solid rgba(58, 42, 26, .3);
    transition: var(--trans);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-dk);
    transform: translateY(-3px);
}

/* ─── Section Globals ───────────────────────── */
.section {
    padding: 100px 0;
}

.section-alt {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: .78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text);
    line-height: 1.3;
}

.section-alt .section-title,
.about-strip .section-title {
    color: #2a1a0a;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 12px;
}

.section-alt .section-subtitle {
    color: rgba(58, 42, 26, .6);
}

/* ─── Stats Bar ────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, #fdf5ec 0%, #fdf0e8 100%);
    padding: 48px 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(201, 168, 76, .1);
}

.stats-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stats-label {
    color: rgba(58, 42, 26, .5);
    font-size: .85rem;
    margin-top: 6px;
}

/* ─── About ─────────────────────────────────── */
.about-strip {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    color: rgba(58, 42, 26, .72);
    line-height: 1.9;
    font-size: .95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: .78rem;
    color: rgba(58, 42, 26, .5);
    margin-top: 4px;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ─── Packages ──────────────────────────────── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--trans);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.package-card.featured {
    border: 2px solid var(--gold);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: var(--dark);
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 1;
}

.package-img {
    height: 120px;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.package-body {
    padding: 28px;
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.package-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.package-price span {
    font-size: .85rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.package-desc {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-features {
    margin-bottom: 24px;
}

.package-features li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .875rem;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.btn-book {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: var(--dark);
    font-weight: 700;
    padding: 13px;
    border-radius: 30px;
    transition: var(--trans);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .3);
}

/* ─── Gallery ───────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* ─── Testimonials ──────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 248, 242, .9);
    border: 1px solid rgba(192, 139, 48, .18);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: var(--trans);
    box-shadow: 0 4px 20px rgba(200, 130, 80, .08);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 248, 242, 1);
    box-shadow: 0 8px 28px rgba(200, 130, 80, .14);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: .8;
    color: rgba(192, 139, 48, .3);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin: 8px 0 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(58, 42, 26, .72);
    line-height: 1.8;
    font-size: .9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    color: #2a1a0a;
}

.testimonial-date {
    font-size: .78rem;
    color: rgba(58, 42, 26, .45);
    margin-top: 2px;
}

/* ─── CTA ───────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #f5e6da 0%, #ecd6c6 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #2a1a0a;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(58, 42, 26, .65);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* ─── Page Hero (inner pages) ───────────────── */
.page-hero {
    background: linear-gradient(135deg, #fbeee6 0%, #f4e0d2 100%);
    padding: 30px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #2a1a0a;
}

.page-hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.page-hero p {
    color: rgba(58, 42, 26, .65);
    margin-top: 12px;
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: rgba(58, 42, 26, .45);
    font-size: .85rem;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--gold);
}

/* ─── Contact Form ──────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    color: rgba(58, 42, 26, .72);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(192, 139, 48, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-value {
    font-size: .95rem;
}

.contact-form {
    background: rgba(255, 248, 242, .8);
    border: 1px solid rgba(192, 139, 48, .2);
    box-shadow: 0 8px 32px rgba(170, 100, 60, .08);
    border-radius: 20px;
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: .82rem;
    color: rgba(58, 42, 26, .65);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    background: rgba(255, 248, 242, .9);
    border: 1px solid rgba(192, 139, 48, .25);
    border-radius: 10px;
    color: #3a2a1a;
    padding: 12px 16px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--trans);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .09);
}

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

.form-select {
    width: 100%;
    background: rgba(255, 248, 242, .9);
    border: 1px solid rgba(192, 139, 48, .25);
    border-radius: 10px;
    color: #3a2a1a;
    padding: 12px 16px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.form-select option {
    background: #fdf5ec;
}

/* ─── Footer ────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, #2a1a0a, #3a2a1a);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-brand span {
    color: var(--gold-lt);
    font-size: 1.2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    font-size: 1.1rem;
    transition: var(--trans);
}

.footer-social a:hover {
    background: var(--gold);
    color: #fff;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .87rem;
    transition: var(--trans);
}

.footer-links a:hover {
    color: var(--gold-lt);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .3);
    font-size: .82rem;
}

.footer-bottom span {
    color: var(--gold);
}

/* ─── WhatsApp Float ────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    transition: var(--trans);
}

.wa-float:hover {
    transform: scale(1.1) translateY(-3px);
}

/* ─── Alerts ─────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: .9rem;
}

.alert-success {
    background: rgba(40, 167, 69, .15);
    border: 1px solid rgba(40, 167, 69, .3);
    color: #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, .12);
    border: 1px solid rgba(220, 53, 69, .3);
    color: #dc3545;
}

/* ─── Booking Page ──────────────────────────── */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.booking-info {
    background: rgba(255, 248, 242, .8);
    border: 1px solid rgba(192, 139, 48, .2);
    border-radius: 20px;
    padding: 32px;
}

.booking-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-dk);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.step-text h4 {
    color: #2a1a0a;
    font-size: .95rem;
    margin-bottom: 4px;
}

.step-text p {
    color: rgba(58, 42, 26, .55);
    font-size: .83rem;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
    .navbar-brand {
        margin-left: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 251, 245, 0.98);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
        padding: 16px;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .booking-dropdown {
        position: static !important;
        box-shadow: none !important;
        background: transparent !important;
        padding-left: 16px;
        margin-top: 0 !important;
        min-width: 100% !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger:active {
        background: rgba(58, 42, 26, 0.12);
    }

    .about-grid,
    .contact-grid,
    .booking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-img-grid {
        display: none;
    }
}

/* ─── Fade-in animation ──────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}