/* Critical CSS - Above the fold styles */
/* This is inlined in HTML to prevent render-blocking */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #555555;
  font-family: "Poppins", helvetica, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  transition: background 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  color: #1a1a1a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
  color: #b8a07e;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #917754;
}

/* Header Styles - Critical */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.logo img {
  max-height: 50px;
  width: auto;
}

/* Hero Section - Critical */
#hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Navigation - Critical */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: #917754;
}

/* Text utilities */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Loading animation */
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: pageLoad 0.8s ease-out;
}

/* Hide until fonts load */
body.wf-loading {
  font-family: Arial, sans-serif;
}
