/* ==========================================
   American Chamber of eCommerce RFP Stylesheet
   ========================================== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ==========================================
   Header Styles
   ========================================== */

.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: #2d4d90;
  color: #fff;
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-info a {
  color: #fff;
  font-size: 14px;
}

.contact-info a:hover {
  color: #ffd700;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.chamber-btn {
  background: #fff;
  color: #2d4d90;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.chamber-btn:hover {
  background: #ffd700;
  color: #2d4d90;
}

.social-link {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.social-link:hover {
  color: #ffd700;
}

/* Main Header */
.main-header {
  padding: 15px 0;
}

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

.logo img {
  height: 80px;
  width: auto;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: #2d4d90;
  color: #fff;
}

.main-nav .icon {
  font-size: 20px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 30px;
  height: 3px;
  background: #2d4d90;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   Hero Section - Full Width
   ========================================== */

.hero-section {
  background-image: url('../images/american_chamber_of_ecommerce.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.hero-section {
  border-bottom: 1px solid #000;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 77, 144, 0.85) 0%, rgba(26, 45, 90, 0.85) 100%);
  z-index: 1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
  background-size: cover;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 23px rgba(0, 0, 0, 0.8);
}

.hero-breadcrumb {
  font-size: 18px;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  
  .hero-section {
    padding: 50px 0;
  }
}


/* ==========================================
   Main Content
   ========================================== */

.main-content {
  padding: 60px 0;
  min-height: 400px;
}

.bg-light {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.bg-light h3 {
  color: #2d4d90;
  margin-bottom: 20px;
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 3px solid #2d4d90;
}

.bg-light p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.marg-bot-10 {
  margin-bottom: 30px;
}

/* Counter Section */
.satisfied-wrapper {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.satisfied-wrapper .title h1 {
  color: #ccc;
  font-size: 32px;
  margin-bottom: 20px;
}

.satisfied-wrapper .title h2 {
  color: #2d4d90;
  font-size: 28px;
  margin-bottom: 40px;
}

.title-border-two {
  display: block;
  width: 80px;
  height: 3px;
  background: #2d4d90;
  margin: 20px auto;
}

.counter {
  padding: 20px;
}

.number {
  font-size: 60px;
  font-weight: bold;
  color: #2d4d90;
  margin-bottom: 15px;
}

.counter h3 {
  color: #333;
  font-size: 24px;
}

/* ==========================================
   Lower Section
   ========================================== */

.lower-section {
  background: radial-gradient(ellipse at center, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 1) 100%), #2d4d90;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  box-shadow: 0 -5px 50px rgba(0, 0, 0, 0.3);
}

.lower-content {
  max-width: 800px;
  margin: 0 auto;
}

.lower-title {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  margin: 20px auto;
  width: 90%;
}

.lower-subtitle {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* ==========================================
   Footer
   ========================================== */

.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo img,
.chamber-logo {
  max-width: 250px;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-link {
  color: #4a90e2;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffd700;
}

/* Copyright Section */
.copyright-section {
  background: #0f0f0f;
  color: #999;
  padding: 25px 0;
  text-align: center;
}

.copyright-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2d4d90;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ffd700;
  color: #2d4d90;
  transform: translateY(-3px);
}

.copyright-content p {
  font-size: 14px;
}

.copyright-content a {
  color: #4a90e2;
}

.copyright-content a:hover {
  color: #ffd700;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .main-nav.active {
    max-height: 400px;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
  }
  
  .main-nav li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-nav a {
    display: block;
    padding: 15px 20px;
    width: 100%;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .lower-title {
    font-size: 28px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .counter {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  
  .lower-title {
    font-size: 20px;
  }
  
  .chamber-btn {
    padding: 6px 15px;
    font-size: 12px;
  }
  
  .bg-light {
    padding: 20px;
  }
  
  .bg-light h3 {
    font-size: 20px;
  }
}




/* Update hover colors to red (#cc0000) - excluding navigation */

/* Links in content areas */
.main-content a:hover,
.bg-light a:hover,
.satisfied-wrapper a:hover {
  color: #cc0000;
}

/* Chamber button in top bar */
.chamber-btn:hover {
  background: #cc0000;
  color: #fff;
}

/* Social links */
.social-link:hover,
.social-icon:hover {
  color: #cc0000;
}

/* Footer links */
.footer-link:hover {
  color: #cc0000;
}

.copyright-content a:hover {
  color: #cc0000;
}

/* Social icons in footer */
.social-icon:hover {
  background: #cc0000;
  color: #fff;
}


