/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

/* Keyframes for Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 105, 180, 0.6); }
  50% { box-shadow: 0 0 20px rgba(255, 105, 180, 1); }
}

/* General Styles */
.content {
  margin: auto;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  max-width: 900px;
  animation: fadeIn 1s ease-out;
}

body {
  background: radial-gradient(circle at center, #1e1e1e, #0e0e0e 80%);
  background-image: url("/images/foldbg.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: #e0e0e0;
  padding: 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
  color: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 12px;
  border-bottom: 2px solid #ff69b4;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1s ease-out;
}

header h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  background: linear-gradient(to right, #ff69b4, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #ecf0f1;
  font-weight: 500;
  position: relative;
  transition: color 0.3s, transform 0.2s;
}

nav a:hover {
  color: #ff69b4;
  transform: scale(1.1);
}

/* Section Titles */
h2 {
  border-bottom: 2px solid #ff69b4;
  padding-bottom: 6px;
  margin-bottom: 15px;
  font-size: 1.9rem;
  font-weight: 600;
  color: #81a1c1;
}

/* Content Sections */
section {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #262626, #2b2b2b);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  animation: fadeIn 1s ease-out;
}

/* Lists and Paragraphs */
ul, ol {
  margin-left: 30px;
  margin-top: 10px;
}

ul li, ol li {
  margin-bottom: 12px;
  transition: transform 0.2s;
}

ul li:hover, ol li:hover {
  transform: translateX(5px);
}

p {
  margin-bottom: 14px;
  text-align: justify;
}

/* Features Section */
.feature h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #ff69b4;
  font-weight: 500;
}

.feature p {
  margin-bottom: 14px;
}

/* Gallery */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  animation: fadeIn 1.5s ease-out;
}

.image-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.image-grid img {
  margin: auto;
  max-width: 100%;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 8px;
  /*box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);*/
}

.image-grid img:hover {
  transform: scale(0.9);
}

.image-grid figcaption {
  font-size: 0.9rem;
  color: #aaaaaa;
  margin-top: 6px;
  text-align: center;
}

/* Download Section */
a[download] {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff69b4, #2ecc71);
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

a[download]:hover {
  background: linear-gradient(135deg, #2ecc71, #ff69b4);
  transform: scale(1.1);
}

/* Footer */
footer {

  font-size: 0.85rem;
  margin-top: 30px;
  color: #888;
  border-top: 2px solid #ff69b4;
  padding-top: 10px;
  animation: fadeIn 1.5s ease-out;
}

footer a {

  color: #ff69b4;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #ecf0f1;
}
