/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { -webkit-font-smoothing: antialiased; }

/* ── Floating Geometric Shapes ── */
.floating-shapes { overflow: hidden; }
.shape { position: absolute; opacity: 0.08; pointer-events: none; }
.shape-circle-1 {
    width: 300px; height: 300px;
    border: 3px solid #7B2D3B;
    border-radius: 50%;
    top: 15%; right: -50px;
    animation: floatShape 8s ease-in-out infinite;
}
.shape-circle-2 {
    width: 150px; height: 150px;
    background: #FF8E8E;
    border-radius: 50%;
    bottom: 20%; left: 5%;
    animation: floatShape 6s ease-in-out infinite reverse;
}
.shape-square-1 {
    width: 100px; height: 100px;
    background: #7B2D3B;
    border-radius: 20px;
    top: 40%; left: 2%;
    transform: rotate(30deg);
    animation: floatShape 10s ease-in-out infinite;
}
.shape-triangle {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid #FF8E8E;
    opacity: 0.06;
    top: 60%; right: 8%;
    animation: floatShape 7s ease-in-out infinite reverse;
}
.shape-ring {
    width: 200px; height: 200px;
    border: 3px solid #C4A07A;
    border-radius: 50%;
    top: 80%; right: 15%;
    animation: floatShape 9s ease-in-out infinite;
}

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

/* ── Floating Cards ── */
.floating-card {
    animation: floatCard 4s ease-in-out infinite;
}
.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #7B2D3B;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(123, 45, 59, 0.3);
}
.btn-primary:hover {
    background: #5e232e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 59, 0.4);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #7B2D3B;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 14px;
    border: 2px solid #7B2D3B;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-secondary:hover {
    background: #7B2D3B;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Nav ── */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8E8E;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Product Cards ── */
.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(123, 45, 59, 0.08);
    transition: all 0.4s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(123, 45, 59, 0.15);
}

/* ── Why Cards ── */
.why-card {
    border: 1px solid rgba(123, 45, 59, 0.08);
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navbar scroll state ── */
.navbar-scrolled {
    background: rgba(255, 248, 240, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(123, 45, 59, 0.1);
}
.navbar-scrolled .nav-link { color: #7B2D3B; }
.navbar-scrolled .font-heading { color: #7B2D3B; }

/* ── Mobile menu ── */
.mobile-nav-link {
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
    padding-bottom: 12px;
}
.mobile-nav-link:last-child { border: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .shape-circle-1 { width: 150px; height: 150px; top: 10%; right: -30px; }
    .shape-circle-2 { width: 80px; height: 80px; }
    .shape-square-1 { width: 60px; height: 60px; }
    .shape-triangle { display: none; }
    .shape-ring { width: 100px; height: 100px; }
}
