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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* === NAVBAR === */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(196, 101, 74, 0.08);
    padding: 0;
}

.nav-logo-text {
    transition: color 0.4s ease;
}

.nav-logo-sub {
    transition: color 0.4s ease;
}

#navbar:not(.scrolled) .nav-logo-text {
    color: #ffffff;
}

#navbar:not(.scrolled) .nav-logo-sub {
    color: #f5e0c0;
}

/* === MOBILE MENU === */
.mobile-link {
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #C4654A;
}

/* === HERO GEOMETRIC SHAPES === */
.geo-shape {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
}

.circle-1 {
    width: 420px;
    height: 420px;
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    top: -80px;
    right: -100px;
    animation: floatSlow 20s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: 15%;
    left: 5%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.circle-3 {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    top: 40%;
    right: 8%;
    animation: floatSlow 12s ease-in-out infinite;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(255,255,255,0.08);
    top: 20%;
    left: 8%;
    transform: rotate(15deg);
    animation: floatSlow 18s ease-in-out infinite;
}

.square-1 {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.2);
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
    animation: floatSlow 16s ease-in-out infinite reverse;
}

.ring-1 {
    width: 160px;
    height: 160px;
    border: 4px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    bottom: 25%;
    left: 15%;
    animation: floatSlow 14s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

/* === PRODUCT CARDS === */
.product-card {
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* === FEATURE CARDS === */
.feature-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

/* === SCROLL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

/* === FORM STYLES === */
input:focus, textarea:focus {
    border-color: #C4654A !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(196, 101, 74, 0.1) !important;
}

/* === SELECTION === */
::selection {
    background: #C4654A;
    color: white;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDF8F0;
}

::-webkit-scrollbar-thumb {
    background: #E06B4A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C4654A;
}
