/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Phonk'; 
  src: url('fonts/Phonk-RegularDEMO.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* BASE STYLES */
html, body {
  height: 100%;
  margin: 0;
}

body {
  padding: 0 20%;
  font-family: 'Hanken Grotesk', sans-serif;
  background-color: #F2EEED;
  color: #090909;
  line-height: 1.6;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;     
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h2 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: 'Phonk', sans-serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 2rem;
}

/* p {
  font-size: 1rem;
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 1.5rem;
} */

/* HEADER */
.container {
  width: 100%;
  margin: 0 auto;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
}

.nav-links a {
  font-size: 14px;
  font-weight: 800;
  color: #090909;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #8D412A;
}

/* LANDING SECTION 
/* #landing {
 height: 100%;
}*/

.landing {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 80vh;
}

/* Decorative Name Bar */
.landing-decor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;  
}

.decor-plus {
  font-size: 1.5rem;
  font-weight: 700;
}

.decor-line {
  flex: 1;
  height: 2px;
  background-color: #090909;
}

.decor-name {
  font-family: 'Phonk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.5rem;
  white-space: nowrap;
}

.decor-slashes {
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
}

.decor-quote {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #090909;    
  color: #fff;
  padding: 4px 0;
  text-align: center;
  margin: 10px 0;
}

.decor-quote p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase; 
  background-color: #090909;    
  color: #F2EEED;                        
  margin: 0;
  display: block; 
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

.landing-decor-bottom {
  margin-bottom: .5em;
  margin-top: auto;
}

.landing-decor-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.decor-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  height: 60px;
  padding: .5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.decor-title p {
  margin: 0; !important;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  font
}

.rotate-45 {
  transform: rotate(45deg);
}

.decor-title {
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.decor-title i {
  font-size: 2.5rem; 
}

.decor-title img {
  height: 20px;
}

img.bar {
  height: 40px;
}

/* Text & Image Side by Side */
.landing-container {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  gap: 2rem;
}

/* Left Side: Text & CTA */
.landing-text {
  flex: 1;
  max-width: 40%;
}

.landing-text h2 {
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #090909;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-top: 4rem;
}

.cta-button:hover {
  background-color: #8D412A;
  color: #F2EEED;
}

/* Right Side: Image */
.landing-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.landing-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain; 
  display: block;
}

/* ========== WORKS ========== */
.works-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
}

.project-entry {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.project-thumbnail {
  flex: 1;
  max-width: 300px;
}

.project-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 1rem, 0;
}

.project-details {
  flex: 2;
  padding: 1rem 0;
}

.project-details a {
  text-decoration: none;
  color: #090909;
}

.project-details a:hover {
  color: #8D412A;
}

.project-details h2 {
  font-size: 1.3rem;
  font-family: 'Phonk', sans-serif;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.project-details p {
  font-size: 1rem;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #090909;
  line-height: 1.2rem;
}

.project-divider {
  width: 100%;
  height: 2px;
  background-color: #090909;
  margin-bottom: 3rem;
}

.explore-more {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;  
  text-align: left;   
  width: 60%;             
  margin: 0 auto; 
  padding: 1rem;  
}

.explore-more a {
  font-size: 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #090909;
  line-height: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  font-style: normal;
}

/* ========== CONTENT WRAPPER ========== */
.content-wrapper {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;   
  text-align: left;     
  width: 60%;           
  margin: 0 auto;        
  padding: 1rem;         
}

.content-wrapper h2 {
  font-size: 1.5rem;
  font-family: 'Phonk', sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1;
}

.meta-row {
  display: flex;
  gap: .5rem; 
  font-size: .9rem;
  font-weight: 600;
  color: #090909;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1rem;
}

.meta-row i {
  margin-right: 0.5rem;
}

.divider {
  color: #090909;
  font-weight: 600;
  padding: 0 0.5rem;
}

.content-block {
  margin: 3rem 0 3rem 0;
}

.content-block h2 {
  font-size: 1.8rem;
  font-family: 'Phonk', sans-serif;
  line-height: 1;
}

.content-block p {
  font-size: 1rem;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #090909;
  line-height: 1.5rem;
  width: 700px;
  margin: 0 auto;
}

.subtitle-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.subtitle {
  margin: 0 auto 2rem auto;
  width: 700px;
  justify-content: center;
}

p.subtitle{
  font-size: 1rem;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #090909;
  line-height: 1.5rem;
  text-align: center;
}

p.tools-description {
  font-size: .9rem;
}

.content-flex-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  width: 700px;
}


.image-wrapper {
  text-align: center;
}

.image-wrapper-left {
  text-align: left;
  flex: 1;
  max-width: 35%;
  margin: 1rem;
}

.img-wrap-adjustments {
  margin: 3rem 0;
}


.image-wrapper-left img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.content-text {
  flex: 2;
  max-width: 50%;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: auto;
}

.content-text p {
  max-width: 100%;
  width: 100%;

  word-wrap: break-word;
  overflow-wrap: break-word;
}

img.no-margin {
  margin: 4rem 0 0 0;
}



/* ========== CONTACT ME =========*/
.contact-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-align: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

.contact-content img {
  width: 600px;
}

.connect-heading {
  font-family: 'Phonk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #090909;
}

.contact-icons-inline {
  display: flex;
  gap: 6rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #090909;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.contact-item i {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #090909;
}

