/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* FontAwesome CDN Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* CSS Variables - Color Palette (5 primary colors + shades) */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-color: #706bfa;
  --secondary-color: #ab78ff;
  --accent-color: #07a9d9;
  --success-color: #0fb185;
  --warning-color: #f6b203;
  
  /* Light Shades */
  --primary-light: #929bf7;
  --secondary-light: #d2bfff;
  --accent-light: #70ffff;
  --success-light: #6ae2bd;
  --warning-light: #ea8a12;
  
  /* Dark Shades */
  --primary-dark: #4323c3;
  --secondary-dark: #8138ea;
  --accent-dark: #0089ca;
  --success-dark: #00a07c;
  --warning-dark: #eb8215;
  
  /* Neutral Colors */
  --text-dark: #222838;
  --text-light: #64686e;
  --background-light: #f9fafb;
  --white: #ffffff;
  --border-color: #f7f7f7;
}

/* Navigation Font Size Reduction */
.navbar-brand {
  font-size: 10px !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
}

/* Conservative Typography - No Large Sizes */
h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

h2 {
  font-size: 1.84rem;
  font-weight: 600;
  color: var(--text-dark);
}

h3 {
  font-size: 1.59rem;
  font-weight: 500;
  color: var(--text-dark);
}

h4 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
}

h5 {
  font-size: 1.24rem;
  font-weight: 500;
  color: var(--text-dark);
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Minimal Body Styles */
body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Hero Section - Fullscreen Height */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}

/* Decorative Shapes for Hero */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero-decoration:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
}

.hero-decoration:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

/* Card Enhancements */
.card {
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Price Cards */
.price-card {
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.price-value {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Team Member Cards */
.team-member {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-light);
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1.59rem;
  border-left: 4px solid var(--primary-color);
}

/* Footer Styles */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(125, 143, 255, 0.25);
}

/* Breadcrumb Styles */
.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Contact Page Styles */
.contact-heading {
  padding-top: 100px;
}

.location-heading {
  padding-top: 225px;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

.bg-light-custom {
  background-color: var(--background-light);
}

.border-primary-custom {
  border-color: var(--primary-color);
} 

.hero-section h1 {
    padding-top: 275px;
}


/* 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;
    }
}
