/* ABOUT PAGE STYLES */

/* HEADER & NAVIGATION */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 20px;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-content {
  padding: 80px 40px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nav-logo {
  margin-bottom: 60px;
  text-align: center;
}

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

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.nav-links li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E5E5E5;
}

.nav-links li:last-child {
  border-bottom: none;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #B8860B;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/about-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero .logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero .logo img {
  height: 60px;
  width: auto;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text h1 {
  font-family: 'Butler Ultra Light', serif;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-text p:last-child {
  margin-bottom: 0;
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
  width: 50px;
  height: 50px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  border-color: var(--beige);
  background-color: rgba(200, 184, 149, 0.1);
}

.scroll-arrow span {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.scroll-arrow:hover span {
  color: var(--beige);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* FOUNDERS SECTION */
.founders-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #000;
}

.founders-section h2 {
  font-family: 'Butler Ultra Light', serif;
  font-size: 3rem;
  margin-bottom: 40px;
  color: #000;
  text-align: center;
}

.founders-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.profile-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.profile-1 {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.profile-2 {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.profile-1:hover,
.profile-2:hover {
  transform: scale(1.05);
  opacity: 1;
}

.text-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.text-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 400;
}

.text-content p:last-child {
  margin-bottom: 0;
}

/* MISSION SECTION */
.mission-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.mission-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #666;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.mission-section h2 {
  font-family: 'Butler Ultra Light', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.mission-section h2 em {
  font-style: italic;
  font-weight: 400;
}

/* STRATEGY SECTION */
.strategy-section {
  padding: 0;
  margin: 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.strategy-image {
  position: relative;
  width: 80%;
  margin: 0;
  overflow: visible;
}

.strategy-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.strategy-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 70%;
  background: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(60%);
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

.strategy-overlay h2 {
  font-family: 'Butler Ultra Light', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.5rem;
}

.strategy-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.strategy-overlay .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* CTA SECTION */
.cta-section {
  padding: 50px 0;
  margin-top: -10px;
  background: #000;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Butler Ultra Light', serif;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.cta-buttons .btn {
  padding: 15px 40px;
  border: 2px solid white;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-buttons .btn:hover {
  background: white;
  color: #000;
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: #000;
}

/* WHY BEHIND THE VIBE SECTION */
.why-section {
  padding: 120px 0;
  background: white;
}

.why-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px;
}

.why-header h2 {
  font-family: 'Butler Ultra Light', serif;
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #000;
  line-height: 1.2;
}

.why-header p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #333;
  font-weight: 400;
}

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

.why-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  margin-bottom: 100px;
}

.why-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.why-item.reverse .why-image {
  order: 2;
}

.why-item.reverse .why-text {
  order: 1;
}

.why-image img {
  width: 100%;
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-text {
  margin-top: 3rem;
}

.why-text h3 {
  font-family: 'Butler Ultra Light', serif;
  font-size: 3.2rem;
  font-weight: 300;
  margin-bottom: 5%;
  color: #000;
  line-height: 1.3;
  text-align: center;
}

.why-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 3rem;
  margin-top: 3rem;
  font-weight: 400;
}

.why-text blockquote {
  font-family: 'Butler Ultra Light', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #000;
  margin: 0 0 1rem 0;
  padding-left: 0;
  border-left: none;
  line-height: 1.4;
  text-align: center;
}

/* RESPONSIVE DESIGN */
@media (min-width: 1025px) {
  .why-text h3 {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .founders-section h2 {
    font-size: 2.5rem;
  }
  
  .mission-section h2 {
    font-size: 3rem;
  }
  
  .profile-1 {
    width: 150px;
    height: 150px;
  }
  
  .profile-2 {
    width: 150px;
    height: 150px;
  }
  
  .profile-images {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .strategy-overlay {
    width: 55%;
    height: 75%;
    transform: translateX(40%);
  }
  
  .strategy-overlay h2 {
    font-size: 2.2rem;
  }
  
  .strategy-overlay p {
    font-size: 1rem;
  }
  
  .why-header h2 {
    font-size: 3rem;
  }
  
  .why-item {
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .why-image img {
    height: 350px;
  }
  
  .why-text h3 {
    font-size: 2.2rem;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 100vh;
    padding: 0 20px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .scroll-arrow {
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  
  .scroll-arrow span {
    font-size: 1.2rem;
  }
  
  .nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .nav-content {
    padding: 60px 30px 30px;
  }
  
  .nav-logo img {
    height: 60px;
  }
  
  .nav-links a {
    font-size: 1.1rem;
  }
  
  /* Mission Section */
  .mission-section {
    padding: 60px 20px;
  }
  
  .mission-section h2 {
    font-size: 2.5rem;
    padding: 0 20px;
  }
  
  .mission-label {
    font-size: 0.8rem;
  }
  
  /* Founders Section */
  .founders-section {
    padding: 80px 20px;
  }
  
  .founders-section h2 {
    font-size: 2.2rem;
  }
  
  .founders-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .text-content {
    padding: 30px 20px;
  }
  
  .text-content p {
    font-size: 1.1rem;
  }
  
  .profile-1 {
    width: 120px;
    height: 120px;
  }
  
  .profile-2 {
    width: 120px;
    height: 120px;
  }
  
  .profile-images {
    gap: 25px;
    margin-bottom: 40px;
  }
  
  /* Strategy Section */
  .strategy-section {
    margin-top: 60px;
  }
  
  .strategy-image {
    width: 100%;
  }
  
  .strategy-image img {
    height: 400px;
  }
  
  .strategy-overlay {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    margin: 0;
    padding: 30px 20px;
    border: none;
    border-top: 1px solid #000;
  }
  
  .strategy-overlay h2 {
    font-size: 2rem;
  }
  
  .strategy-overlay p {
    font-size: 1rem;
  }
  
  /* Why Section */
  .why-section {
    padding: 80px 20px;
  }
  
  .why-header {
    margin-bottom: 60px;
    padding: 0 20px;
  }
  
  .why-header h2 {
    font-size: 2.5rem;
  }
  
  .why-header p {
    font-size: 1.1rem;
  }
  
  .why-content {
    padding: 0 20px;
  }
  
  .why-item {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .why-item.reverse {
    grid-template-columns: 1fr;
  }
  
  .why-item .why-image,
  .why-item .why-text,
  .why-item.reverse .why-image,
  .why-item.reverse .why-text {
    order: unset;
  }
  
  .why-image {
    order: 1;
  }
  
  .why-text {
    order: 2;
  }
  
  .why-image img {
    height: 250px;
    margin-bottom: 1.5rem;
  }
  .why-text h3 {
    font-size: 1.7rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  
  }
  
  .why-text h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .why-text p {
    font-size: 1rem;
    text-align: center;
  }
  
  .why-text blockquote {
    font-size: 1.3rem;
    padding-left: 0;
    text-align: center;
    margin-top: 1.5rem;
    border-left: none;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 80px 20px;
    margin-top: -10px;
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 18px 30px;
    text-align: center;
  }


@media (max-width: 480px) {
  /* Increase margin below the first blockquote */
  .why-item:first-child .why-text blockquote {
    margin-bottom: 2.5rem;
  }
  /* Increase margin below the second image */
  .why-item:nth-child(2) .why-image img {
    margin-bottom: 2.5rem;
  }
  .hero {
    min-height: 100vh;
    padding: 0 15px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .scroll-arrow {
    bottom: 15px;
    width: 35px;
    height: 35px;
  }
  
  .scroll-arrow span {
    font-size: 1rem;
  }
  
  .nav-content {
    padding: 50px 20px 20px;
  }
  
  .nav-logo img {
    height: 50px;
  }
  
  .nav-links a {
    font-size: 1rem;
  }
  
  /* Mission Section */
  .mission-section {
    padding: 50px 15px;
  }
  
  .mission-section h2 {
    font-size: 2rem;
    padding: 0 10px;
  }
  
  .mission-label {
    font-size: 0.75rem;
  }
  
  /* Founders Section */
  .founders-section {
    padding: 60px 15px;
  }
  
  .founders-section h2 {
    font-size: 1.8rem;
  }
  
  .founders-content {
    padding: 0 10px;
  }
  
  .text-content {
    padding: 20px 10px;
  }
  
  .text-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .profile-1 {
    width: 100px;
    height: 100px;
  }
  
  .profile-2 {
    width: 100px;
    height: 100px;
  }
  
  .profile-images {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  /* Strategy Section */
  .strategy-section {
    margin-top: 50px;
  }
  
  .strategy-image img {
    height: 300px;
  }
  
  .strategy-overlay {
    padding: 25px 15px;
  }
  
  .strategy-overlay h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  
  .strategy-overlay p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .strategy-overlay .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  /* Why Section */
  .why-section {
    padding: 60px 15px;
  }
  
  .why-header {
    margin-bottom: 50px;
    padding: 0 15px;
  }
  
  .why-header h2 {
    font-size: 2rem;
  }
  
  .why-header p {
    font-size: 1rem;
  }
  
  .why-content {
    padding: 0 15px;
  }
  
  .why-item {
    gap: 25px;
    margin-bottom: 30px;
  }
  .why-item:last-child {
    margin-bottom: 0 !important;
  }
  
  .why-item.reverse {
    grid-template-columns: 1fr;
  }
  
  .why-item .why-image,
  .why-item .why-text,
  .why-item.reverse .why-image,
  .why-item.reverse .why-text {
    order: unset;
  }
  
  .why-image {
    order: 1;
  }
  
  .why-text {
    order: 2;
  }
  
  .why-image img {
    height: 250px;
  }
  
  .why-text h3 {
    font-size: 1.7rem;
  }
  
  .why-text p {
    font-size: 0.95rem;
  }
  
  .why-text blockquote {
    font-size: 1.1rem;
    padding-left: 15px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 15px;
    margin-top: 60px;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    max-width: 100%;
    padding: 15px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .cta-section {
    padding: 60px 15px;
    margin-top: 0;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .mission-section h2 {
    font-size: 1.75rem;
  }
  
  .founders-section h2 {
    font-size: 1.6rem;
  }
  
  .strategy-overlay h2 {
    font-size: 1.5rem;
  }
  
  .why-header h2 {
    font-size: 1.75rem;
  }
  
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .profile-1 {
    width: 80px;
    height: 80px;
  }
  
  .profile-2 {
    width: 75px;
    height: 75px;
  }
  
  .profile-images {
    gap: 15px;
    margin-bottom: 25px;
  }
}

/* LANDSCAPE ORIENTATION */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    background-attachment: scroll;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .scroll-arrow {
    bottom: 10px;
  }
}

/* SPECIFIC MOBILE FIXES */
@media (max-width: 480px) {
  .strategy-section {
    border-top: none;
    border-bottom: none;
  }
  
  .strategy-image {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  
  .founders-section {
    border-top: 1px solid #000;
  }
}
