/* ==========================
   VINTAGE POSTER GALLERY - MAIN CSS
   ========================== */

/* CSS Variables - Color Palette (5 primary + shades) */
:root {
  /* Primary Colors */
  --color-primary: #8B4A7A;      /* Vintage Purple */
  --color-secondary: #D4A574;    /* Antique Gold */
  --color-accent: #6B8CAE;       /* Dusty Blue */
  --color-warm: #C4967C;         /* Warm Terracotta */
  --color-sage: #9CAF88;         /* Sage Green */
  
  /* Light Shades */
  --color-primary-light: #B87AA8;
  --color-secondary-light: #E8C9A0;
  --color-accent-light: #8FA9C4;
  --color-warm-light: #D8B49A;
  --color-sage-light: #B5C7A5;
  
  /* Dark Shades */
  --color-primary-dark: #5E3153;
  --color-secondary-dark: #A6854D;
  --color-accent-dark: #4A6580;
  --color-warm-dark: #9A7459;
  --color-sage-dark: #6B7A5F;
  
  /* Neutral Colors */
  --color-light: #F8F6F3;
  --color-dark: #2C2825;
  --color-muted: #6C6B68;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
    overflow-x: hidden;
}

/* Typography */
h1, .h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

h2, .h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-accent-dark);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

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

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../DIN_images/hero-poster.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--color-secondary);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: var(--color-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

/* Cards */
.custom-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background: white;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.custom-card img {
  border-radius: 15px 15px 0 0;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

/* Services Cards */
.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 15px;
  border: 2px solid var(--color-accent-light);
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-primary);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-accent-light);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--color-secondary-light);
}

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

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-accent-light);
  border-radius: 10px;
  background: white;
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--color-muted);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--color-accent-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(139, 74, 122, 0.25);
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--color-muted);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--color-accent-light);
  transition: transform 0.3s ease;
}

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

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--color-accent-light);
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--color-accent-light);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  border: 1px solid var(--color-accent-light);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--color-primary-dark);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
} 


/* 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;
    }
}
