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

/* =========================
   Global Styles
   ========================= */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* =========================
   Navigation
   ========================= */
.navbar {
  display: flex;
  gap: 20px;
  background-color: #111;
  padding: 15px 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  text-decoration: underline;
}

/* =========================
   Layout
   ========================= */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* =========================
   Sections
   ========================= */
section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* =========================
   Hero Section
   ========================= */
.hero {
  text-align: center;
  padding: 60px 20px;
}

/* Hero with side images */
.hero-with-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-text {
  max-width: 500px;
}

.hero-side-image {
  width: 80px;
  height: auto;
}

/* =========================
   Typography
   ========================= */
h1 {
  margin-bottom: 15px;
}

h2 {
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

/* =========================
   Links & Lists
   ========================= */
.link-list li {
  margin-bottom: 10px;
}

a {
  color: #0066cc;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   Showcase Image
   ========================= */
.showcase {
  text-align: center;
}

.showcase img {
  max-width: 100%;
  border-radius: 12px;
}

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

.gallery img {
  width: 100%;
  border-radius: 8px;
}

/* =========================
   Video Grid (Animation)
   ========================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

video {
  width: 100%;
  border-radius: 10px;
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 700px) {
  .hero-with-images {
    flex-direction: column;
  }

  .hero-side-image {
    width: 60px;
  }
}

/* =========================
   Modeling Page Layout
   ========================= */

.model-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 10px; /* reduced gap before description */
}

.model-item {
  text-align: center;
}

.model-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.model-item h3 {
  margin-bottom: 5px;
}

.row-description {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
}

/* Featured centered model */
.featured-model {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.featured-model img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 700px) {
  .model-row {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Art Gallery
   ========================= */
.art-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.art-item {
  text-align: center;
}

.art-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

.art-item h4 {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* =========================
   Video Grid (Animation)
   ========================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-item {
  text-align: center;
}

.video-item video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
}

.video-item h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
}

.video-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
