/* Main CSS file for 3D-printed jewelry studio template */

:root {
  /* Primary color palette */
  --primary-color: #edcdff;
  --secondary-color: #92beff;
  --accent-color: #fdc1ca;
  --neutral-color: #f8f9fa;
  --dark-color: #323c45;
  
  /* Shades */
  --primary-light: #f2dfff;
  --primary-dark: #dfb7fe;
  --secondary-light: #a8d2ef;
  --secondary-dark: #58b4e6;
  --accent-light: #ffc7d6;
  --accent-dark: #ff9393;
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

/* Common section styling */
section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.section-subtitle {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--secondary-dark);
}

.section-description {
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.navbar {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hero-section .btn {
  padding: 10px 25px;
  margin-top: 20px;
}

/* About Section */
.about-section {
  background-color: var(--neutral-color);
}

.feature-card {
  padding: 25px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: #fff;
}

.service-card {
  padding: 30px 25px;
  border-radius: 10px;
  background-color: var(--neutral-color);
  margin-bottom: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-card h4 {
  font-size: 1.2rem;
  margin: 15px 0;
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 15px;
}

.service-features {
  margin: 15px 0;
  padding-left: 20px;
}

/* Features Section */
.features-section {
  background-color: var(--secondary-light);
}

.feature-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 30px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-color);
}

.price-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 20px 0;
}

.price-features {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-card {
  background-color: var(--neutral-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 100%;
}

.team-img {
  width: 100%;
  height: auto;
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--secondary-dark);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-light);
}

.review-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 30px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
}

/* Case Studies Section */
.casestudy-section {
  background-color: var(--neutral-color);
}

.casestudy-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  height: 100%;
  background-color: #fff;
}

.casestudy-content {
  padding: 25px;
}

.casestudy-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Process Section */
.process-section {
  background-color: #fff;
}

.process-item {
  display: flex;
  margin-bottom: 30px;
}

.process-number {
  background-color: var(--accent-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}

.process-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--secondary-light);
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
  border-left: 2px solid var(--accent-color);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Career Section */
.career-section {
  background-color: var(--neutral-color);
}

.career-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
}

.career-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.career-role {
  color: var(--secondary-dark);
  margin-bottom: 15px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.core-info-item {
  background-color: var(--neutral-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  height: 100%;
}

.core-info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-light);
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.contact-info {
  background-color: var(--accent-light);
  padding: 40px;
  border-radius: 10px;
  height: 100%;
}

.contact-info h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item i {
  width: 25px;
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-color);
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

.faq-card {
  background-color: var(--neutral-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-light);
  padding-bottom: 50px;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 60px 0 30px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 25px;
}

.footer-about {
  margin-bottom: 30px;
}

.policy-links {
  list-style: none;
  padding-left: 0;
}

.policy-links li {
  margin-bottom: 10px;
}

.policy-links a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.policy-links a:hover {
  opacity: 1;
}

.contact-info-footer {
  margin-bottom: 30px;
}

.contact-info-footer p {
  margin-bottom: 10px;
}

.contact-info-footer i {
  width: 20px;
  margin-right: 10px;
}

.site-disclaimer {
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-copyright {
  opacity: 0.7;
  font-size: 0.8rem;
  margin: 0;
}

/* Breadcrumbs */
.breadcrumb-section {
  background-color: var(--neutral-color);
  padding: 15px 0;
}

/* Additional pages */
.page-section {
  padding: 80px 0;
}

.page-section:nth-child(odd) {
  background-color: var(--neutral-color);
}

.page-section:nth-child(even) {
  background-color: #fff;
}

/* Common Elements */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}

.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--dark-color);
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto 30px;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
