:root {
  --primary: #c9933b;
  /* Golden oil color */
  --primary-hover: #b88636;
  --bg-color: #fcfbfa;
  /* Warm off-white */
  --text-dark: #2c2a27;
  /* Soft black */
  --text-light: #5e5a55;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.7);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(252, 251, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 147, 59, 0.1);
  transition: var(--transition);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(201, 147, 59, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 147, 59, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  margin-top: 2rem;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  animation: slideUp 1s ease forwards;
  opacity: 0;
}

.badge {
  display: inline-block;
  background: rgba(201, 147, 59, 0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero h1 span {
  color: var(--primary);
  font-style: italic;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

.hero-image-wrapper img {
  max-width: 90%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.hero-image-wrapper img:hover {
  transform: scale(1.03);
}

/* Decorative Elements */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 147, 59, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation: float 6s ease-in-out infinite;
}

/* Features Section */
.features {
  padding: 5rem 5%;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-color);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(201, 147, 59, 0.08);
  border-color: rgba(201, 147, 59, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 147, 59, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(-50%) translatex(0px);
  }

  50% {
    transform: translateY(-55%) translatex(20px);
  }

  100% {
    transform: translateY(-50%) translatex(0px);
  }
}

/* Responsive */
@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-content {
    margin-bottom: 4rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-image-wrapper img {
    max-width: 100%;
  }

  .blob {
    top: 20%;
    right: -20%;
  }
}

@media screen and (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .price {
    font-size: 1.5rem;
  }
}