@charset "UTF-8";
/* CSS Document */

/* Typefaces */
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800

.host-grotesk-<uniquifier> {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 800

.newsreader-<uniquifier> {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}


html, body {
  height: 100%;
  width: 100%;
}


/* text styling */


/* Headings: Host Grotesk */
h1, h2, h3, h4, h5 {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700; /* bold for main title */
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

h4 {
  font-size: 1.4rem;
  font-weight: 500;
}

h5 {
  font-size: 1.2rem;
  font-weight: 400;
}





/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.1rem; }
}

/* end text styling */









/* Header styling */
header {
  background-color:rgba(210,210,210,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  color: #FFFFFF;
  padding: 20px;
  font-family: "Host Grotesk", sans-serif;
  position: fixed;
  top: -5px;
  width: 100%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
}

.header-title a {
  color: #000000;
  text-decoration: none;
  font-family: "Newsreader", serif;
  font-size: 1em;
  margin-left: 10px;
}

@media (max-width: 768px) {
   .header-title a {
  font-size: 0.8em;
    }
}

/* "Menu" Label */
.menu-label {
  color: #000000;
  font-size: 1.1rem;
  cursor: pointer;
  padding-right: 10px;
  text-decoration: none;
}

/* Sidebar Navigation */
.sidebar-nav {
  background-color: #111111;
  position: fixed;
  right: -250px; /* Hidden by default */
  top: 0;
  width: 250px;
  height: 100vh;
  padding: 20px;
  display: grid;
  align-content: center;
  text-align: left;
  transition: right 0.3s ease-in-out;
}

/* Hide "Close" button by default (for large screens) */
.close-menu {
  display: none;
}

/* -------- DEFAULT: HOVER MODE FOR LARGER SCREENS -------- */
@media (min-width: 768px) {
  .header-container:hover .sidebar-nav {
    right: 0; /* Show menu on hover */
  }
}

/* -------- MOBILE VIEW: CLICK MODE -------- */
@media (max-width: 768px) {
  /* Show menu when #menu-toggle is targeted */
  #menu-toggle:target {
    right: 0;
  }

  /* Show "Close" button only on screens with max-width of 768px */
  .close-menu {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 15px;
    margin-bottom: 20px;
  }
}

/* Navigation List */
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.sidebar-nav ul li {
  font-size: 1.2rem;
}

.sidebar-nav ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1rem;
}

.sidebar-nav ul li a:hover {
  color: #666666;
}












/* main page */

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
  z-index: 1; /* under header/nav */
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio */
  z-index: 0; /* lowest */
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* push to right */
  justify-content: center;
  height: 100%;
  padding: 40px;
  z-index: 2; /* ensures it’s above the image */
}

.hero-title {
  font-family: "Host Grotesk", sans-serif;
  font-size: 3rem;
  color: #000000;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 0px 2px 8px rgba(255,255,255);
  position: relative;
  z-index: 3; /* higher than background image */
  width: 100%;
  max-width: 45%;  /* match textbox width */
}

.hero-textbox {
  background-color:rgba(210,210,210,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  color: #000000;
  max-width: 45%;
  padding: 50px 50px;
  border-radius: 20px;
  line-height: 1.6;
  position: relative;
  margin-top: 10%;
  z-index: 3;
}

  
  
  
  

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    padding: 20px;
  }

  .hero-textbox {
    max-width: 90%;
    text-align: center;
  }
}

















/* About Me main Section */

.about-me {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}

.about-me h2 {
margin-bottom: 40px;
}

/* About Me Box Hover Grow */
.about-me-box {
  display: flex;
  width: 90%;
  background-color: rgba(210, 210, 210, 0.3);
  border-radius: 20px;
  padding: 0px;
  gap: 40px;
  flex-wrap: wrap;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Grow effect on hover */
.about-me-box:hover {
  transform: scale(1.02); /* slightly bigger */
  z-index: 2; /* sit above other content */
}


/* Align header to the left edge of the box */
.about-me h2.newsreader-work-preview {
  width: 90%; /* same as box width */
  max-width: 100%;
  text-align: left;
  margin-bottom: 20px; /* spacing below header */
  margin-left: 20px;
}


/* Left Column: Text */
.about-me-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers text vertically if needed */
  align-items: center; /* centers content horizontally */
  gap: 20px; /* space between paragraph and button */
  text-align: center; /* center-align text inside the paragraph */
  padding-left: 40px;
}

/* Text Paragraph */
.about-me-text h4 {
  line-height: 1.6;
  margin: 0; /* remove bottom margin since gap handles spacing */
}

/* Learn More Button */
.learn-more-btn {
  padding: 12px 30px;
  background-color: #333;
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #555;
  transform: scale(1.05);
}


