/* =====================
   COLOR SYSTEM
===================== */

:root {
    --bg-main: #FAFAFA;
    --bg-white: #FFFFFF;

    --text-primary: #111111;
    --text-muted: #6B7280;

    --accent-cyan: #2EC4C6;
    --accent-rose: #F15BB5;
    --accent-green: #22c55e;

    --footer-bg: #111111;
}

/* =====================
   GLOBAL RESET
===================== */

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.25px;
    line-height: 1.6;
    margin: 0;
}

/* =====================
   TYPOGRAPHY
===================== */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin: 0;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =====================
   NAVBAR
===================== */

.navbar {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Brand */
.navbar-brand {
    font-family: 'Aguafina Script', cursive;
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #111111 !important;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-green) !important;
    text-shadow: 0 0 6px rgba(25, 237, 187, 0.35);
}

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary) !important;
}

.nav-link:hover {
    color: var(--accent-rose) !important;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.7rem;
    }
}

/* =====================
   SECTION SYSTEM (CENTER SAFE)
===================== */

.section {
    padding: 100px 0;
    text-align: center;
}

.section-sm {
    padding: 70px 0;
    text-align: center;
}

.section-lg {
    padding: 130px 0;
    text-align: center;
}

/* =====================
   HERO SECTION
===================== */

.hero-section {
    background-color: var(--bg-white);
    padding: 120px 20px 100px;
    text-align: center;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 18px;
    line-height: 1.25;
}

.hero-sub {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-muted);
}

/* =====================
   SECTION TITLES
===================== */

.section-title {
    font-size: 2.2rem;
    margin-bottom: 18px;
    text-align: center;
}

.section-sub {
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    text-align: center;
}

/* =====================
   BUTTONS
===================== */

.btn {
    margin-top: 30px;
}

.btn-dark {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-rose));
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 6px;
}

.btn-dark:hover {
    opacity: 0.9;
}

/* CTA center wrapper */
.cta-center {
    margin-top: 60px;
    text-align: center;
}

/* =====================
   GALLERY
===================== */

.gallery-grid {
    margin-top: 40px;
}

.row.g-3 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 28px;
}

.gallery-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

@media (max-width: 576px) {
    .gallery-img {
        height: 160px;
    }
}

/* =====================
   INSTAGRAM SECTION
===================== */

.instagram-section {
    background-color: var(--bg-white);
}

.instagram-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.instagram-embed iframe {
    border: none;
    background-color: #FFFFFF;
}

/* =====================
   FOOTER
===================== */

.footer {
    background-color: var(--footer-bg);
    padding: 70px 0;
    text-align: center;
}

.footer p {
    color: #9CA3AF;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer a {
    color: #FFFFFF;
    font-weight: 500;
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent-rose);
}

/* =====================
   PAGE LOAD ANIMATION
===================== */

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.8s ease-out forwards;
}

.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.3s; }
.fade-up.delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   MOBILE RHYTHM FIX
===================== */

@media (max-width: 768px) {
    .hero-section {
        padding: 90px 20px 70px;
    }

    .section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
