/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  background-color: #12141A; /* Darker background for better contrast */
  color: #F5F5F5; /* Lighter text for readability */
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #007EA7, #FF616D); /* Softer, less harsh colors */
  animation: gradientBackground 10s infinite alternate;
  text-align: center;
  color: #F5F5F5;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.scroll-btn {
  background-color: #FF616D;
  color: #12141A; /* Darker text color for readability */
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.scroll-btn:hover {
  background-color: #F5F5F5;
  color: #12141A;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background-color: #F5F5F5; /* Lighter background for content readability */
  color: #12141A; /* Darker text */
}

.feature-card {
  background: #2B2D3A; /* Softer, neutral dark background */
  color: #FFFFFF; /* White text for high contrast and readability */
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  margin: 0.5rem 0;
  color: #00B4D8; /* Accent color for the title */
}

.feature-description {
  color: #D0D4DB; /* Light gray for a softer contrast on the dark background */
}
/* Introduction Section */
.introduction {
  padding: 3rem 1.5rem;
  background-color: #007EA7; /* Calmer blue shade */
  color: #F5F5F5;
  text-align: center;
}

.introduction h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Main Content Section */
.main-content {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5; /* Lighter background */
  color: #12141A; /* Darker text */
}

.main-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Animation */
@keyframes gradientBackground {
  0% { background: linear-gradient(135deg, #007EA7, #FF616D); }
  100% { background: linear-gradient(135deg, #FF616D, #007EA7); }
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #FF616D;
}

/* Section Styling */
section {
  padding: 2rem;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #FF616D; /* Softer highlight color */
}

h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: #007EA7; /* Softer blue for subheadings */
}

p {
  color: #12141A; /* Darker text for readability */
}

strong {
  color: #602F6B; /* Accent color for emphasis */
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #2C2F36; /* Softer dark background */
  color: #F5F5F5;
  border-left: 4px solid #FF616D;
  font-style: italic;
}

/* Lists */
ul, ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #2C2F36;
}

th {
  background-color: #2C2F36;
  color: #F5F5F5;
}

td {
  background-color: #1F1F28;
  color: #F5F5F5;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #1A1B25; 
  text-align: center;
  padding: 1.5rem;
  color: #FFFFFF; 
  font-size: 1rem;
  border-top: 2px solid #2C2F36;
}

footer p {
  color: #FFFFFF !important; 
  margin: 0.5rem 0;
  font-size: 0.875rem;
}