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

/* Typefaces */

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-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 */
h1, h2, h3, h4, h5, a, p {
  font-family: "Montserrat", 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;
}

p {
  font-size: 1rem;
  font-weight: 400;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  h5 { font-size: 0.9rem; }
  p { font-size: 0.7rem; }
}

/* end text styling */









/* Header styling */




/* Hero / Header */
.header-background {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  height: 400px; /* taller than normal header */
  text-align: center;
  background-color: #E2E2D4;
}
/* Name */
.site-name {
  margin: -50px 60px -40px 0;
}
.site-name img{
  max-height: 300px;
  width: auto;
}
/* Navigation */
.main-nav {
  display: grid;
  grid-auto-flow: column;
  gap: 3rem;
  margin: 0 0 0 80px;
}
.main-nav a {
  text-decoration: none;
  color: #28121F;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.main-nav a:hover {
  text-decoration: none;
  font-weight: 600;
  color: #762531;
}


/* Hide mobile elements on desktop */
.menu-toggle,
.hamburger-btn,
.mobile-menu {
  display: none;
}




/* Mobile Styles */
@media (max-width: 768px) {
  .header-background {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    justify-items: center;
    align-items: center;
    height: 200px;
    position: relative;
    overflow: hidden;
  }

  .site-name {
    grid-column: 1 / 3;
    margin: 0;
  }

  .site-name img {
    max-height: 150px;
    width: auto;
  }

  /* Hide desktop nav */
  .main-nav {
    display: none;
  }

  /* Hamburger button */
  .hamburger-btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100;
    color: #762531;
  }

  /* Hide checkbox */
  .menu-toggle {
    display: none;
  }

/* Slide-in menu */
.mobile-menu {
  display: grid;
  grid-template-rows: auto auto auto auto;
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background-color: #28121f;
  padding: 2rem;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 9999;
  box-sizing: border-box;
  align-content: start;
  row-gap: 3rem;
}

/* Close button inside menu */
.close-btn {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  text-align: left;
  margin-bottom: 2rem;
  color: #E2E2D4;
}

  .mobile-menu a {
    text-decoration: none;
    color: #E2E2D4;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    
  }

  .mobile-menu a:hover {
    text-decoration: none;
    font-weight: 600;
  }

  /* Open state */
  .menu-toggle:checked ~ .mobile-menu {
    right: 0;
  }
}

/* header end */





/* main page */

 /* =========================
   gallery section
========================= */
.design-overview-title {
  text-align: left;
  padding-top: 90px;
  padding-left: 60px;
}
.design-overview-title h1 {
  color: #E2E2D4;
}
.design-overview {
  display: grid;
  gap: 40px;
  margin: 40px auto;
  padding: 0 40px;
  max-width: 100%;
}
.landscape-overview {
  grid-template-columns: repeat(2, 1fr);
}
.portrait-overview {
  grid-template-columns: repeat(3, 1fr);
}
.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 {
  position: absolute;
  inset: 0;
  background-color: rgba(40, 18, 31, 0.8);
  opacity: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.4s ease;
}
.overlay h3 {
  color: #e2e2d4;
  text-align: center;
  padding: 0 10px;
}
.overlay h3 a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
  font-weight: inherit;
}
.overlay h3 a:hover {
  color: inherit;
  text-decoration: none;
}
.overview-item:hover .overlay {
  opacity: 1;
}




@media (max-width: 1024px) {
  .landscape-overview {
    grid-template-columns: 1fr;
  }
  .portrait-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 768px) {
  .design-overview-title {
    padding: 50px 30px 20px 20px;
  }
  .design-overview-title h1 {
    font-size: 2.2rem;
  }
  .portrait-overview {
    grid-template-columns: 1fr;
  }
  .overlay {
    opacity: 1;
    background-color: transparent;
    display: grid;
    align-items: end;
    justify-items: center;
    padding: 0;
    inset: auto 0 0 0;
    top: auto;
    height: auto;
    position: absolute;
  }
  .overlay h3 {
    width: 100%;
    background-color: rgba(40, 18, 31, 0.75);
    padding: 14px 12px;
    border-radius: 0;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    z-index: 2;
    position: relative;
  }
}
/* end main page */











/* About page */
.about-section-page {
  background-color: #28121F;
  min-height: 100vh;
  width: 100%;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: auto;
  padding-top: 130px;
}
.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;
  color: #e2e2d4;
}
.about-text h2 {
  padding-bottom: 10px;
}