/* Right Column: Photo */
.about-me-photo {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-me-photo img {
  max-width: 70%;
  object-fit: cover;
}




/* Stack everything vertically on smaller screens */
@media (max-width: 768px) {
  /* About Me Box becomes a column */
  .about-me-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px; /* add some breathing room */
    gap: 20px; /* reduce gap between items */
  }

  /* Reorder elements: photo first, then text */
  .about-me-photo {
    order: 1; /* image on top */
    max-width: 90%;
  }

  .about-me-photo img {
    width: 100%;
    max-width: 300px; /* keeps image manageable */
    height: auto;
    border-radius: 20px;
    object-fit: cover;
  }

  .about-me-text {
    order: 2; /* text below image */
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    gap: 10px;
  }

  .about-me-text h4 {
    font-size: 1.2rem; /* slightly smaller for mobile */
    line-height: 1.5;
    max-width: 300px;
  }

  .learn-more-btn {
    order: 3; /* ensures button is below text */
    margin-top: 10px;
  }

  /* Header spans full width and centered */
  .about-me h2.newsreader-work-preview {
    text-align: center;
    margin-left: 0;
    margin-bottom: 30px;
    width: 90%;
  }
}

 
 /* end about me main section 







/* end main page */











/* About page */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns by default */
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 150px auto;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.about-image:hover {
  transform: scale(1.01);

}

.about-text {
  text-align: left;
}

.about-text h2 {
padding-bottom: 10px;
}

/* Contact Button */
.contact-me-btn {
  padding: 12px 30px;
  background-color: #333;
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block; /* makes the button behave like a block but still inline-sized */
  margin-top: 30px; /* adds space above it */
}

