/**
 * Ocean Mafia - Main Stylesheet
 * Strategic Design Unit for Maritime Future
 */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS VARIABLES - COLOR PALETTE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  /* Base Colors */
  --pure-black: #000000;
  --very-dark-purple: #160A39;
  --deep-purple: #2D0894;
  --charcoal: #1A1A1A;
  --dark-gray: #2A2A2A;
  
  /* Accent Colors - Purple */
  --neon-purple: #A855F7;
  --dark-purple: #5B21B6;
  
  /* Accent Colors - Pink */
  --neon-pink: #FF00CE;
  --hot-pink: #F472B6;
  --deep-pink: #C026D3;
  
  /* Logo Colors */
  --platinum: #E5E4E2;
  --deep-purple-text: #2D0894;
  
  /* Text Colors */
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --light-gray: #B0B0B0;
  --mid-gray: #6B7280;
  --border-gray: #404040;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLOBAL STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--pure-black);
  color: var(--white);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TYPOGRAPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.8;
}

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

a:hover {
  color: var(--neon-pink);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANGUAGE SWITCHER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.language-switcher {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 1000;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.language-switcher a {
  color: var(--mid-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.language-switcher a.active {
  color: var(--white);
  font-weight: 700;
}

.language-switcher a:hover {
  color: var(--neon-pink);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    var(--pure-black) 0%,
    var(--very-dark-purple) 40%,
    var(--deep-purple) 100%
  );
  position: relative;
}

.hero .logo {
  font-family: 'Eurostile Extended', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: var(--platinum);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero .divider {
  width: 300px;
  height: 2px;
  background: var(--platinum);
  margin: 0 auto 30px;
  box-shadow: 0 0 10px rgba(229, 228, 226, 0.3);
}

.hero .tagline {
  font-size: 24px;
  color: var(--neon-pink);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero .subtitle {
  font-size: 16px;
  color: var(--light-gray);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero .cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hero .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 206, 0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - VISION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.vision {
  padding: 100px 20px;
  background-color: var(--pure-black);
  text-align: center;
}

.vision .section-title {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 30px;
}

.vision .catchphrase {
  font-size: 20px;
  color: var(--neon-pink);
  font-style: italic;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vision .content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.8;
}

.vision .content p {
  margin-bottom: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - MISSION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.mission {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    var(--pure-black) 0%,
    var(--very-dark-purple) 100%
  );
  text-align: center;
}

.mission .section-title {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 30px;
}

.mission .mission-statement {
  font-size: 20px;
  color: var(--neon-pink);
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission .content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - VALUES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.values {
  padding: 100px 20px;
  background-color: var(--pure-black);
}

.values .section-title {
  font-size: 36px;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: linear-gradient(
    135deg,
    rgba(22, 10, 57, 0.5) 0%,
    rgba(45, 8, 148, 0.3) 100%
  );
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(90deg, var(--deep-purple), var(--neon-pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 206, 0.2);
}

.value-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 15px;
}

.value-card .value-phrase {
  font-size: 18px;
  color: var(--neon-pink);
  font-weight: 500;
  margin-bottom: 20px;
}

.value-card .value-description {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
}

.value-card .value-description p {
  margin-bottom: 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - EXPERTISE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.expertise {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    var(--pure-black) 0%,
    var(--very-dark-purple) 100%
  );
}

.expertise .section-title {
  font-size: 36px;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.expertise-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.expertise-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid var(--platinum);
  border-radius: 8px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 228, 226, 0.1);
}

.expertise-card h3 {
  font-size: 24px;
  color: var(--neon-purple);
  margin-bottom: 15px;
}

.expertise-card p {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - PORTFOLIO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.portfolio {
  padding: 100px 20px;
  background-color: var(--pure-black);
}

.portfolio .section-title {
  font-size: 36px;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.portfolio-card {
  background: linear-gradient(
    135deg,
    rgba(22, 10, 57, 0.4) 0%,
    rgba(45, 8, 148, 0.2) 100%
  );
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.portfolio-card h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 10px;
}

.portfolio-card .platform-subtitle {
  font-size: 16px;
  color: var(--neon-purple);
  margin-bottom: 20px;
  font-weight: 500;
}

.portfolio-card p {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 25px;
}

.portfolio-card .learn-more-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio-card .learn-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 0, 206, 0.3);
}

.portfolio-coming-soon {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
}

.portfolio-coming-soon h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 15px;
}

.portfolio-coming-soon p {
  font-size: 15px;
  color: var(--light-gray);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - MEMBERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.members {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    var(--pure-black) 0%,
    var(--very-dark-purple) 100%
  );
  text-align: center;
}

.members .section-title {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 30px;
}

.members .content {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION - CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact {
  padding: 100px 20px;
  background-color: var(--pure-black);
  text-align: center;
}

.contact .section-title {
  font-size: 32px;
  color: var(--neon-pink);
  margin-bottom: 30px;
}

.contact .content {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.8;
}

.contact .email {
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.contact .email:hover {
  color: var(--neon-pink);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
  padding: 60px 20px 40px;
  background-color: var(--pure-black);
  text-align: center;
  border-top: 1px solid var(--border-gray);
}

footer .footer-subtitle {
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

footer .footer-email {
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 15px;
}

footer .footer-email a {
  color: var(--mid-gray);
  transition: color 0.3s ease;
}

footer .footer-email a:hover {
  color: var(--neon-pink);
}

footer .copyright {
  font-size: 12px;
  color: var(--mid-gray);
}