/* Contact Button */
.contact-me-btn {
  padding: 12px 30px;
  background-color: #A36739;
  color: #e2e2d4;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 30px;
}
.contact-me-btn:hover {
  background-color: #8e746a;
  transform: scale(1.05);
}



.work-experience-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 100px;
  max-width: 100%;
  margin: auto;
  background-color: #762531;
}
.work-experience-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.work-experience-left h1 {
  margin: 0;
  color: #e2e2d4;
}
.work-experience-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}



.experience-box {
  padding: 1.5rem;
  border-radius: 20px;
  background-color: #e2e2d4;
  transition: transform 0.3s ease-in-out;
}
.experience-box h3 {
  color: #28121f;
}
.experience-box h5 {
  margin-bottom: 15px;
  color: #28121f;
}
.experience-box ul {
  margin-bottom: 5px;
  color: #28121f;
  list-style-type: disc;
  padding-left: 1.5rem;
}
.experience-box li {
  margin-bottom: 5px;
  color: #28121f;
}
.experience-box:hover {
  transform: scale(1.03);
}




@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 100px 20px 20px;
  }
  .about-image {
    order: -1;
  }
  .about-image img {
    width: 80%;
    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 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 40px 20px;
    text-align: center;
  }
  .work-experience-left {
    align-items: center;
  }
  .work-experience-left h1 {
    font-size: 2em;
  }
  .work-experience-right {
    width: 100%;
  }
  
  
  
  .experience-box {
    text-align: left;
  }
  .experience-box h3 {
    font-size: 1.2em;
  }
  .experience-box p {
    font-size: 0.8em;
    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;
  background-color: #762531;
}
/* Contact Form Styling */
.contact-form {
  display: grid;
  gap: 1.5rem;
  background-color: #762531;
}
.contact-form .form-group {
  display: grid;
}
 .contact-section h1 {
   color: #e2e2d4;
   font-family: "Montserrat", sans-serif;
  }
.contact-form label {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-left: 10px;
  font-family: "Montserrat", sans-serif;
  color: #e2e2d4;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
  resize: vertical;
  font-family: "Montserrat", sans-serif;
  background-color: #e2e2d4;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
}
.contact-form button {
  padding: 1rem 2rem;
  border-radius: 20px;
  border: none;
  background-color: #a36739;
  color: #e2e2d4;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.contact-form button:hover {
  background-color: #8e746a;
  transform: scale(1.01);
}




/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 40px 20px;
  }
  .contact-section h1 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .form-group label {
    text-align: left;
    font-weight: 500;
  }
}
/* end contact page */










/* Project Section Layout */

.project-page {
  background-color: #28121F;
}

.project-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 80px;
  margin-bottom: 80px;
}

.project-title__title {
  padding-left: 80px;
  color: #e2e2d4;
}

.project-title__description {
align-content: center;
text-align: right;
margin-right: 80px;
color: #e2e2d4;
}






.andrea-brand-panel {
  display: grid;
  justify-items: center;
}

