/* DROLMA Gift Box - Component Styles */

/* Header & Navigation - Original DROLMA Style */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.main-header.scrolled .logo-img {
  height: 70px;
}

.main-header.scrolled .nav-container {
  min-height: 70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}

.logo {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  max-width: 250px;
  filter: contrast(1.2) brightness(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: var(--secondary-green);
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a:hover {
  color: var(--accent-gold);
}

/* Header CTA Button */
.header-cta-btn {
  background: var(--accent-gold);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.header-cta-btn:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Dropdown Menus */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius);
  overflow: hidden;
  z-index: 1001;
}

.dropdown-content a {
  display: block;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--text-dark);
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background: var(--soft-gray);
  color: var(--primary-color);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Footer */
.main-footer {
  background: var(--primary-green);
  color: white;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 20px 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Product Pages */
.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem var(--container-padding);
}

.product-gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.thumbnail-gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
  opacity: 1;
}

.product-info {
  padding-left: 1rem;
}

.product-info h1 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-info h2 {
  color: var(--text-medium);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.perfect-for {
  background: var(--soft-gray);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-color);
}

.perfect-for strong {
  color: var(--primary-color);
}

.whats-included {
  margin: 2rem 0;
}

.whats-included h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.whats-included ul {
  list-style: none;
  padding: 0;
}

.whats-included li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whats-included li:before {
  content: "✅";
  font-size: 1.1rem;
}

.cta-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 2rem 0;
}

.cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.additional-info {
  background: var(--soft-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.additional-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* Contact Form - Original DROLMA Style */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h3 {
  color: var(--primary-green);
  margin-bottom: 2rem;
  text-align: center;
  font-family: var(--font-secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.contact-form button {
  width: 100%;
  background: var(--accent-gold);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

/* Hero Sections - Original DROLMA Style */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 500px;
}

.hero h1 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--secondary-green);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

/* Package Cards */
.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.package-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.package-card-content {
  padding: 2rem;
}

.package-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-green);
  font-family: var(--font-secondary);
  font-size: 1.5rem;
}

.package-card .subtitle {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.package-card .description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Journal Cards */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.journal-card {
  background: white;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.journal-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.journal-card-content {
  padding: 1.5rem;
}

.journal-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.journal-card .excerpt {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.journal-card .date {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.journal-card .read-more {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.journal-card .read-more:hover {
  color: var(--secondary-color);
}

/* Solutions Pages */
.solutions-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  padding: 8rem 0 6rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.solutions-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

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

.service-area {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.service-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-area h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
}

.service-area p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Coming Soon dropdown item */
.dropdown-content .coming-soon {
  display: block;
  padding: 0.875rem 1.25rem;
  color: #666;
  font-style: italic;
  font-size: 0.9rem;
  border-bottom: none;
  background: #f8f9fa;
  cursor: default;
}

/* Service area images */
.service-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-area:hover .service-image {
  transform: translateY(-5px);
}

/* Animation classes */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Privacy Policy Styles */
.privacy-policy {
  padding: 140px 0 80px;
  background: white;
  min-height: 60vh;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.policy-content h1 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.policy-content h2 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-green);
  margin: 2.5rem 0 1rem 0;
}

.policy-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.policy-content ul {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* Base animation styles */
.card, .package-card, .service-area, .journal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
