/* ===============================
   Museum Exhibit Rentals Template 
   Main CSS - Bootstrap 5 Based
   =============================== */

/* Color Palette - 5 Primary Colors + Variations */
:root {
  /* Primary Colors */
  --color-primary: #4a5568;        /* Slate Blue */
  --color-secondary: #f7fafc;      /* Light Gray */
  --color-accent: #81c784;         /* Soft Green */
  --color-highlight: #ffb74d;      /* Warm Orange */
  --color-neutral: #e2e8f0;        /* Cool Gray */
  
  /* Light Variations */
  --color-primary-light: #718096;
  --color-secondary-light: #ffffff;
  --color-accent-light: #a5d6a7;
  --color-highlight-light: #ffcc80;
  --color-neutral-light: #f7fafc;
  
  /* Dark Variations */
  --color-primary-dark: #2d3748;
  --color-secondary-dark: #cbd5e0;
  --color-accent-dark: #66bb6a;
  --color-highlight-dark: #ff9800;
  --color-neutral-dark: #a0aec0;
  
  /* Typography */
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-padding: 2rem;
  --border-radius: 0.5rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-primary);
  line-height: 1.6;
  background-color: var(--color-secondary);
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-body);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary) !important;
}

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

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

.hero-content {
  z-index: 2;
    padding-top: 125px;
}

.hero-image {
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-highlight-light));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
}

/* Cards */
.custom-card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  height: 100%;
}

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

/* Service Cards */
.service-card {
  text-align: center;
  padding: var(--card-padding);
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.price-tag {
  background-color: var(--color-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Cards */
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(129, 199, 132, 0.25);
}

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

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

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

.footer h5 {
  color: var(--color-highlight);
  margin-bottom: 1.5rem;
}

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

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

/* FAQ Cards */
.faq-card {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  min-height: 0;
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.faq-card p {
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Gallery */
.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

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

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--color-neutral-light);
}

.breadcrumb-image {
  width: auto;
  height: 30px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Footer */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-secondary-light);
}

.footer .text-muted {
  color: var(--color-neutral-light) !important;
}

/* Additional Page Styles */
.page-section {
  padding: 3rem 0;
}

.page-header {
  background-color: var(--color-neutral-light);
  padding: 2rem 0;
}

/* Contact Info Cards */
.contact-info-card {
  background-color: var(--color-accent-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  height: 100%;
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
} 


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

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.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;
    }
}
