/* Updated Variables for Old Money Aesthetic */
:root {
  --primary: #1a1a1a;
  --secondary: #2c2c2c;
  --accent: #8b4513;
  --text-dark: #2c1810;
  --text-light: #6b4f4f;
  --background: #f5f5f5;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a959' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Background Elements */
.bg-elements {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -200px;
  left: -100px;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -150px;
  right: -100px;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Add scroll effect */
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-brand {
  color: #cde036;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-link {
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 800px;
  padding: 3rem;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideDown 1s ease-out;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: slideUp 1s ease-out;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fadeIn 1.2s ease-out;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
  padding: 6rem 3rem;
  background: var(--white);
  border-radius: var(--radius);
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: var(--shadow-md);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary);
}

.section-header p {
  color: var(--text-light);
  font-size: 20px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  background: var(--primary);
  color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-info p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 1rem;
  box-shadow: var(--shadow-md);
}

.info-card i {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 6rem 3rem;
  background: var(--white);
  border-radius: var(--radius);
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: var(--shadow-md);
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-card i {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.copyright {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
      padding: 1rem;
  }

  .nav-links {
      display: none;
  }

  .mobile-menu {
      display: flex;
  }

  .hero {
      background-attachment: scroll;
  }

  .hero-title {
      font-size: 2.5rem;
  }

  .hero-subtitle {
      font-size: 1.2rem;
  }

  .hero-content {
      padding: 2rem;
      margin: 0 1rem;
  }

  .location-content {
      grid-template-columns: 1fr;
  }

  .map-container iframe {
      height: 300px;
  }

  .contact {
      padding: 4rem 1.5rem;
  }

  .contact-card {
      padding: 2rem;
      min-width: 250px;
  }

  .contact-card i {
      font-size: 2rem;
  }

  .contact-card h3 {
      font-size: 1.3rem;
  }

  .contact-card p {
      font-size: 1.1rem;
  }

  .product-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
  }

  .product-info {
      padding: 1.2rem;
  }

  .product-info h3 {
      font-size: 1.3rem;
  }

  .product-info p {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 2rem;
  }

  .hero-subtitle {
      font-size: 1rem;
  }

  .hero-content {
      padding: 1.5rem;
  }

  .section-header h2 {
      font-size: 2rem;
  }

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

/* Add these new styles for the brochure download button */
.brochure-download {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0 2rem 0;
    padding: 1rem;
}

.download-button {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.2rem;
    overflow: hidden;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.button-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1;
}

.download-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.download-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.download-button:hover i {
    transform: translateY(-2px);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.download-button:hover .button-shine {
    left: 100%;
}

/* Add a subtle animation for the button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.download-button {
    animation: pulse 2s infinite;
}

/* Responsive styles for the button */
@media (max-width: 768px) {
    .download-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .button-content {
        gap: 0.5rem;
    }
    
    .download-button i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .download-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Add a subtle overlay animation */
@keyframes overlayFade {
    from {
        background: rgba(0, 0, 0, 0.8);
    }
    to {
        background: rgba(0, 0, 0, 0.6);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    animation: gradientFade 2s ease-out;
}

/* Add these new styles for decorative elements */
.decorative-line {
    height: 2px;
    background: var(--primary);
    margin: 2rem 0;
    position: relative;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.decorative-line::before {
    left: 0;
}

.decorative-line::after {
    right: 0;
}

/* Update and add these styles for the mobile navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    /* Mobile Menu Button Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* Add new animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

