/* css/main.css */

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background: #f8f8f8; color: #333; line-height: 1.6; }
a { text-decoration: none; }

/* Color Variables */
:root {
  --primary: #c41e3a;    /* Luxury red */
  --accent: #ffd700;     /* Gold */
  --dark: #1a1a1a;
  --light: #fff;
}

/* Header */
header { background: var(--dark); padding: 1rem; position: sticky; top: 0; z-index: 100; }
nav ul { list-style: none; display: flex; justify-content: center; gap: 2rem; }
nav a { color: var(--light); font-weight: bold; transition: color 0.3s; }
nav a:hover { color: var(--accent); }

/* WhatsApp Button (fixed) */
.whatsapp-fixed {
  position: fixed; bottom: 20px; right: 20px; background: #25D366; color: white;
  padding: 15px; border-radius: 50%; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 99;
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 2rem; }

/* Add more sections as needed... */