/*
* 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: #ff822d;        /* Vibrant orange-red (solar energy) */
  --primary-green: #50a654;        /* Clean green (eco-friendly) */
  --primary-blue: #099eef;         /* Tech blue (innovation) */
  --primary-yellow: #f39a00;       /* Bright yellow (sun/energy) */
  --primary-teal: #00a181;         /* Modern teal (sustainability) */
  
  /* Light & Dark Shades */
  --light-bg: #F8F9FA;
  --light-grey: #e8f0fc;
  --medium-grey: #606d75;
  --dark-grey: #272a2d;
  --dark-bg: #1a1e21;
  
  /* Text Colors */
  --text-primary: #2f4360;
  --text-secondary: #606369;
  --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%, #d5e2eb 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(239, 118, 56, 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: #f4783a;
  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: 175px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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