/* Basic reset-ish */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Body */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #111111;
}

/* Layout container */

.container {
  max-width: 1360px;      /* wider content area */
  margin: 0 auto;
  padding: 0 1.5rem;        /* smaller left/right padding */
}


/* Header – clean logo + spacing */

.site-header {
  padding: 3rem 0 1.2rem;          /* top space above your name */
}

.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

/* Motto between header and gallery */

.motto-section {
  margin: 0;                       /* no extra margin on the section itself */
}

.motto {
  margin: 0 0 2.8rem;              /* clear space before the first row of images */
  font-size: 0.95rem;
}

.branding {
  flex: 0 0 auto;
}

/* Name + black box mark */
.site-title {
  margin: 0 0 0.4rem;              /* space below your name */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 300;                /* not bold */
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-title {
  margin: 0 0 0.4rem;  /* little space under your name */
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 300;     /* light */
  letter-spacing: 0.18em;
  text-transform: none; /* keep “Sibel Kusdemir”, not all caps */
}


/* sky · water · architecture · portrait */
.site-tagline {
  margin: 0.2rem 0 1.6rem;  /* gap under name, gap before motto */
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: #555555;
}

.motto {
  margin: 0 0 2.8rem;       /* space between motto and first row of images */
  font-size: 0.95rem;
}




/* Gallery – grid like Unsplash */

/* Gallery – masonry-style columns, no big holes */

/* Gallery – strict grid, straight first row */

.gallery-section {
  padding: 1.5rem 0 2.5rem;
}

.gallery-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
  gap: 2.2rem;    /* both row + column gap */
  align-items: start;
}

.photo {
  margin: 0;
}

.photo img {
  display: block;
  width: 100%;
  height: auto;         /* no cropping */
  background-color: #f4f4f4;
}


/* No hover UI, keep it quiet */

.photo img:hover {
  transform: none;
  box-shadow: none;
}

/* About / Contact */

.info-section {
  padding: 2.5rem 0 0;
}

.info-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-section .page-title {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}


.info-section p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.info-section a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid rgba(17,17,17,0.2);
}

.info-section a:hover {
  border-bottom-color: #111111;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0 2rem;
  font-size: 0.85rem;
  color: #777777;
}

/* Mobile */

@media (max-width: 600px) {
  .site-header {
    padding-top: 1.8rem;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .gallery-column {
    gap: 1.2rem;
  }
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);  /* soft white veil over the page */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}


.lightbox.hidden {
  display: none;
}

.lightbox-inner {
  padding: 0;
}

.lightbox-inner img {
  display: block;
  max-width: 900px;   /* max visual width in overlay */
  max-height: 90vh;   /* never taller than viewport */
  width: auto;
  height: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* On small screens, let it breathe a bit */

@media (max-width: 600px) {
  .lightbox-inner img {
    max-width: 100vw;
    max-height: 90vh;
  }
}

/* Lightbox arrows */

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 20px;
  cursor: pointer;
  outline: none;
}

.lightbox-arrow--prev {
  left: 1.5rem;
}

.lightbox-arrow--next {
  right: 1.5rem;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 1);
}

/* Single-page padding tweak */
.info-page {
  padding-top: 3rem;
}

/* Contact form */

.contact-form {
  max-width: 460px;
  margin-top: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin: 0.8rem 0 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 3px;
  border: 1px solid #dddddd;
  font: inherit;
  resize: vertical;
}

.contact-form button {
  margin-top: 1.3rem;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: #ffffff;
  color: #111111;
}

@media (max-width: 900px) {
  .gallery-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));  /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .gallery-column {
    grid-template-columns: 1fr;  /* 1 column on phones */
  }
}


.site-header {
  padding: 2rem 0 1.2rem;
}

.header-inner {
  display: flex;
  align-items: flex-end;          /* align text baselines nicely */
  justify-content: space-between; /* left: branding, right: nav */
  gap: 2rem;
}

.branding {
  flex: 0 0 auto;
}

