/* Kohenoor International - Global Styles */

:root {
  --primary-color: #8B5A3C;
  --secondary-color: #D4A574;
  --accent-color: #2C3E50;
  --light-bg: #F5F1ED;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #E0D5CC;
  --success-color: #27AE60;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 150px;
  height: auto;
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a, nav button {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px 0;
}

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-top: 10px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/wp-content/uploads/2017/12/bg-settle.jpg');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

.hero-content {
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  font-size: 0.95em;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styling */
section {
  padding: 60px 0;
}

section h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 220px;
  background-color: #EEE;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.95em;
  line-height: 1.5;
}

/* Quality Section */
.quality-section {
  background-color: var(--light-bg);
}

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

.quality-item {
  text-align: center;
  padding: 20px;
}

.quality-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2em;
}

.quality-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Packaging Section */
.packaging-section {
  background-color: var(--white);
}

.packaging-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.packaging-text h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4em;
}

.packaging-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.packaging-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Inquiry Form */
.inquiry-form {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 40px auto;
}

.inquiry-form h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.5em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(139, 90, 60, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-item {
  background-color: var(--light-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.faq-question h4 {
  color: var(--primary-color);
  font-size: 1.1em;
}

.faq-question:hover h4 {
  color: var(--white);
}

.faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-question:hover .faq-toggle {
  color: var(--white);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px 20px;
  color: var(--text-light);
  background-color: var(--white);
  line-height: 1.7;
}

.faq-answer.show {
  display: block;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  border: none;
  color: var(--white);
  font-size: 1.5em;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.footer-section p {
  line-height: 1.8;
  font-size: 0.95em;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.9em;
  color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

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

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

  section {
    padding: 40px 0;
  }

  section h2 {
    font-size: 1.8em;
  }

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

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 25px;
    height: 25px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 85px;
    right: 20px;
    font-size: 1.2em;
  }
}

@media (max-width: 600px) {
  .logo {
    max-width: 120px;
  }

  nav {
    gap: 10px;
    font-size: 0.9em;
  }

  .hero {
    min-height: 300px;
  }

  .hero h1 {
    font-size: 1.5em;
  }

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

  .inquiry-form {
    padding: 20px;
  }

  section h2 {
    font-size: 1.5em;
    margin-bottom: 25px;
  }
}
