/* Base Styles */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Homepage Styles */
.homepage-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
  padding: 20px;
  position: relative;
}

/* Logo Section */
.logo-section {
  margin: 20px 0 30px 0;
  text-align: center;
}

.logo-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.main-title {
  margin-top: 80px;
  margin-bottom: 15px;
  text-align: center;
}

.main-title h1 {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 2px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  text-transform: uppercase;
}

.nickname {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  letter-spacing: 1px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-style: italic;
}

.selection-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.circle-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.circle-label {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.selection-circle {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 3px solid white;
}

.selection-circle:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  text-decoration: none;
  color: #333;
}


.selection-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.developer-circle {
  background-image: url('/Data/pictures/12.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.climbing-circle {
  background-image: url('/Data/pictures/13.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Labels and Abstract Connectors */
.label-left, .label-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.label-left {
  margin-right: 20px;
}

.label-right {
  margin-left: 20px;
}

.label-text {
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 30px;
  white-space: nowrap;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.arrow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dots-line {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.dots-line.diagonal-left {
  transform: rotate(-45deg);
}

.dots-line.diagonal-right {
  transform: rotate(45deg);
}


.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

.arrow-tip {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.label-left:hover .dots-line,
.label-right:hover .dots-line {
  opacity: 1;
  transform: scale(1.1);
}

.label-left:hover .dot,
.label-right:hover .dot {
  background: white;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.label-left:hover .arrow-tip,
.label-right:hover .arrow-tip {
  color: white;
  transform: scale(1.2);
}

/* Contact Page Styles */
.contact-container {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 40px 20px;
  position: relative;
}

.profile-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profile-image-container {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
}

.profile-info {
  padding: 40px;
  text-align: center;
}

.profile-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.profile-title {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-details {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-wrapper {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: #667eea;
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

.contact-item div {
  text-align: left;
}

.contact-item h3 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.contact-item p {
  margin: 0;
  color: #6c757d;
}

.contact-item a {
  color: #667eea;
  text-decoration: none;
}

.contact-item a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.contact-social {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.contact-social h3 {
  margin-bottom: 20px;
  color: #333;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #667eea;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-link:hover {
  background: #764ba2;
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.back-button {
  position: absolute;
  top: 30px;
  left: 30px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-back:hover {
  background: #667eea;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-back i {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .nickname {
    font-size: 1rem;
    margin-top: 6px;
  }
  
  .main-title {
    margin-top: 60px;
    margin-bottom: 10px;
  }
  
  .logo-section {
    margin: 15px 0 20px 0;
  }
  
  .selection-area {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  
  .selection-circle {
    width: 120px;
    height: 120px;
  }
  
  .circle-content i {
    font-size: 3rem;
  }
  
  .circle-content span {
    font-size: 1.2rem;
  }
  
  .label-left, .label-right {
    margin: 0;
    order: -1;
  }
  
  .label-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .arrow-connector {
    margin-top: 10px;
  }
  
  .dots-line {
    gap: 8px;
  }
  
  .dots-line.diagonal-left {
    transform: rotate(-30deg);
  }
  
  .dots-line.diagonal-right {
    transform: rotate(30deg);
  }
  
  .dot {
    width: 4px;
    height: 4px;
  }
  
  .arrow-tip {
    font-size: 1.2rem;
  }
  
  .profile-content {
    margin: 20px;
  }
  
  .profile-name {
    font-size: 2.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .contact-item div {
    text-align: center;
  }
  
  .back-button {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
  
  .logo-image {
    width: 120px;
    height: 120px;
  }
  
  .circle-label {
    font-size: 1rem;
  }
}

/* ===== CLIMBING SECTION STYLES ===== */

/* Climbing Navigation */
.climbing-navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
  padding: 0.1rem 0;
  backdrop-filter: blur(10px);
}

.climbing-navbar .container {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.climbing-navbar .navbar-brand {
  color: white !important;
  font-size: 1.4rem;
  font-weight: 600;
  margin-left: 0;
  padding-left: 1rem;
}

.navbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.climbing-navbar .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin: 0 0.25rem;
}

.climbing-navbar .navbar-nav {
  margin-right: 0;
  padding-right: 1rem;
}

.climbing-navbar .nav-link:hover {
  color: white !important;
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.climbing-navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}

.climbing-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Climbing Footer */
.climbing-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: rgba(255,255,255,0.9);
  padding: 2rem 0 1rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.climbing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.climbing-footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.climbing-footer a {
  color: #74b9ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.climbing-footer a:hover {
  color: #0984e3;
  text-decoration: none;
  transform: translateY(-1px);
}

.social-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.social-footer-link:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer-logo {
  height: 110px;
  width: auto;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.nickname-footer {
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
  .climbing-footer .row {
    text-align: center;
  }
  
  .climbing-footer .col-md-4 {
    margin-bottom: 1rem;
  }
  
  .climbing-footer .col-md-4:last-child {
    margin-bottom: 0;
  }
  
  .footer-logo {
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .social-footer {
    justify-content: center;
    display: flex;
  }
}

/* Climbing Home Page */
.climbing-home {
  min-height: calc(100vh - 160px);
}

.climbing-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}

.climbing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/Data/pictures/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}



.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  white-space: nowrap;
}

.hero-nickname {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Gallery Preview */
.gallery-preview {
  padding: 5rem 0;
  background: #f8f9fa;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 167, 69, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Quick Info */
.quick-info {
  padding: 5rem 0;
  background: white;
}

.info-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.info-icon {
  font-size: 2.2rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
  font-weight: 600;
}

.info-card p {
  color: #6c757d;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.info-card .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  margin-top: auto;
}

/* Social Section */
.social-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.social-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.instagram-btn {
  background: #E4405F;
  color: white;
}

.instagram-btn:hover {
  background: #d62d52;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.homepage-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 25px;
}

.homepage-btn:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.social-section h3 {
  margin-bottom: 1rem;
}

.btn-instagram {
  background: #E4405F;
  border-color: #E4405F;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 25px;
}

.btn-instagram:hover {
  background: #d62d52;
  border-color: #d62d52;
  color: white;
  transform: translateY(-2px);
}

/* Back to Home */
.back-to-home {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #28a745;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.btn-back-home:hover {
  background: #28a745;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* About Page */
.about-page {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 2rem 0;
}

.about-header {
  padding: 2rem 0;
  background: white;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.page-title {
  font-size: 2.2rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.name-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.nickname {
  color: #6c757d;
  font-style: italic;
}

.education {
  font-size: 1.2rem;
  color: #6c757d;
}

.profile-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.2);
}

/* Story Section */
.story-section {
  padding: 4rem 0;
}

.story-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-content p {
  margin-bottom: 1.5rem;
  color: #333;
}

/* Experience Section */
.experience-section {
  padding: 4rem 0;
}

.experience-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #28a745;
}

.experience-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* Achievements Section */
.achievements-section {
  padding: 4rem 0;
}

.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.achievement-icon {
  color: #FFD700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.route-name {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.grade {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 1rem;
}

.location {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Action Gallery */
.action-gallery {
  padding: 4rem 0;
}

.action-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.action-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.action-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 167, 69, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.action-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  color: white;
  font-size: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Personal Note */
.personal-note {
  padding: 4rem 0;
}

.note-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.quote-icon {
  color: #28a745;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.note-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #28a745;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Training Page */
.training-page {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 2rem 0;
}

.training-header {
  padding: 3rem 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  margin-top: 1rem;
}

.training-types {
  padding: 2rem 0;
}

.training-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 3px solid #28a745;
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.children-card {
  border-top-color: #17a2b8;
}

.training-icon {
  text-align: center;
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.children-card .training-icon {
  color: #17a2b8;
}

.training-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.training-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.training-details > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.training-details i {
  color: #28a745;
}

.training-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.schedule {
  background: #e8f5e8;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.schedule h4 {
  color: #28a745;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.schedule-line {
  margin: 0.5rem 0;
  color: #333;
}

.additional-info {
  background: #fff3cd;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #ffc107;
}

.training-action {
  text-align: center;
  margin-top: 2rem;
}

.training-gallery {
  padding: 4rem 0;
}

.training-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.training-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.training-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.training-image:hover img {
  transform: scale(1.05);
}

.club-schedule {
  padding: 4rem 0;
}

.schedule-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.schedule-card h3 {
  color: #28a745;
  margin-bottom: 2rem;
}

.price-summary {
  padding: 4rem 0;
}

.price-table {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
}

.price-table table {
  margin: 0;
}

.price-table th {
  background: #28a745;
  color: white;
  padding: 1.5rem 1rem;
  border: none;
}

.price-table td {
  padding: 1.25rem 1rem;
  border-color: #e9ecef;
}

.price-cell {
  font-weight: bold;
  color: #28a745;
}

/* Coming Soon Page */
.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
}

.coming-soon-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 600px;
  width: 100%;
}

.coming-soon-icon {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.coming-soon-title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.coming-soon-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.coming-soon-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  color: #555;
  font-weight: 500;
}

.feature-item i {
  font-size: 1.2rem;
  color: #667eea;
}

.coming-soon-contact {
  margin-bottom: 2rem;
}

.coming-soon-contact p {
  color: #666;
  margin-bottom: 1rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  background: #5a6fd8;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.back-button {
  margin-top: 2rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: #667eea;
  text-decoration: none;
  border: 2px solid #667eea;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-back:hover {
  background: #667eea;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
  .coming-soon-content {
    padding: 2rem 1.5rem;
  }
  
  .coming-soon-title {
    font-size: 2.5rem;
  }
  
  .coming-soon-subtitle {
    font-size: 1.3rem;
  }
  
  .contact-links {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-link {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* Contact Page */
.climbing-contact {
  position: relative;
  min-height: 100vh;
}

.contact-content {
  padding: 3rem 0;
  background: #f8f9fa;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 600px;
  margin: 0 auto;
}

.profile-section {
  margin-bottom: 3rem;
}

.profile-image-wrapper {
  position: relative;
  display: inline-block;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #28a745;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 3px solid white;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  color: #28a745;
  margin-right: 1.5rem;
  width: 60px;
  text-align: center;
}

.contact-details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
}

.contact-details p {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.contact-details a {
  color: #28a745;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details small {
  color: #6c757d;
  font-size: 0.9rem;
}

.quick-actions {
  margin-bottom: 3rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  width: 100%;
}

.call-btn {
  background: #28a745;
  color: white;
}

.call-btn:hover {
  background: #218838;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.instagram-btn {
  background: #E4405F;
  color: white;
}

.instagram-btn:hover {
  background: #d62d52;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.training-reminder {
  margin-bottom: 3rem;
}

.reminder-card {
  background: #e8f5e8;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #28a745;
}

.reminder-card h3 {
  color: #28a745;
  margin-bottom: 1rem;
}

.reminder-card ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.reminder-card li {
  margin-bottom: 0.5rem;
  color: #333;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.phone-btn {
  background: #28a745;
  color: white;
}

.phone-btn:hover {
  background: #218838;
  color: white;
  transform: scale(1.1);
}

.instagram-btn.social-btn {
  background: #E4405F;
  color: white;
}

.instagram-btn.social-btn:hover {
  background: #d62d52;
  color: white;
  transform: scale(1.1);
}

.sms-btn {
  background: #007bff;
  color: white;
}

.sms-btn:hover {
  background: #0056b3;
  color: white;
  transform: scale(1.1);
}

/* Page Navigation */
.page-navigation {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #28a745;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-btn:hover {
  background: #28a745;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.main-btn {
  background: #28a745;
  color: white;
}

.main-btn:hover {
  background: #218838;
}

/* Common Section Styles */
.section-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Responsive for Climbing Section */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    white-space: normal;
  }
  
  .hero-nickname {
    font-size: 1.2rem;
  }
  
  .hero-text {
    padding: 1rem;
    max-width: 100%;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 80%;
    max-width: 300px;
  }
  
  .climbing-hero {
    min-height: 70vh;
  }
  
  .climbing-hero::before {
    background-image: url('/Data/pictures/6.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .back-to-home {
    position: static;
    margin: 2rem 0;
    text-align: center;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .name-title {
    font-size: 2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .training-details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .training-details > div {
    justify-content: center;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .nav-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
  .page-navigation .row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .page-navigation .col-md-4 {
    flex: 1;
    text-align: center;
    margin-bottom: 0;
  }
  
  .page-navigation .col-md-4:first-child {
    text-align: left;
  }
  
  .page-navigation .col-md-4:last-child {
    text-align: right;
  }
  
  .page-navigation .nav-btn {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
  }
  
  .social-card {
    padding: 2rem;
  }
  
  .social-text {
    font-size: 1.1rem;
  }
  
  .social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .social-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .navbar-logo {
    height: 40px;
  }
  
  .instagram-links {
    white-space: nowrap;
    overflow-x: auto;
  }
}

.instagram-links {
  margin-top: -2rem;
}