.andrea-brand-panel img {
  width: 90%;
  aspect-ratio: 2550 / 3231;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.andrea-brand-panel img:hover {
  transform: scale(1.01);
}







.main-project-image {
  display: grid;
  justify-items: center;
}

.main-project-image img {
  width: 90%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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







.project-content {
  display: grid;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.project-content__image {
  position: relative;
}

.project-content__image img {
  width: 85%;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}

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

.project-content__text {
  position: absolute;
  top: 40px;
  right: -30px;
  background-color: #a36739;
  color: #e2e2d4;
  border-radius: 15px;
  padding: 30px;
  max-width: 35%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.project-content__text h2 {
  margin-bottom: 10px;
}








.solution-wrapper {
  position: relative;
  margin-top: 80px;
  margin-bottom: 350px;
}

.two-column-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-left: 80px;
  padding-right: 80px;
}

.two-column-images img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: block;
}

.two-column-images img:hover {
  transform: scale(1.01);
}

.solution-text {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a36739;
  color: #e2e2d4;
  border-radius: 15px;
  padding: 30px;
  max-width: 50%;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.solution-text h2 {
  margin-bottom: 10px;
  text-align: center;
}






.project-content-reverse {
  display: grid;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}

.project-content-reverse__image {
  position: relative;
}

.project-content-reverse__image img {
  width: 85%;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  transition: transform 0.3s ease;
}

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

.project-content-reverse__text {
  position: absolute;
  top: 40px;
  left: -30px;
  background-color: #a36739;
  color: #e2e2d4;
  border-radius: 15px;
  padding: 30px;
  max-width: 35%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.project-content-reverse__text h2 {
  margin-bottom: 10px;
}






.project-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 100px;
  padding-bottom: 150px;
}

.project-navigation__prev {
  justify-self: start;
  margin-left: 90px;
  padding: 15px 30px;
   border: 2px solid #a36739; /* Change border color here */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  color: #28121f; /* Change text color here */
  background-color: #a36739; /* Change background color here */
}

.project-navigation__next {
  justify-self: end;
  margin-right: 90px;
  padding: 15px 30px;
  border: 2px solid #a36739; /* Change border color here */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  color: #28121f; /* Change text color here */
  background-color: #a36739; /* Change background color here */
}

.project-navigation__next:hover, .project-navigation__prev:hover {
  background-color: #8e746a;
  border: 2px solid #8e746a;
}







.single-image-and-text {
  display: grid;
  justify-items: center;
  position: relative;
  padding-bottom: 300px;
}

.single-image-and-text img {
  width: 90%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.single-image-and-text img:hover {
  transform: scale(1.01);
}

.single-image-and-text__text {
  position: absolute;
  top: calc(66% - 5%);
  right: 8%;
  background-color: #a36739;
  color: #e2e2d4;
  border-radius: 15px;
  padding: 30px;
  max-width: 800px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.single-image-and-text__text h2 {
  margin-bottom: 10px;
}







.text-only {
  display: grid;
  justify-items: center;
  padding: 60px 5%;
}

.text-only__text {
  background-color: #a36739;
  color: #e2e2d4;
  border-radius: 15px;
  padding: 30px;
  width: 70%;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.text-only__text h2 {
  margin-bottom: 10px;
  text-align: center;
}








.project-content-portrait {
  display: grid;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}

.project-content-portrait__image {
  position: relative;
}

.project-content-portrait__image img {
  height: auto;
  width: 60%;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}

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

.project-content-portrait__text {
  position: absolute;
  bottom: 300px;
  right: 20px;
  background-color: #a36739;
  color: #e2e2d4;
  border-radius: 15px;
  padding: 20px;
  max-width: 40%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.project-content-portrait__text h2 {
  margin-bottom: 10px;
}








@media (max-width: 768px) {

  .project-title {
    grid-template-columns: 1fr;
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .project-title__title {
    padding-left: 20px;
  }
  .project-title__description {
    text-align: left;
    margin-right: 0;
    margin-left: 20px;
  }




  .project-content {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .project-content__image {
    display: grid;
  }
  .project-content__image img {
    width: 100%;
  }
  .project-content__text {
    position: static;
    max-width: 100%;
    margin: 20px auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  }




  .solution-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .two-column-images {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .solution-text {
    position: static;
    transform: none;
    max-width: 100%;
    margin: 20px;
    box-shadow: none;
    text-align: left;
  }




  .project-content-reverse {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .project-content-reverse__image {
    display: grid;
  }
  .project-content-reverse__image img {
    width: 100%;
    margin-left: 0;
  }
  .project-content-reverse__text {
    position: static;
    max-width: 100%;
    margin: 20px auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  }




  .project-navigation {
    margin-top: 50px;
    padding-bottom: 80px;
  }
  .project-navigation__prev {
    margin-left: 20px;
  }
  .project-navigation__next {
    margin-right: 20px;
  }
  
  
  

  .single-image-and-text {
    padding-bottom: 300px;
  }

  .single-image-and-text__text {
    top: calc(45% - 30px);
    right: 0;
    left: 8%;
    max-width: 70%;
    padding: 15px;
  }

  .single-image-and-text__text h2 {
    margin-bottom: 6px;
  }

  .single-image-and-text__text h5 {
    margin-bottom: 6px;
  }

  .text-only {
    padding: 40px 5%;
  }

  .text-only__text {
    width: 85%;
    padding: 20px;
  }

}

/* end project page*/





/* Footer styling */
footer {
  background-color: #28121f;
  color: #E2E2D4;
  padding: 20px 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E2E2D4;
}

.footer-logo {
  max-width: 70%;
  height: auto;
  display: block;
}

.footer-column h4 {
  margin: 0;
  font-size: 1.2rem;
}

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

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

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

.footer-column hr {
  border: none;
  border-top: 1px solid #E2E2D4;
  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: #E2E2D4;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: #8E746A;
  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;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .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;
  }
}

