/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  max-width: 550px;
  z-index: 2;
}

.about-hero-content h1 {
  font-size: 90px;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-hero-content h1 span {
  display: block;
  color: #000;
}

.about-hero-content p {
  font-size: 24px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  line-height: 1.4;
}

.about-hero-image {
  position: relative;
  z-index: 1;
}

.about-hero-image img {
  max-width: 400px;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.about-hero-image img:hover {
  transform: scale(1.05);
}

/* Container for sections */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 48px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d5ff40;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Our Story Section */
.our-story {
  background-color: white;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.story-image img:hover {
  transform: scale(1.03);
}

.story-text {
  flex: 1;
}

.story-text p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Our Mission Section */
.our-mission {
  background-color: #d5ff40;
  position: relative;
  overflow: hidden;
}

.mission-content {
  display: flex;
  justify-content: center;
}

.mission-text {
  max-width: 900px;
  text-align: center;
}

.mission-statement {
  font-family: "Bangers", system-ui;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 60px;
  position: relative;
  padding: 0 40px;
}

.mission-statement::before,
.mission-statement::after {
  content: '"';
  font-size: 80px;
  font-family: Georgia, serif;
  position: absolute;
  color: rgba(0, 0, 0, 0.1);
  line-height: 0;
}

.mission-statement::before {
  left: 0;
  top: 30px;
}

.mission-statement::after {
  right: 0;
  bottom: -10px;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.value-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 40px;
  color: #d5ff40;
  background-color: #000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-item h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.value-item p {
  font-family: Arial, Helvetica, sans-serif;
  color: #555;
}

/* Connect With Us Section */
.connect-section {
  background-color: rgb(241, 241, 241);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.connect-box {
  position: relative;
  background-color: #f9f9f9;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.connect-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.connect-content {
  max-width: 500px;
}

.connect-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.connect-icon-wrapper {
  background-color: #000;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.connect-box:hover .connect-icon-wrapper {
  background-color: #d5ff40;
  color: #000;
  transform: rotate(10deg);
}

.instagram-icon {
  transition: transform 0.3s ease;
}

.connect-box:hover .instagram-icon {
  transform: scale(1.1);
}

.connect-title {
  font-family: 'Arial', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0;
  transition: transform 0.3s ease;
}

.connect-box:hover .connect-title {
  transform: translateX(5px);
}

.connect-text {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.follow-button {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  color: white;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.follow-button:hover {
  background-color: #d5ff40;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.follow-button:hover .btn-icon {
  transform: rotate(15deg);
}

/* Instagram Preview Section */
.instagram-preview {
  flex: 0 0 400px;
  position: relative;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  height: 350px;
}

.preview-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.preview-item:hover {
  transform: scale(1.05);
  z-index: 5;
}

.preview-image {
  width: 100%;
  height: 100%;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.preview-item:nth-child(1) .preview-image {
  background-image: url('https://images.pexels.com/photos/1108099/pexels-photo-1108099.jpeg');
}

.preview-item:nth-child(2) .preview-image {
  background-image: url('https://images.pexels.com/photos/1254140/pexels-photo-1254140.jpeg');
}

.preview-item:nth-child(3) .preview-image {
  background-image: url('https://images.pexels.com/photos/58997/pexels-photo-58997.jpeg');
}

.preview-item:nth-child(4) .preview-image {
  background-image: url('https://images.pexels.com/photos/374898/pexels-photo-374898.jpeg');
}

.preview-item:hover .preview-image {
  transform: scale(1.1);
}

/* Decorative Elements */
.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  width: 200px;
  height: 200px;
  background-color: #d5ff40;
  top: -50px;
  left: -50px;
}

.circle-2 {
  width: 150px;
  height: 150px;
  background-color: #000;
  bottom: -30px;
  right: 10%;
}

.deco-line {
  position: absolute;
  background-color: #d5ff40;
  opacity: 0.2;
}

.line-1 {
  width: 150px;
  height: 8px;
  top: 30%;
  right: -20px;
  transform: rotate(45deg);
}

.line-2 {
  width: 100px;
  height: 8px;
  bottom: 25%;
  left: 10%;
  transform: rotate(-30deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .connect-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .connect-content {
    text-align: center;
    max-width: 600px;
  }
  
  .connect-header {
    justify-content: center;
  }
  
  .instagram-preview {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .connect-box {
    padding: 40px 25px;
  }
  
  .connect-title {
    font-size: 28px;
  }
  
  .connect-text {
    font-size: 16px;
  }
  
  .preview-grid {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .connect-section {
    padding: 50px 15px;
  }
  
  .connect-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .connect-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .connect-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .connect-title {
    font-size: 24px;
  }
  
  .follow-button {
    width: 100%;
    justify-content: center;
  }
  
  .preview-grid {
    height: 250px;
    gap: 10px;
  }
}



/* Furry Testers Section */
.furry-testers {
  background-color: #d5ff40;
  padding: 80px 0;
}

.tester-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.tester-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tester-card:hover {
  transform: translateY(-10px);
}

.tester-image {
  height: 250px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tester-image img {
  width: 80%;
  height: auto;
  transition: transform 0.5s ease;
}

.tester-card:hover .tester-image img {
  transform: scale(1.1);
}

.tester-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  margin: 20px 0 5px;
}

.tester-card p {
  font-family: "Bangers", system-ui;
  color: #555;
  margin-bottom: 20px;
  font-size: 18px;
}

/* Active Navigation Link */
nav a.active::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-hero {
    padding: 60px 80px;
  }

  .about-hero-content h1 {
    font-size: 80px;
  }

  .about-hero-image img {
    max-width: 350px;
  }
}

@media (max-width: 992px) {
  .about-hero {
    padding: 40px 60px;
  }

  .about-hero-content h1 {
    font-size: 70px;
  }

  .about-hero-content p {
    font-size: 20px;
  }

  .about-hero-image img {
    max-width: 300px;
  }

  .section-title {
    font-size: 40px;
  }

  .story-content {
    flex-direction: column;
  }

  .mission-statement {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 40px 60px;
  }

  .about-hero-content {
    margin-bottom: 40px;
  }

  .about-hero-content h1 {
    font-size: 60px;
  }

  .section-title {
    font-size: 36px;
  }

  .mission-values {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .join-form {
    flex-direction: column;
  }

  .join-form input {
    border-radius: 30px;
    margin-bottom: 15px;
  }

  .join-form button {
    border-radius: 30px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 30px 20px 50px;
  }

  .about-hero-content h1 {
    font-size: 50px;
  }

  .about-hero-content p {
    font-size: 18px;
  }

  .about-hero-image img {
    max-width: 250px;
  }

  .section-title {
    font-size: 32px;
  }

  .story-text p {
    font-size: 16px;
  }

  .mission-statement {
    font-size: 24px;
    padding: 0 20px;
  }

  .member-image {
    height: 250px;
  }
}

/* Enhanced Responsive Design for About Page */
@media (max-width: 1400px) {
  .about-hero {
    padding: 60px 80px;
  }

  .about-hero-content h1 {
    font-size: 85px;
  }

  .about-hero-image img {
    max-width: 380px;
  }

  .story-content {
    gap: 40px;
  }

  .mission-statement {
    font-size: 34px;
  }
}

@media (max-width: 1200px) {
  .about-hero {
    padding: 60px 60px;
  }

  .about-hero-content h1 {
    font-size: 75px;
  }

  .about-hero-content p {
    font-size: 22px;
  }

  .about-hero-image img {
    max-width: 350px;
  }

  .section-title {
    font-size: 42px;
  }

  .story-content {
    gap: 35px;
  }

  .story-text p {
    font-size: 17px;
  }

  .mission-statement {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .mission-values {
    gap: 25px;
  }

  .value-item {
    padding: 25px;
  }

  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }

  .value-item h3 {
    font-size: 20px;
  }

  .team-grid {
    gap: 25px;
  }

  .member-image {
    height: 280px;
  }

  .tester-card {
    width: 280px;
  }

  .tester-image {
    height: 230px;
  }
}

@media (max-width: 992px) {
  .about-hero {
    padding: 40px 40px;
  }

  .about-hero-content h1 {
    font-size: 65px;
  }

  .about-hero-content p {
    font-size: 20px;
  }

  .about-hero-image img {
    max-width: 300px;
  }

  .section-title {
    font-size: 36px;
  }

  .story-content {
    flex-direction: column;
    gap: 30px;
  }

  .story-text p {
    font-size: 16px;
  }

  .mission-statement {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .mission-values {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .value-item {
    padding: 20px;
  }

  .value-icon {
    width: 65px;
    height: 65px;
    font-size: 32px;
  }

  .value-item h3 {
    font-size: 19px;
  }

  .value-item p {
    font-size: 14px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }

  .member-image {
    height: 260px;
  }

  .team-member h3 {
    font-size: 20px;
  }

  .member-title {
    font-size: 16px;
  }

  .member-bio {
    font-size: 13px;
  }

  .tester-grid {
    gap: 25px;
  }

  .tester-card {
    width: 260px;
  }

  .tester-image {
    height: 220px;
  }

  .tester-card h3 {
    font-size: 22px;
  }

  .tester-card p {
    font-size: 16px;
  }

  .join-content h2 {
    font-size: 42px;
  }

  .join-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px 50px;
  }

  .about-hero-content {
    margin-bottom: 30px;
  }

  .about-hero-content h1 {
    font-size: 50px;
  }

  .about-hero-content p {
    font-size: 18px;
  }

  .about-hero-image img {
    max-width: 250px;
  }

  .section-title {
    font-size: 32px;
  }

  .story-text p {
    font-size: 15px;
  }

  .mission-statement {
    font-size: 24px;
    padding: 0 20px;
    margin-bottom: 35px;
  }

  .mission-values {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
  }

  .value-item {
    padding: 18px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .value-item h3 {
    font-size: 18px;
  }

  .value-item p {
    font-size: 13px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
  }

  .member-image {
    height: 240px;
  }

  .team-member h3 {
    font-size: 19px;
    margin: 18px 18px 5px;
  }

  .member-title {
    font-size: 15px;
    margin: 0 18px 12px;
  }

  .member-bio {
    font-size: 12px;
    margin: 0 18px 18px;
  }

  .member-social {
    padding: 0 18px 18px;
    gap: 12px;
  }

  .member-social a {
    font-size: 18px;
  }

  .tester-grid {
    gap: 20px;
  }

  .tester-card {
    width: 250px;
  }

  .tester-image {
    height: 200px;
  }

  .tester-card h3 {
    font-size: 20px;
    margin: 18px 0 5px;
  }

  .tester-card p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .join-content h2 {
    font-size: 36px;
  }

  .join-content p {
    font-size: 15px;
  }

  .join-form {
    flex-direction: column;
    max-width: 350px;
  }

  .join-form input {
    border-radius: 25px;
    margin-bottom: 12px;
    padding: 12px 18px;
  }

  .join-form button {
    border-radius: 25px;
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 20px 15px 40px;
  }

  .about-hero-content h1 {
    font-size: 40px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .about-hero-image img {
    max-width: 200px;
  }

  .section-title {
    font-size: 28px;
  }

  .story-text p {
    font-size: 14px;
  }

  .mission-statement {
    font-size: 20px;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .mission-values {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .value-item {
    padding: 15px;
  }

  .value-icon {
    width: 55px;
    height: 55px;
    font-size: 25px;
    margin: 0 auto 15px;
  }

  .value-item h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .value-item p {
    font-size: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .member-image {
    height: 220px;
  }

  .team-member h3 {
    font-size: 18px;
    margin: 15px 15px 5px;
  }

  .member-title {
    font-size: 14px;
    margin: 0 15px 10px;
  }

  .member-bio {
    font-size: 11px;
    margin: 0 15px 15px;
  }

  .member-social {
    padding: 0 15px 15px;
    gap: 10px;
  }

  .member-social a {
    font-size: 16px;
  }

  .tester-grid {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .tester-card {
    width: 100%;
    max-width: 280px;
  }

  .tester-image {
    height: 180px;
  }

  .tester-card h3 {
    font-size: 18px;
    margin: 15px 0 5px;
  }

  .tester-card p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .join-content {
    max-width: 100%;
  }

  .join-content h2 {
    font-size: 32px;
  }

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

  .join-form {
    max-width: 300px;
  }

  .join-form input {
    padding: 10px 15px;
    font-size: 14px;
  }

  .join-form button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 35px;
  }

  .section-title {
    font-size: 24px;
  }

  .mission-statement {
    font-size: 18px;
  }

  .join-content h2 {
    font-size: 28px;
  }

  .about-hero-image img {
    max-width: 180px;
  }

  .tester-card {
    max-width: 250px;
  }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  .about-hero {
    flex-direction: row;
    padding: 20px;
  }

  .about-hero-content {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .about-hero-content h1 {
    font-size: 45px;
  }

  .about-hero-image img {
    max-width: 220px;
  }

  .mission-values {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .tester-grid {
    flex-direction: row;
    justify-content: center;
  }

  .tester-card {
    width: 200px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .about-hero-image img,
  .story-image img,
  .member-image img,
  .tester-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
