/*
* Solar-Powered Phone Charging Kiosks Template
* Main CSS File with Bootstrap 5 Integration
*/

/* CSS Variables - Solar Theme Color Palette */
:root {
  /* Primary Colors - Solar/Energy Theme */
  --primary-solar: #ff771d;        /* Vibrant orange-red (solar energy) */
  --primary-green: #37a348;        /* Clean green (eco-friendly) */
  --primary-blue: #2b81ff;         /* Tech blue (innovation) */
  --primary-yellow: #ead10d;       /* Bright yellow (sun/energy) */
  --primary-teal: #009c96;         /* Modern teal (sustainability) */
  
  /* Light & Dark Shades */
  --light-bg: #F8F9FA;
  --light-grey: #edf3f7;
  --medium-grey: #73777e;
  --dark-grey: #24272c;
  --dark-bg: #232628;
  
  /* Text Colors */
  --text-primary: #1d2d3e;
  --text-secondary: #858b8f;
  --text-light: #FFFFFF;
  
  /* Spacing & Typography */
  --section-padding: 5rem 0;
  --border-radius: 0.5rem;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* 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(--text-primary);
  overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-solar);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: var(--primary-yellow);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(-15deg);
}

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

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

.section-subtitle {
  color: var(--primary-solar);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Card Styles */
.custom-card {
  background: #FFFFFF;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-solar);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

/* Services Section */
.service-card {
  text-align: center;
  padding: 2rem;
}

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

/* Features Section */
.feature-icon {
  background: var(--primary-blue);
}

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

.team-member-name {
  font-weight: 600;
  color: var(--text-primary);
}

.team-member-role {
  color: var(--primary-teal);
  font-size: 0.9rem;
}

/* Reviews Section */
.review-card {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-solar);
  padding: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
}

/* FAQ Section */
.faq-card {
  margin-bottom: 1rem;
  border: 1px solid var(--light-grey);
}

.faq-question {
  background: var(--light-bg);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: #FFFFFF;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--light-grey);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-solar);
  box-shadow: 0 0 0 0.2rem rgba(254, 137, 76, 0.25);
}

.btn-primary {
  background: var(--primary-solar);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #f06f1e;
  transform: translateY(-2px);
}

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

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

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

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

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

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Breadcrumb */
.breadcrumb {
  background: var(--light-bg);
  padding: 1rem 0;
}

.breadcrumb img {
  max-height: 20px;
}

/* Utilities */
.text-solar {
  color: var(--primary-solar);
}

.bg-solar {
  background-color: var(--primary-solar);
}

.text-green {
  color: var(--primary-green);
}

.bg-light-section {
  background-color: var(--light-bg);
}

/* Animation Support - 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;
    scroll-behavior: auto !important;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000 !important;
    background: #fff !important;
  }
} 

.hero-section h1 {
    padding-top: 125px;
}


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