/* ============================================= */
/* Personal Branding Portfolio Styles */
/* ============================================= */

/* Variables */
:root {
  --primary: #FF8C00;
  --secondary: #FDB800;
  --accent: #EF2E00;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #CCCCCC;
  --dark-gray: #222222;
  --light-gray: #111111;
  --text-color: #EEEEEE;
  --text-muted: #AAAAAA;
}

/* Base Styles */
body {
  background-color: var(--black);
  color: var(--text-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 18px;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--secondary);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 184, 0, 0.2);
}

/* Header Styles (Consistent with main site) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Hero Section */
.branding-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/branding-hero-bg.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.branding-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.branding-hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Branding Info Section */
.branding-info-section {
  padding: 80px 0;
  background-color: var(--dark-gray);
}

.info-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
}

.info-text p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.1);
}

.info-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-card h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 20px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 16px;
}

.info-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.info-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.info-image:hover img {
  transform: scale(1.05);
}

/* Why Personal Branding Matters */
.branding-matters {
  padding: 80px 0;
  background-color: var(--black);
}

.matters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.matter-item {
  background: var(--dark-gray);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.matter-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
}

.matter-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.matter-icon i {
  font-size: 32px;
  color: var(--white);
}

.matter-item h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 22px;
}

.matter-item p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Branding Process */
.branding-process {
  padding: 80px 0;
  background-color: var(--dark-gray);
}

.process-steps {
  margin-top: 50px;
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  flex: 1;
}

.step-content h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 24px;
}

.step-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 16px;
}

.step-content ul {
  list-style: none;
  margin-top: 15px;
}

.step-content ul li {
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
}

.step-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Portfolio Showcase */
.branding-showcase {
  padding: 80px 0;
  background-color: var(--black);
}

.showcase-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--dark-gray);
  color: var(--text-muted);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--black);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.showcase-item {
  background: var(--dark-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
}

.showcase-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.showcase-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-thumbnail img {
  transform: scale(1.1);
}

.view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 140, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.showcase-item:hover .view-btn {
  opacity: 1;
}

.view-btn i {
  color: var(--white);
  font-size: 24px;
}

.showcase-info {
  padding: 25px;
}

.showcase-info h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 20px;
}

.showcase-info p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 16px;
}

.showcase-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.showcase-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 14px;
}

.showcase-stats i {
  color: var(--primary);
}

/* Branding Elements */
.branding-elements {
  padding: 80px 0;
  background-color: var(--dark-gray);
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.element-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.element-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
}

.element-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.element-icon i {
  font-size: 30px;
  color: var(--primary);
}

.element-card h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 22px;
}

.element-card ul {
  list-style: none;
}

.element-card ul li {
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
}

.element-card ul li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 14px;
}

/* CTA Section */
.branding-cta {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/branding-cta-bg.jpg') no-repeat center center/cover;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--black);
}

/* ============================================= */
/* Responsive Styles */
/* ============================================= */

@media (max-width: 1200px) {
  .info-content {
    gap: 40px;
  }
  
  .process-step {
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .info-content {
    flex-direction: column;
  }
  
  .info-image {
    margin-top: 40px;
    max-width: 600px;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 20px;
  }
  
  .showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 30px;
  }
  
  .branding-hero-content h1 {
    font-size: 36px;
  }
  
  .info-text h2 {
    font-size: 30px;
  }
  
  .cta-content h2 {
    font-size: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 26px;
  }
  
  .section-title p {
    font-size: 16px;
  }
  
  .branding-hero-content h1 {
    font-size: 28px;
  }
  
  .branding-hero-content p {
    font-size: 16px;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .matters-grid {
    grid-template-columns: 1fr;
  }
  
  .elements-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .cta-content h2 {
    font-size: 26px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}