/* Nature-Inspired Wallpaper Shop - Main CSS */

/* Color Palette - Nature Inspired */
:root {
  --primary-forest: #2a6035;
  --primary-sage: #7ea16a;
  --primary-earth: #85735b;
  --primary-sky: #6d93e1;
  --primary-terracotta: #cf7a68;
  
  /* Light/Dark Shades */
  --forest-light: #3d7945;
  --forest-dark: #284830;
  --sage-light: #9ebc87;
  --sage-dark: #789751;
  --earth-light: #a49172;
  --earth-dark: #58472f;
  --sky-light: #89b6d3;
  --sky-dark: #4b74c4;
  --terracotta-light: #b7544b;
  --terracotta-dark: #a82d2c;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #747d85;
  --dark-gray: #3c474f;
  --black: #000000;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
h1 { font-size: 2.52rem; font-weight: 600; }
h2 { font-size: 2.04rem; font-weight: 600; }
h3 { font-size: 1.53rem; font-weight: 500; }
h4 { font-size: 1.36rem; font-weight: 500; }
h5 { font-size: 1.15rem; font-weight: 500; }
h6 { font-size: 1.14rem; font-weight: 500; }
p { font-size: 1.14rem; margin-bottom: 1.14rem; }

/* Header Styles */
.navbar-brand {
  font-size: 1.53rem !important;
  font-weight: 600;
  color: var(--primary-forest) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  box-shadow: 0 7px 18px rgba(50, 87, 62, 0.10);
  padding: 1rem 0;
}

.nav-link {
  color: var(--primary-forest) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--forest-light) 50%, var(--primary-sage) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../NIK_images/nature-hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.12rem;
  font-weight: 700;
  margin-bottom: 1.14rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.36rem;
  margin-bottom: 1.66rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.11rem;
  opacity: 0.85;
}

/* Decorative Shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-sage), var(--sage-light));
  opacity: 0.1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-22px); }
}

/* Section Styles */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.52rem;
  color: var(--primary-forest);
  margin-bottom: 1.14rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.36rem;
  color: var(--primary-sage);
  margin-bottom: 1.14rem;
  text-align: center;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--medium-gray);
  margin-bottom: 3.13rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 19px;
  box-shadow: 0 7px 20px rgba(40, 67, 48, 0.10);
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3.12rem;
  color: var(--primary-sage);
  margin-bottom: 1.14rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(36, 62, 41, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 2.11rem;
  border: 1px solid var(--sage-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(51, 102, 64, 0.20);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.66rem;
}

.service-name {
  font-size: 1.53rem;
  color: var(--primary-forest);
  margin-bottom: 1.14rem;
}

.service-desc {
  color: var(--medium-gray);
  margin-bottom: 1.66rem;
}

.service-price {
  font-size: 2.04rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 1.14rem;
}

.service-features {
  text-align: left;
  margin-bottom: 1.66rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--dark-gray);
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-sage) 100%);
  color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 3.12rem;
  margin-bottom: 1.14rem;
  color: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(34, 71, 40, 0.10);
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-forest), var(--primary-sage));
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--primary-sage);
  transform: scale(1.05);
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2.11rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-sage);
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.05);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-earth) 0%, var(--earth-light) 100%);
  color: var(--white);
}

.review-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2.11rem;
  backdrop-filter: blur(10px);
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--forest-light) 100%);
  color: var(--white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.14rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--terracotta-light) 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--terracotta-dark) 0%, var(--primary-terracotta) 100%);
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(47, 104, 64, 0.10);
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1.14rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-sage);
  color: var(--white);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--sage-dark);
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--sage-light);
}

/* Gallery Section */
.gallery-section {
  background: var(--dark-gray);
  padding: 5rem 0;
}

.gallery-item {
  margin-bottom: 2.11rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--sage-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

/* Breadcrumbs */
.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-sky) 0%, var(--sky-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages Styles */
.add-page-section {
  padding: 4rem 0;
}

.add-page-section:nth-child(even) {
  background: var(--light-gray);
}

.add-page-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(42, 87, 58, 0.10);
  margin-bottom: 2.11rem;
  transition: transform 0.3s ease;
}

.add-page-item:hover {
  transform: translateY(-3px);
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-pagination-bullet-active {
  background: var(--primary-forest);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Lightbox Customization */
.lb-data .lb-caption {
  font-size: 1.14rem;
  color: var(--white);
}

/* Utility Classes */
.text-primary-forest { color: var(--primary-forest); }
.text-primary-sage { color: var(--primary-sage); }
.text-primary-earth { color: var(--primary-earth); }
.text-primary-sky { color: var(--primary-sky); }
.text-primary-terracotta { color: var(--primary-terracotta); }

.bg-primary-forest { background-color: var(--primary-forest); }
.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-earth { background-color: var(--primary-earth); }
.bg-primary-sky { background-color: var(--primary-sky); }
.bg-primary-terracotta { background-color: var(--primary-terracotta); } 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
