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

:root {
  --primary-bg: #F8F5F2;
  --secondary-bg: #F0F0F0;
  --text-dark: #333333;
  --text-accent: #2C3E50;
  --highlight: #8B0000;
  --highlight-alt: #2E8B57;
  --max-width: 1200px;
}

body {
  font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(248, 245, 242, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-accent);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a:hover {
  color: var(--highlight);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--highlight);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 140px);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 3rem;
  color: white;
}

.slide-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.intro-section {
  text-align: center;
  padding: 4rem 0;
}

.intro-section h1 {
  margin-bottom: 2rem;
  color: var(--text-accent);
}

.intro-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.9;
}

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

.content-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.content-card h3 {
  color: var(--highlight);
  margin-bottom: 1rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.collection-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.collection-caption {
  padding: 1.5rem;
  text-align: center;
}

.collection-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-accent);
}

.collection-caption p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.style-section {
  margin: 4rem 0;
}

.style-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.style-feature:nth-child(even) {
  direction: rtl;
}

.style-feature:nth-child(even) > * {
  direction: ltr;
}

.style-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.style-content h2 {
  color: var(--text-accent);
  margin-bottom: 1.5rem;
}

.style-content p {
  color: var(--text-dark);
  line-height: 1.9;
}

.style-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.style-gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

footer {
  background-color: var(--text-accent);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.highlight-text {
  color: var(--highlight);
  font-weight: 600;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-slider {
    height: 60vh;
  }

  .slide-overlay {
    padding: 1.5rem;
  }

  .slide-overlay h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .collection-item img {
    height: 400px;
  }

  .style-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .style-feature:nth-child(even) {
    direction: ltr;
  }

  .style-image {
    height: 400px;
  }

  .style-gallery {
    grid-template-columns: 1fr;
  }

  .style-gallery img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .nav-links {
    gap: 1rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .hero-slider {
    height: 50vh;
  }

  .collection-item img {
    height: 350px;
  }
}