@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #E2C666;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #CD9F36;
}

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

p {
  margin-bottom: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-color: #0f0f0f;
  color: #e5e5e5;
  line-height: 1.8;
  min-height: 100vh;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
  object-position: center;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.navbar {
  background-color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

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

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

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

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

/* Hide mobile auth buttons on desktop */
.navbar-menu li.mobile-auth-buttons {
  display: none;
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 2px solid #ffffff;
}

.btn-register {
  background-color: var(--accent-primary);
  color: #ffffff;
  border: 2px solid var(--accent-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-register:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  background-color: #1a1a1a;
  padding: 15px 20px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #b8b8b8;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #666;
}

.breadcrumb a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: #b8b8b8;
}

.hero {
  position: relative;
  padding: 80px 60px;
  margin: 40px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
  border-radius: 24px;
  border: 2px solid #2a2a2a;
  overflow: hidden;
  text-align: center;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(205, 159, 54, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(226, 198, 102, 0.08) 0%, transparent 50%);
  opacity: 0.6;
  z-index: 0;
}

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.85;
}

.table-of-contents {
  margin: 40px 0;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 16px;
  border: 1px solid #252525;
}

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

.toc-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-list li {
  margin: 0;
}

.toc-list a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #e5e5e5;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-left: 50px;
}

.toc-list a::before {
  content: '→';
  position: absolute;
  left: 20px;
  color: var(--accent-primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.toc-list a:hover {
  background: rgba(205, 159, 54, 0.1);
  border-color: rgba(205, 159, 54, 0.3);
  color: #ffffff;
  transform: translateX(5px);
}

.toc-list a:hover::before {
  transform: translateX(3px);
}

.mission {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.mission-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.mission-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.0625rem;
  color: #b8b8b8;
  line-height: 1.85;
  margin-bottom: 40px;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-3px);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 16px;
  display: block;
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.value-item p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.mission-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

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

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

.why-ausclub {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 20px;
  border: 1px solid #252525;
}

.why-ausclub-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-ausclub-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-card {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 159, 54, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.why-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border: 1px solid rgba(205, 159, 54, 0.3);
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.why-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
  padding-right: 60px;
}

.why-card p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.75;
  margin: 0;
}

.commitment {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.commitment-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.commitment-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.commitment-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.commitment-item:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateX(5px);
}

.commitment-item i {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: var(--accent-primary);
  margin-top: 4px;
}

.commitment-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.commitment-item p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.commitment-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

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

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

.footer {
  background-color: #0a0a0a;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 1px solid #1a1a1a;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: #cccccc;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: #cccccc;
  text-align: center;
}

.footer-copy a {
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .mission-content,
  .commitment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid #1a1a1a;
  }

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

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid #1a1a1a;
  }

  .navbar-menu li a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #e5e5e5;
  }

  .navbar-menu li a:hover {
    color: var(--primary-color);
    background-color: transparent;
  }

  .navbar .auth-buttons {
    display: none;
  }

  /* Mobile Auth Buttons - Show on mobile only */
  .navbar-menu li.mobile-auth-buttons {
    display: block;
    border-bottom: none;
    padding: 20px 0;
    margin-top: 10px;
    border-top: 2px solid #1a1a1a;
  }

  .navbar-menu li.mobile-auth-buttons a {
    display: inline-block;
    width: calc(50% - 5px);
    margin: 0;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .navbar-menu li.mobile-auth-buttons a:first-child {
    margin-right: 10px;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-login {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-login:hover {
    background-color: transparent;
    color: #ffffff;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-register {
    background-color: var(--accent-primary);
    color: #ffffff;
    border: 2px solid var(--accent-primary);
  }

  .navbar-menu li.mobile-auth-buttons a.btn-register:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }

  /* Mobile menu overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .hero {
    padding: 50px 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .mission,
  .why-ausclub,
  .commitment {
    padding: 40px 20px;
  }

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

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

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .mission,
  .why-ausclub,
  .commitment {
    padding: 30px 15px;
  }
}

