/* ARTfunny Portfolio - Dark Grey Theme
   Big, simple, clean layout
   Logo centered at top
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #1a1a1a;
  color: #e8eef7;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #7dd3fc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fbbf24;
}

/* HEADER */
.site-header {
  background: #121212;
  border-bottom: 3px solid #22d3ee;
  padding: 1.25rem 1.5rem 0.75rem;
  text-align: center;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.logo-row img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.5rem 0 0.75rem;
}

.main-nav a {
  color: #fbbf24;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
}

/* MAIN */
main {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  font-size: 1.7rem;
  color: #22d3ee;
  margin: 2rem 0 1rem;
}

h3 {
  font-size: 1.3rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #cbd5e1;
}

/* HERO */
.hero {
  background: #222;
  border: 2px solid #22d3ee;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero img.hero-image {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.25rem auto;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.hero .tagline {
  font-size: 1.3rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #22d3ee;
  color: #111;
}

.btn-primary:hover {
  background: #67e8f9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fbbf24;
  border: 2px solid #fbbf24;
}

.btn-secondary:hover {
  background: rgba(251, 191, 36, 0.15);
  transform: translateY(-2px);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.gallery-item {
  background: #222;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.15);
  border-color: #22d3ee;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #1a1a1a;
}

.gallery-item .caption {
  padding: 0.8rem 0.9rem;
  font-size: 0.95rem;
  color: #e2e8f0;
  text-align: center;
}

/* SERVICES */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.service-card {
  background: #222;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: #22d3ee;
}

.service-card img {
  max-height: 120px;
  margin: 0 auto 1rem;
  border-radius: 8px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* CONTACT */
.contact-box {
  background: #222;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  max-width: 560px;
  margin: 1.5rem auto;
  text-align: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* VIDEO / ANIMATION CARDS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.video-card {
  background: #222;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-card .info {
  padding: 1rem;
}

.video-card .info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.video-card .info p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #94a3b8;
}

/* FOOTER */
.site-footer {
  background: #121212;
  border-top: 2px solid #333;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: #888;
}

.site-footer a {
  color: #aaa;
}

.site-footer a:hover {
  color: #22d3ee;
}

.domain-note {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 1.5rem auto 0;
  max-width: 600px;
  font-size: 0.9rem;
  color: #fde68a;
  text-align: center;
}

@media (max-width: 600px) {
  .logo-row img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}
  h1 {
    font-size: 1.8rem;
  }
  .hero {
    padding: 1.5rem 1rem;
  }
  .main-nav a {
    font-size: 1rem;
  }
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.gallery-item a {
  display: block;
  cursor: zoom-in;
}
.gallery-item a:hover img {
  opacity: 0.9;
}
.video-card a {
  display: block;
  cursor: pointer;
}

/* Message Me bottle button */
a img[alt="Message Me"]:hover {
  transform: scale(1.08);
}

.logo-video {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
