/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
    }

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== NAVBAR ========== */
#navbar {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(161, 19, 48, 0.08);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo-text {
    color: #6c132b;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: #a11330;
    color: #FFF8F0;
    font-weight: 700;
    border-radius: 14px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(161, 19, 48, 0.3);
}

.btn-primary:hover {
    background: #c42142;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(161, 19, 48, 0.4);
    color: #FFF8F0;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #6c132b;
    font-weight: 700;
    border-radius: 14px;
    padding: 14px 28px;
    border: 2px solid #fce7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #fce7eb;
    border-color: #fce7eb;
    transform: translateY(-2px);
    color: #6c132b;
}

/* ========== GEO SHAPES ========== */
.geo-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.geo-circle-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #fce7eb 0%, transparent 70%);
    border-radius: 50%;
    top: 5%;
    left: -80px;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #fad0d9 0%, transparent 70%);
    border-radius: 50%;
    top: 40%;
    right: 5%;
}

.geo-circle-3 {
    width: 120px;
    height: 120px;
    background: #ffebef;
    border-radius: 50%;
    bottom: 15%;
    left: 30%;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #fad0d9;
    opacity: 0.4;
    top: 20%;
    right: 15%;
    transform: rotate(15deg);
}

.geo-square {
    width: 80px;
    height: 80px;
    background: #ffd6df;
    border-radius: 12px;
    bottom: 25%;
    right: 25%;
    transform: rotate(30deg);
    opacity: 0.5;
}

.geo-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #fad0d9 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.6;
    top: 10%;
    right: 5%;
}

.geo-dots-2 {
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, #fad0d9 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.6;
    bottom: 10%;
    left: 3%;
}

/* ========== HERO ========== */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-img {
    box-shadow: 0 25px 60px rgba(108, 19, 43, 0.2);
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero-deco {
    position: absolute;
    z-index: 1;
}

.hero-deco-1 {
    width: 100px;
    height: 100px;
    background: #fad0d9;
    border-radius: 50%;
    top: -20px;
    right: -20px;
    opacity: 0.6;
}

.hero-deco-2 {
    width: 60px;
    height: 60px;
    background: #a11330;
    border-radius: 12px;
    bottom: 40px;
    right: -16px;
    transform: rotate(45deg);
    opacity: 0.3;
}

/* ========== PIE CARDS ========== */
.pie-card {
    transition: transform 0.3s ease;
}

.pie-card:hover {
    transform: translateY(-4px);
}

.pie-card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.pie-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6c132b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ========== ABOUT ========== */
.about-floating-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: #FFF8F0;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    z-index: 2;
}

.about-img-float {
    width: 120px;
    height: 120px;
}

@media (min-width: 640px) {
    .about-img-float {
        width: 192px;
        height: 192px;
    }
}

/* ========== MOBILE NAV ========== */
.menu-line {
    transition: all 0.3s ease;
}

#menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

#menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav-link {
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    transform: scale(1.05);
}

/* ========== MOBILE MENU OPEN ========== */
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-12px) rotate(15deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotate(30deg); }
    50% { transform: translateY(-8px) rotate(30deg); }
}

.geo-triangle {
    animation: float 4s ease-in-out infinite;
}

.geo-square {
    animation: float-reverse 5s ease-in-out infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .geo-circle-1 {
        width: 200px;
        height: 200px;
    }

    .geo-circle-2 {
        width: 120px;
        height: 120px;
    }

    .geo-triangle {
        display: none;
    }

    .geo-square {
        width: 50px;
        height: 50px;
    }

    .hero-deco-1 {
        width: 60px;
        height: 60px;
    }

    .hero-deco-2 {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-badge {
        bottom: 16px;
        left: 16px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