.contact-item:hover {
  transform: scale(1.05);
}

.contact-item a i {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #090909;
  transition: color 0.3s ease;
}

.contact-item a:hover i.fa-envelope {
  color: #8D412A; 
}

.contact-item a:hover i.fa-instagram {
  color: #8D412A; 
}

.contact-item a:hover i.fa-linkedin {
  color: #8D412A;
}

.contact-content img {
  width:600px;
}

/* ========== FOOTER ========== */
footer {
  margin-top: .5rem;       
  position: relative;    
  z-index: 1;    
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  align-items: center;
  flex: 1;
}

.footer-center {
  justify-content: center;
  text-align: center;
}

.footer-right {
  justify-content: flex-end;
}

footer p {
  margin: 0;
  font-weight: 500;
  font-size: 12px;
}

/* Style social icons */
.footer-right a {
  font-size: 1.25rem;
  color: #090909;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.footer-right a:first-child {
  margin-left: 0;
}

.footer-right a:hover {
  color: #8D412A;
}

a:hover {
  color: #8D412A;
}

/* ========== ABOUT ME ========== */
.aboutme-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.aboutme-intro img {
  width: 180px;
  height: auto;
  object-fit: cover;
}

.text-wrapper {
  flex: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.text-content {
  margin-top: 2rem;
  flex: 2;
}

.text-content h3 {
  font-family: 'Phonk', sans-serif;
  color: #090909;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-content p {
  font-family: 'Hanken Grotesk', sans-serif;
  color: #090909;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.descriptions {
  margin-top: 2rem;
  flex: 1.9;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  text-align: right;
  align-items: flex-end;
}

.descriptions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.descriptions li {
  font-family: 'Phonk', sans-serif;
  color: #090909;
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
}

.descriptions a.download-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  color: #090909;
  border: 1px solid #090909;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-top: 2rem;
  transition: background-color 0.3s ease;
}

.descriptions a.download-link:hover {
  background-color: #8D412A;
  color: #F2EEED;
}

.contact-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .5rem;          
  margin: 2.5rem 0;    
  text-align: center;  
  font-size: 12px;
  font-weight: 700;
}


.aboutme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; 
  background-color: #F2EEED;
  color: #090909;
  text-decoration: none;
}

.aboutme-icon i {
  font-size: 1.2rem;
}

.decor-line-aboutme {
  height: 2px;
  background-color: #090909;
  margin-top: 1rem;
}

/* ========== RESUME ========== */
.three-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.three-columns .column {
  flex: 1;
  min-width: 250px;
}

.three-columns h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0;
  font-family: 'Phonk', sans-serif;
  text-transform: uppercase;

}

.three-columns p {
  font-size: 0.95rem;
  line-height: 1.3;
  font-family: 'Hanken Grotesk', sans-serif;
}

.column {
  flex: 1;
}

.column ul {
  list-style-type: none;
  font-size: 0.95rem;
  line-height: 1.3;
  font-family: 'Hanken Grotesk', sans-serif;
}

.sub-columns {
  display: flex;
  gap: 1rem;
}

.sub-column {
  flex: 1;
}

.decor-line-aboutme2 {
  margin-top: auto; 
  height: 2px; 
  background-color: #090909;
}


/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 900px) {
  body {
    padding: 1rem;
    margin: 1rem;
    padding: 0;
    overflow-x: hidden;
  }

  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: row;
    gap: 1rem;
  }

.landing-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.landing-text, .landing-image {
  width: 100%;
}

.landing-text {
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  margin: 0 auto;
}


.landing-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.landing-text {
  text-align: center;
  width: 100%;
}

.landing-text h2 {
 margin-bottom: 2rem;
}

.decor-name {
  width: 300px;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto;
}

  .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .landing-decor {
    flex-direction: column;
  }

  .landing-decor-bottom-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .decor-title {
    font-size: 1rem;
  }

  .decor-quote p {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    margin-bottom: 1rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: flex-start;
  }

  .contact-icons-inline {
    flex-direction: row;
    gap: 4rem;
  }

  .project-entry {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0rem;
    margin-bottom: 1.5rem;

  }

  .project-thumbnail,
  .project-details {
    max-width: 100%;

  }

  .contact-content img {
  width: 500px;
}

  .explore-more,
  .content-wrapper,
  .subtitle,
  .content-block p,
  .content-flex-row {
    width: 100%;
    padding: 0 1rem;
  }
  
  .content-block p {
    word-wrap: break-word;    
    overflow-wrap: break-word; 
    hyphens: auto;           
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  .content-block img {
    max-width: 350px;
  }

  .content-flex-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
  }

  .img-wrap-adjustments {
    margin: 1.5rem 0;
  }

.image-wrapper p {
  text-align: left;
}
  .image-wrapper-left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

#chef-gif {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.image-wrapper img {
  margin-top: 1rem;
}
  .content-text {
    max-width: 100%;
  }

 .aboutme-intro {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;  
  gap: 2rem; 
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.text-content,
.descriptions {
  width: 100%;
  max-width: 600px; 
  margin-top: 0;
  text-align: center;
}
.descriptions ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;          
  margin: 2.5rem 0;    
  text-align: center;  
  font-size: 12px;
  font-weight: 700;
}

.descriptions ul li {
  margin-bottom: 0.5rem; 
}

.download-link {
  align-self: center;
}
.download-link a {
  margin-top: 1rem;
}
}