.site-title {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-tagline {
  margin: 0.4rem 0 0.8rem;   /* bottom margin creates space before motto */
  font-size: 0.85rem;        /* slightly more delicate */
  letter-spacing: 0.18em;    /* keep that elegant tracking you like */
  text-transform: lowercase;
  color: #555555;
}


/* Motto between tagline and gallery */

.motto-section {
  margin: 0;  /* section just follows the header */
}

.motto {
  margin: 0.8rem 0 3rem;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-style: normal;       /* turn off italics */
  letter-spacing: 0.06em;   /* slightly more spacing instead */
  text-transform: none;
  color: #444444;
  max-width: 40rem;         /* or 42rem if needed */
  line-height: 1.6;
}



/* Top-right nav (About / Contact / Behance) */

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: #111111;
  position: relative;
  padding-bottom: 0.1rem;
}

/* underline on hover for text links only */
.site-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #111111;
  transition: width 0.18s ease-out;
}

.site-nav a:not(:last-child):hover::after {
  width: 100%;
}

/* Behance emoji slightly larger */
.site-nav a:last-child {
  font-size: 1.1rem;   /* 📷 a bit bigger */
  padding-bottom: 0;   /* no underline spacing */
}

/* Behance line on contact page */

.contact-social {
  margin: 1.5rem 0 2rem;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #111111;
  font-size: 0.9rem;
}

/* round icon similar to Kristin Ellis */

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* minimalist Behance glyph inside the circle */

.icon-behance {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1px solid #111111;
  position: relative;
  box-sizing: border-box;
}

.icon-behance::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #111111;
  transform: translate(-50%, -50%);
}

.icon-behance::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #111111;
}

/* subtle hover */

.contact-social a:hover .icon-circle {
  background: #11111108;
}

.contact-behance {
  margin: 1.5rem 0 2rem;  /* space above form */
}

.contact-behance a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.behance-svg {
  width: 18px;       /* adjust size if needed */
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.linkedin-icon {
  width: 31px;    /* try 32–34 if you want it larger than Behance */
  height:31px;
  display: block;
}


.page-main {
  padding: 4rem 0 3rem;
}

.about-section {
  padding-top: 1rem;
}

.page-title {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.about-intro {
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 1.5rem;
  color: #333333;
}

.about-text {
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 1rem;
  color: #333333;
}

.about-section {
  padding-top: 1rem;
}

.about-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.about-copy {
  max-width: 44rem;   /* or 42rem if you want just a touch more */
}

.bio-divider {
  border: 0;
  border-top: 1px solid #dddddd;
  width: 3.5rem;          /* short line like Kristin's */
  margin: 1.6rem 0;
}

.about-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  color: #333333;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 1.1rem;
  color: #333333;
}

.about-copy ul {
  max-width: 40rem;
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;      /* small indent for bullets */
  font-size: 0.95rem;        /* same as .about-text */
  line-height: 1.8;          /* same as .about-text */
  color: #333333;            /* same tone as .about-text */
  list-style-type: disc;
}

.about-copy ul li + li {
  margin-top: 0.25rem;       /* a little space between bullet lines */
}


/* optional portrait */

.about-photo-wrapper {
  flex: 0 0 auto;
}

.about-photo {
  display: block;
  max-width: 220px;
  height: auto;
}

/* Stack on mobile */

@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
  }
  .about-photo {
    max-width: 180px;
  }
}

/* Social icons in top nav */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.6rem;   /* or whatever spacing you prefer */
  position: relative;
  top: -1px;             /* nudge icons slightly up */
}

/* Extra space only between CONTACT and the first icon */
.site-nav .nav-icon:first-of-type {
  margin-left: 1.4rem;
}



/* Behance icon – same size/feel as the old Instagram glyph */
.behance-svg {
  width: 17px;
  height: 17px;
  display: block;
}


.linkedin-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #111111;      /* make the lines dark, not blue */
  stroke-width: 1.4;
}
.contact-email-link {
  color: #333333;           /* same tone as body text */
  text-decoration: none;    /* remove blue underline */
}

.contact-email-link:hover,
.contact-email-link:focus {
  text-decoration: underline;  /* subtle underline on hover for usability */
}

