/* Import additional styles */
@import url('additional.css');

/* Main Styles for Robinsong Computers Website */
:root {
  --primary-color: #f0a500; /* Gold/orange color from original site */
  --secondary-color: #cf5c36; /* Reddish accent for the robin */
  --dark-color: #000000; /* Pure black background from original site */
  --light-color: #f4f4f4;
  --success-color: #28a745;
  --danger-color: #dc3545;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: var(--dark-color);
  background-image: url('../images/circuit-background.png');
  background-attachment: fixed;
  background-size: cover;
  color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: var(--light-color);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(240, 165, 0, 0.3);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--dark-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s;
}

.btn:hover {
  background: #d89400;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--dark-color);
}

/* Services Section */
.services {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(240, 165, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.3);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-card p {
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(240, 165, 0, 0.2);
}

.testimonial-card:hover {
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.3);
}

.testimonial-card p {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.author-info small {
  color: #aaa;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-details i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  width: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(240, 165, 0, 0.3);
  border-radius: 5px;
  color: var(--light-color);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 5px rgba(240, 165, 0, 0.5);
}

.contact-form textarea {
  height: 150px;
}

.map {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(240, 165, 0, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
  min-width: 300px;
  margin-bottom: 20px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section ul li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin: 0 10px;
  transition: all 0.3s;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--dark-color);
}

.copyright {
  margin-top: 30px;
  border-top: 1px solid rgba(240, 165, 0, 0.2);
  padding-top: 20px;
  color: #aaa;
}

/* Local Business Schema Styling */
.business-schema {
  display: none;
}

/* Service Area Styling */
.service-area {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.7);
}

.service-area-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.service-area-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.service-area-map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

/* Booking System Styling */
.booking-system {
  padding: 80px 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.booking-options h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.booking-options p {
  margin-bottom: 30px;
}

.booking-calendar {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.booking-slot {
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

.booking-slot:hover {
  background: var(--primary-color);
  color: var(--dark-color);
}

.booking-slot.selected {
  background: var(--primary-color);
  color: var(--dark-color);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.3);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.pricing-card .price {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--light-color);
}

.pricing-card ul {
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240, 165, 0, 0.2);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* Hero Logo Styling */
.hero-logo {
  max-width: 500px;
  margin: 0 auto 30px;
}

/* Content sections with background */
.content-section {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

/* FAQ items */
.faq-item {
  background: rgba(0, 0, 0, 0.8) !important;
  border: 1px solid rgba(240, 165, 0, 0.3) !important;
}

.faq-item:hover {
  border: 1px solid var(--primary-color) !important;
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.3);
}

.faq-item h3 {
  color: var(--primary-color);
}

/* Business hours cards */
.hours-card {
  background: rgba(0, 0, 0, 0.8) !important;
  border: 1px solid rgba(240, 165, 0, 0.3) !important;
}

.hours-card:hover {
  border: 1px solid var(--primary-color) !important;
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.3);
}

.hours-card h3 {
  color: var(--primary-color);
}

/* Info cards */
.info-card {
  background: rgba(0, 0, 0, 0.8) !important;
  border: 1px solid rgba(240, 165, 0, 0.3) !important;
}

.info-card:hover {
  border: 1px solid var(--primary-color) !important;
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.3);
}

.info-card h4 {
  color: var(--primary-color);
}
