:root {
  --primary-color: #824925;
  --primary-dark: #5e341b;
  --accent-color: #f2d16d;
  --secondary-color: #2c3e50;
  --bg-light: #fdfaf2;
  --text-dark: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

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

/* Hero Section */
.hero {
  padding: 180px 10% 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(circle at top right, rgba(242, 209, 109, 0.1), transparent),
    radial-gradient(circle at bottom left, rgba(130, 73, 37, 0.05), transparent);
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-group {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(130, 73, 37, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-badge {
  display: inline-block;
  transition: var(--transition);
}

.btn-badge img {
  height: 60px;
  display: block;
}

.btn-badge:hover {
  transform: scale(1.05);
}

.hero-image {
  position: relative;
  width: 40%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* Features Section */
.features {
  padding: 100px 10%;
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.feature-card .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
}

/* Gallery Section */
.gallery {
  padding: 100px 5%;
  background: var(--white);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 300px;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid #222;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Showcase Section */
.showcase {
  padding: 120px 10%;
  display: flex;
  align-items: center;
  gap: 80px;
  background-color: var(--bg-light);
}

.showcase-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.showcase-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.showcase-content {
  flex: 1;
}

.showcase-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  padding: 80px 10% 40px;
  background-color: var(--secondary-color);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-info h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-info p {
  opacity: 0.7;
  max-width: 300px;
}

.footer-links h5 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.6;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }

  .hero-content {
    margin-bottom: 60px;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-image {
    width: 80%;
  }

  .showcase {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 5%;
  }

  nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}