/* style.css */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    background: #faf8f5;
    color: #1a1a1a;
    line-height: 1.7;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COLORS ===== */
:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #a8892e;
    --black: #1a1a1a;
    --white: #ffffff;
    --cream: #faf8f5;
    --gray: #8a8a8a;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.08);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== UTILITY ===== */
.gold-text {
    color: var(--gold);
}
.gold-border {
    border-color: var(--gold);
}
.text-center {
    text-align: center;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    border-radius: 10px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}
.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
    border-radius: 10px;
}

/* ===== BUTTONS ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
    letter-spacing: 0.3px;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 168, 76, 0.45);
}
.btn-gold i {
    font-size: 1.2rem;
}
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
.top-bar {
    background: var(--black);
    padding: 12px 20px;
    color: var(--white);
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--gold);
}
.top-bar span {
    color: var(--gold);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 40px 0 50px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.profile-image-wrap {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.25);
}
.profile-image-wrap:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(201, 168, 76, 0.35);
}
.profile-image-wrap img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    display: block;
}
@media (min-width: 768px) {
    .profile-image-wrap img {
        width: 240px;
        height: 240px;
    }
}
.profile-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--gold);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.hero-content {
    text-align: center;
    max-width: 760px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.hero-content .age-location {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-content .age-location span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-content .age-location .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}
.hero-content .tagline {
    font-size: 1.15rem;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 1rem;
    font-style: italic;
}
.hero-content .intro-text {
    font-size: 1.05rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}
.hero-actions .btn-gold {
    padding: 16px 44px;
    font-size: 1.05rem;
}

/* ===== WHATSAPP BADGE ===== */
.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}
.whatsapp-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}
.whatsapp-badge i {
    font-size: 1.3rem;
}

/* ===== ADS TOP BANNER ===== */
.ad-top-desktop {
    display: none;
    text-align: center;
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}
@media (min-width: 992px) {
    .ad-top-desktop {
        display: block;
    }
}
.ad-top-mobile {
    display: block;
    text-align: center;
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}
@media (min-width: 768px) {
    .ad-top-mobile {
        display: none;
    }
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 60px 0;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    background: #f0ede8;
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-item .overlay span {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gallery-item .overlay span i {
    font-size: 1rem;
}
.gallery-item .gold-corner {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 60px 0;
    background: var(--cream);
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr 300px;
    }
}
.content-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.content-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.08);
}
.content-card:hover {
    box-shadow: var(--shadow-hover);
}
.content-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.content-card h3 .icon {
    color: var(--gold);
    font-size: 1.4rem;
}
.content-card p {
    color: #444;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 0.75rem;
}
.content-card p:last-child {
    margin-bottom: 0;
}
.content-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.content-card ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: #444;
    font-weight: 300;
}
.content-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.9rem;
}
.content-card .highlight-gold {
    color: var(--gold);
    font-weight: 600;
}

/* ===== SIDEBAR ADS ===== */
.sidebar-ads {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.sidebar-ads .ad-box {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    text-align: center;
    width: 100%;
    max-width: 300px;
}
.sidebar-ads .ad-box .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 8px;
}

/* ===== NATIVE ADS IN CONTENT ===== */
.native-ad-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 168, 76, 0.08);
    text-align: center;
}
.native-ad-wrap .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 10px;
}

/* ===== 300x250 ADS ===== */
.ad-300-wrap {
    text-align: center;
    padding: 20px 0;
    background: var(--cream);
}
.ad-300-wrap .ad-box {
    display: inline-block;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

/* ===== 468x60 ADS ===== */
.ad-468-wrap {
    text-align: center;
    padding: 20px 0;
    background: var(--white);
}
.ad-468-wrap .ad-box {
    display: inline-block;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 30px;
    border-top: 3px solid var(--gold);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 36px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 300;
    letter-spacing: 0.3px;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer .gold-divider {
    margin: 0.5rem auto 1rem;
}
.footer p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}
.footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ===== STICKY MOBILE BANNER ===== */
.sticky-mobile-ad {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    padding: 8px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 2px solid var(--gold);
}
@media (max-width: 767px) {
    .sticky-mobile-ad {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
.sticky-mobile-ad .close-sticky {
    position: absolute;
    top: -28px;
    right: 8px;
    background: var(--black);
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}
.delay-1 {
    animation-delay: 0.1s;
}
.delay-2 {
    animation-delay: 0.2s;
}
.delay-3 {
    animation-delay: 0.3s;
}
.delay-4 {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .hero {
        padding: 24px 0 32px;
    }
    .profile-image-wrap img {
        width: 150px;
        height: 150px;
    }
    .profile-badge {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        bottom: 4px;
        right: 4px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content .intro-text {
        font-size: 0.95rem;
    }
    .hero-actions .btn-gold {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    .content-card {
        padding: 24px 16px;
    }
    .content-card h3 {
        font-size: 1.25rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
    }
    .footer-links {
        gap: 14px 20px;
    }
    .footer-links a {
        font-size: 0.8rem;
    }
    .sidebar-ads .ad-box {
        max-width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .sidebar-ads {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .sidebar-ads .ad-box {
        max-width: 280px;
    }
}
@media (min-width: 992px) {
    .hero-inner {
        flex-direction: row;
        gap: 50px;
        align-items: center;
        text-align: left;
    }
    .hero-content {
        text-align: left;
    }
    .hero-content .age-location {
        justify-content: flex-start;
    }
    .hero-content .intro-text {
        margin: 0 0 1.5rem;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .profile-image-wrap img {
        width: 260px;
        height: 260px;
    }
}

/* ===== ACTIVE BUTTON BORDER GLOW ANIMATIONS ===== */
@keyframes goldGlowBorder {
    0% {
        box-shadow: 0 0 5px rgba(201, 168, 76, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 168, 76, 0.8), 0 0 0 3px rgba(201, 168, 76, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(201, 168, 76, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.3);
    }
}

.active-glow {
    animation: goldGlowBorder 2.5s infinite ease-in-out !important;
}

@keyframes greenGlowBorder {
    0% {
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.8), 0 0 0 3px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(37, 211, 102, 0.3);
    }
}

.active-whatsapp-glow {
    animation: greenGlowBorder 2.5s infinite ease-in-out !important;
}