.contact-me-btn:hover {
  background-color: #555;
  transform: scale(1.05);
}




    .work-experience-section {
      display: grid;
      grid-template-columns: 1fr 2fr; /* left side smaller, right side larger */
      gap: 2rem;
      padding: 100px;
      max-width: 100%;
      margin: auto;
      background-color: #F0F0F0;
    }

    /* Left Side */
    .work-experience-left {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .work-experience-left h1 {
      margin: 0;
    }

    /* Right Side */
    .work-experience-right {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .experience-box {
      padding: 1.5rem;
      border-radius: 20px;
      background-color: #f9f9f9;
      transition: transform 0.3s ease-in-out;
    }
    
    .experience-box h5{
     margin-bottom: 15px;
    }
    
    .experience-box:hover {
    transform: scale(1.03);
    }






@media (max-width: 768px) {
.about-section {
    grid-template-columns: 1fr; /* One column */
    grid-template-rows: auto auto; /* Stack items vertically */
  }

  .about-image {
    order: -1; /* Ensures image is displayed first */
  }
  
  .about-image img {
  width: 90%;
  margin: 0 auto;
  }

  .about-text {
    text-align: center;
    padding: 20px;
  }
  
 .about-text h2 {
  font-size: 2em;
  margin-top: 0;
}

.about-text p {
  font-size: 0.8em;
  line-height: 1.2;
}




.work-experience-section h2 {
  font-size: 2em;
  margin-top: 0;
}

.work-item h3 {
  font-size: 1.2em;
}

.work-item p {
  font-size: 0.8em;
  line-height: 1.2;
}

.work-item p em {
  font-size: 0.8rem;
  line-height: 1.2;
}


}
              

              
      
              

/* end about css */












/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 200px;
  max-width: 100%;
  margin: auto;
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #F0F0F0;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: "Host Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-left: 10px;
}

.contact-form input,
.contact-form textarea {
  font-family: "Host Grotesk", sans-serif;
  padding: 1rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
}

.contact-form button {
  font-family: "Host Grotesk", sans-serif;
  padding: 1rem 2rem;
  border-radius: 30px;
  border: none;
  background-color: #333;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  margin-top: 20px;
}

.contact-form button:hover {
  background-color: #555;
  transform: scale(1.01);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .contact-section h1 {
    text-align: center;
    margin-bottom: 2rem;
  }
}


/* end contact page */










/* Project Section Layout */


.project-info {
  display: grid;
  grid-template-columns: 1fr 2fr; /* labels on left, description on right */
  grid-template-rows: auto 1fr;  /* top row for title, bottom row for content */
  gap: 30px 60px; /* vertical gap = 20px, horizontal = 40px */
  width: 80%;
  margin: 180px auto;
  margin-bottom: 80px;
}

/* Title spans both columns */
.project-title {
  grid-column: 1 / -1; /* spans all columns */
  font-family: "Host Grotesk", sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Text block (description) sits in right column */
.project-description {
  font-family: "Host Grotesk", sans-serif;
  line-height: 1.6;
  grid-column: 2; 
}


/* Labels sit in left column */
.project-labels {
  display: grid;
  gap: 20px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 1.2rem;
  padding-top: 10px;
  align-self: start; /* <-- this prevents vertical stretching */
}


/* Base Gallery Styles */
.project-gallery {
  width: 80%;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  justify-content: center;
}

.project-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

 .project-gallery img:hover {
    transform: scale(1.01);
    }

/* --- Style 1: Two images per row --- */
.project-gallery.grid-two {
  grid-template-columns: repeat(2, 1fr);
}

/* --- Style 2: Featured landscape image at top, then 2-column grid --- */
.project-gallery.featured-first {
  grid-template-columns: repeat(2, 1fr);
}

/* Make the first image span full width for featured layout */
.project-gallery.featured-first img:first-child {
  grid-column: 1 / -1; /* spans both columns */
  border-radius: 10px;
}

/* --- Responsive Design (both styles) --- */
@media (max-width: 768px) {
  .project-gallery.grid-two,
  .project-gallery.featured-first {
    grid-template-columns: 1fr; /* one image per row on mobile */
  }

  .project-gallery.featured-first img:first-child {
    grid-column: auto; /* remove spanning on mobile */
  }
}



/* --- Style 3: Single Column Vertical Stack --- */
.project-gallery.vertical-stack {
  display: grid;
  grid-template-columns: 1fr; /* one image per row */
  gap: 40px; /* more breathing room between images */
  justify-items: center; /* centers images horizontally */
}

.project-gallery.vertical-stack img {
  width: 100%; /* narrower images for a balanced layout */
  max-width: 1000px; /* prevents overly large images on large screens */
  border-radius: 20px;
}

/* Responsive: full width on small screens */
@media (max-width: 768px) {
  .project-gallery.vertical-stack img {
    width: 100%;
  }
}






.view-more-cards {
  width: 80%;
  margin: 100px auto 100px;
}

.view-more-cards h2 {
  font-family: "Host Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

/* 3-column grid */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card container */
.project-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
 height: 300px;
}

/* Keep horizontal image shape */
.project-card img {
  width: 100%;
  height: 300px;              /* preserves landscape ratio */
  object-fit: cover;          /* ensures image fills neatly */
  display: block;
  transition: opacity 0.4s ease;
}

/* Overlay layer */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(50, 50, 50, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: inherit;
}

/* Title text overlay */
.project-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
}

/* Hover effects */
.project-card:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.project-card:hover::before {
  opacity: 1;
}


.project-card:hover h3 {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive (stack on mobile) */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}




/* end project page*/








/* =========================
   DESIGN OVERVIEW SECTIONS
========================= */



.design-overview-title {
  text-align: center;
  padding: 160px 20px 80px 20px; /* space from top header + breathing room */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.design-overview-title h1 {
  color: #000;
  margin-bottom: 10px;
}

.design-overview-title h4 {
  color: #444;
  max-width: 700px;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .design-overview-title {
    padding: 120px 20px 60px 20px;
  }

  .design-overview-title h1 {
    font-size: 2.2rem;
  }

  .design-overview-title h4 {
    font-size: 1rem;
  }
}











.design-overview {
  display: grid;
  gap: 20px;
  margin: 20px auto;
  padding: 0 40px;
  max-width: 3000px;
}

/* Two-column layout for landscape images */
.landscape-overview {
  grid-template-columns: repeat(2, 1fr);
}

/* Three-column layout for portrait images */
.portrait-overview {
  grid-template-columns: repeat(3, 1fr);
}

/* Shared item styles */
.overview-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.overview-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease;
}


.overview-item:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(50, 50, 50, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.overlay p {
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 10px;
}



.overlay p a {
  color: inherit;              /* matches the <p> text color */
  font-family: inherit;        /* same font */
  font-size: inherit;          /* same size */
  text-decoration: none;       /* removes underline */
  font-weight: inherit;        /* same weight */
}

.overlay p a:hover {
  color: inherit;              /* prevent hover color change */
  text-decoration: none;       /* no underline on hover */
}




.overview-item:hover .overlay {
  opacity: 1;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .landscape-overview {
    grid-template-columns: 1fr;
  }

  .portrait-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portrait-overview {
    grid-template-columns: 1fr;
  }
}






/* --- End Gallery Section --- */












/* Footer styling*/
footer {
  background-color: #000000;
  color: #FFF; /* White text */
  padding: 20px 40px;
  font-family: "Host Grotesk", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* Three equal-width columns */
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFFFFF;
}

.footer-column h3 {
margin: 0;
  font-size: 2em;
  font-family: "Newsreader", serif;
}

.footer-column h4 {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Newsreader", serif;
}

.footer-column p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer-column p a {
  color: #ffffff;
  text-decoration: none;
}

.footer-column p a:hover {
  color: #666666;
  text-decoration: none;
}

.footer-column hr {
  border: none;
  border-top: 1px solid #FFFFFF;
  margin: 10px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: #666666;
  text-decoration: none;
}

.footer-bottom {
  text-align: left;
  font-size: 0.8rem;
  margin-top: 10px;
}



@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* Single column layout */
    text-align: center; /* Center-align text for better readability */
  }

  .footer-column h3,
  .footer-column h4 {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.6em;
  }
  
  .footer-column p {
  text-align: center;
  font-size: 0.8em;
    }
    
    .footer-column ul li  {
  text-align: center;
    }
    
    .footer-column ul li a {
  text-align: center;
  font-size: 0.8em;
    }
    
    .footer-column hr {
  margin: 0 auto;
  margin-bottom: 20px;
    }

}

