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

/* Body */
body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.5;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.logo svg {
  width: 165px;
  height: auto;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
nav ul li a:hover {
  color: #555;
}

/* Instagram icons */
.social-link.desktop-only {
  margin-left: auto;
}
.social-link img {
  width: 24px;
  height: 24px;
}

/* Mobile vs Desktop visibility */
.mobile-only  { display: none; }
.desktop-only { display: block; }

/* Hamburger Menu (desktop hidden) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* ─── Portfolio as Two-Column Flex ─────────────────────────────────────── */
.portfolio {
  display: flex;
  gap: 10px;
  padding: 10px;
}
.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About / Contact Text */
.about, .contact {
  max-width: 800px;
  margin: 100px auto;
  padding: 20px;
}
.about-text, .contact-text {
  text-align: left;
}
.about-text h1, .contact-text h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
.about-text p, .contact-text p {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: left;
  padding: 30px 20px;
  font-size: 12px;
  background-color: #fff;
  color: #000;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    padding: 16px;
  }
  .logo, .site-title, .menu-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    left: 16px;
    z-index: 1002;
  }
  .logo svg {
    width: 100px;
    height: auto;
  }
  .site-title {
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    z-index: 1002;
    white-space: nowrap;
    display: block;
  }
  .menu-toggle {
    display: flex !important;
    right: 16px;
    width: 30px;
    height: 24px;
    z-index: 1003;
  }
  .menu-toggle span {
    width: 100%;
    height: 3px;
    margin: 3px 0;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  nav ul {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: #fff;
    gap: 20px;
    z-index: 1000;
  }
  nav ul.active { display: flex; }
  nav ul.active li a {
    font-size: 40px;
    line-height: 1.2;
  }
  .mobile-only  { display: block; }
  .desktop-only { display: none; }

  .portfolio {
    padding: 10px;
    gap: 10px;
  }
  .column {
    gap: 10px;
  }
}

/* Desktop-specific tweaks */
@media (min-width: 769px) {
  .navbar {
    padding: 30px 40px;
  }
}
