/* VOGUE AUCTIONS - Limited-Edition Designer Home Décor Auctions
   Main Stylesheet - Created 2025 */

:root {
  /* Primary Color Palette */
  --primary-color: #d2b48c;      /* Tan - Warm neutral base */
  --secondary-color: #8a7357;    /* Rich taupe - Earthy sophisticated accent */
  --tertiary-color: #e8d9c0;     /* Cream - Light contrast */
  --accent-color: #b76e79;       /* Dusty rose - Warm accent */
  --dark-accent: #453433;        /* Dark brown - Rich contrast */
  
  /* Background colors */
  --bg-light: #faf7f2;           /* Light cream background */
  --bg-medium: #efe8dd;          /* Medium cream background */
  --bg-dark: #302520;            /* Dark background for contrast */
  
  /* Text colors */
  --text-primary: #302520;       /* Dark brown - Main text */
  --text-secondary: #8a7357;     /* Muted taupe - Secondary text */
  --text-light: #faf7f2;         /* Light cream - Text on dark backgrounds */
  --text-accent: #b76e79;        /* Dusty rose - Accent text */
  
  /* UI Elements */
  --border-color: #d2b48c;       /* Border accent */
  --shadow-color: rgba(48, 37, 32, 0.1); /* Soft shadow */
  --overlay-color: rgba(48, 37, 32, 0.7); /* Dark overlay */
  --overlay-light: rgba(250, 247, 242, 0.8); /* Light overlay */
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--primary-color);
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--text-accent);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--primary-color);
  background-color: transparent;
  color: var(--text-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover {
  color: var(--bg-light);
}

.btn:hover:before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-light);
  border: none;
}

.btn-primary:before {
  background-color: var(--secondary-color);
}

/* Decorative Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary-color);
  opacity: 0.1;
  transform: rotate(45deg);
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  opacity: 0.1;
}

.shape-3 {
  top: 50%;
  right: 10%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  opacity: 0.1;
  transform: rotate(30deg);
}

.overlay-light {
  background-color: var(--overlay-light);
}

.overlay-dark {
  background-color: var(--overlay-color);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--bg-dark);
  box-shadow: 0 5px 20px var(--shadow-color);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.8rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-slider .slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-light);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

/* Hero Static Section */
.hero-static {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-static:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-static .hero-content {
    padding: 30px;
    z-index: 2;
}

.hero-static .hero-content .subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-static .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.hero-static .hero-content p {
    font-size: 1.125rem;
    margin-bottom: 15px;
    max-width: 600px;
}

.hero-static .hero-image {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-static .hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991.98px) {
    .hero-static {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-static .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-static .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-static .hero-content p {
        margin: 0 auto 15px;
    }
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  padding: 50px 0;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 20px 20px 0 var(--primary-color);
}

/* Services Section */
.services {
  background-color: var(--bg-medium);
  position: relative;
  overflow: hidden;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background-color: var(--bg-light);
  padding: 40px 30px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-item-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-item-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Features Section */
.features {
  position: relative;
}

.feature-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  min-width: 50px;
}

.feature-content h4 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--bg-medium);
  position: relative;
}

.price-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.price-item {
  background-color: var(--bg-light);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.price-header {
  background-color: var(--primary-color);
  padding: 30px 20px;
  text-align: center;
  color: var(--text-light);
}

.price-name {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.price-features {
  padding: 30px 20px;
  text-align: center;
}

.price-feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.price-feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-medium);
}

/* Team Section */
.team {
  position: relative;
}

.team-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-item {
  text-align: center;
  transition: all 0.3s ease;
}

.team-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 5px;
}

.team-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-item:hover .team-image img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--text-accent);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews {
  background-color: var(--bg-medium);
  position: relative;
}

.reviews-slider {
  margin-top: 50px;
  position: relative;
}

.review-item {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 10px 30px var(--shadow-color);
  text-align: center;
  margin: 20px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.review-text:before {
  top: -20px;
  left: -10px;
}

.review-text:after {
  bottom: -40px;
  right: -10px;
}

.review-author {
  font-weight: 700;
  color: var(--text-primary);
}

/* Core Info Section */
.core-info {
  position: relative;
}

.core-info-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.core-info-item {
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: 5px;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.core-info-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: var(--bg-medium);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--bg-medium);
  border-radius: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-info {
  padding: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
}

.contact-info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-desc {
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: var(--text-light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* SPACE Page */
.space-section {
  min-height: 500px;
  padding: 100px 0;
}

