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

body {
  font-family: 'Inter', sans-serif;
  background: #0f111a;
  color: #e0e6f3;
  line-height: 1.6;
  text-align: center;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

header {
  background: #141829;
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

header h1 {
  font-size: 2.5rem;
  color: #63cdda;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-top: 1rem;
}

nav a {
  color: #8fa3bf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #63cdda;
}

.section {
  padding: 4rem 1rem;
  border-bottom: 1px solid #222734;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #63cdda;
}

.section p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-post {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.blog-post:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-post .preview {
  font-size: 0.95rem;
  color: #444;
}

.blog-post .full-content {
  display: none;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.blog-post.active .full-content {
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.blog-post {
  background-color: #1e1e1e;
  color: #f1f1f1;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}

.blog-post:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.blog-post h3 {
  color: #ffffff;
}

.blog-post .preview {
  color: #c7c7c7;
}

.full-content {
  display: none;
  margin-top: 10px;
  color: #d0d0d0;
}

.section {
  background-color: #121212;
  padding: 60px 20px;
  color: #f1f1f1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.blog-post {
  background-color: #1f1f1f;
  border: 1px solid #2e2e2e;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}

.blog-post:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.blog-post h3 {
  margin-top: 0;
  color: #ffffff;
}

.blog-post .preview {
  color: #cccccc;
  margin-bottom: 10px;
}

.full-content {
  display: none;
  margin-top: 10px;
  color: #dddddd;
  border-top: 1px solid #333;
  padding-top: 10px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.blog-post {
  background-color: #1f1f1f;
  color: #f1f1f1;
  border: 1px solid #2e2e2e;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}

.blog-post:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.blog-post h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.blog-post .preview {
  font-size: 0.95rem;
  color: #c7c7c7;
  margin-bottom: 0.75rem;
}

.full-content {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #333;
  font-size: 0.95rem;
  color: #dddddd;
  line-height: 1.6;
}

.blog-post.active .full-content {
  display: block;
}

* {
  font-family: 'Syne', sans-serif;
}
