/* Base Styles */

:root {
  --primary-color: #0d7377;
  --dark-bg: #0a1428;
  --light-text: #f0f4f8;
  --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 20, 40, 0.5);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(13, 115, 119, 0.8);
}

/* Form Elements */
input, textarea, select {
  background: rgba(26, 58, 82, 0.5);
  border: 1px solid var(--border-color);
  color: var(--light-text);
  padding: 10px 15px;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(26, 58, 82, 0.7);
  box-shadow: 0 0 10px rgba(13, 115, 119, 0.3);
}

input::placeholder, textarea::placeholder {
  color: rgba(240, 244, 248, 0.5);
}


/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  .container {
    padding: 0 20px;
  }
  
  input, textarea, select {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  .container {
    padding: 0 15px;
  }

  input, textarea, select {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  p {
    font-size: 14px;
  }
}

/* Logo Styling */
.navbar-brand .logo {
  height: 50px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
}
