*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
}

#wrapper{
    margin: auto;
    background-color: rgb(241, 240, 239);

}

h2 {
    align-items: center;
    text-align: center;
    font-size: 2em;
}
  
a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

.nav a:hover{
  color: black;
}
 /* Start Nav */

.nav{
    background-color: rgb(173, 171, 169);
    display: flex;
    flex-direction:row;
    align-items: center;
    max-width: 1900px;
    justify-content: space-between;

}

.nav .logo img {
    width: 250px;
    height: auto;
    padding: 0px 20px;
    justify-content: center;
   

}

.nav ul,
.nav-links{
    display: flex;
    width: 100%;
    align-items:center;
    color: white;
    justify-content: space-between;
    flex-wrap:wrap;
    padding: 0px;
    margin: 0px;
    
}

.nav li {
    list-style-type: none;
    
}
.nav li:hover{
 
    transform: scale(1.4);
    transition: 0.2 ease;
    object-fit: contain;
    border-radius: 8px;

}

.nav li.links{
    width: 100%;
    text-align: center;
    padding: 15px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
   
}

#iconOpen, #iconClose, .iconCart{
    padding: 15px;
}

.hide{
    display: none;
}

/* End Nav */

.mainImage{
  justify-content: center;
  align-items: center;
  margin: auto;
}

  
.banner_image{
    height: auto;
    width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    opacity: 50%;
}  
  
  
  
/* Owl Carousel CSS */


.product-box img{
    width: 400px;
    height: 300px;
    margin-top: 6px;
    padding: 20px;
    border-radius: 50px;
}
.product-box img:hover {
    transform: scale(1.2);
    transition: 0.2 ease;
    object-fit: contain;
    border-radius: 50px;
    
}

.product-container{
    max-width: 1900px;
    width: 100%;
    position: relative;
    padding: 20px;
    
}
.product-box{
    width: 500px;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px black 5px;
    text-align: center;
    background-size: cover;
    position: relative;
   
}
.prev,.next {
    cursor: pointer;
}

.owl-nav{
    position: relative;
}

.owl-nav .fa-circle-chevron-left{
    position: absolute;
    left: 0;
    bottom: 190px;
    }
    
.owl-nav .fa-circle-chevron-right{
    position: absolute;
    right: 0;
    bottom: 190px;   
}

.owl-item{
    justify-content: center;
    display: flex;
    
}


/* Owl Carousel CSS */  

  
  
/* Overall card container */
.project-card {
  max-width: 900px;
  background: #fff;
  padding: 20px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Title */
.project-card h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Main image */
.project-main-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}



/*
.project-main-img img:hover {
  transform: scale(1.4);
  transition: 0.2 ease;
}
  */



/* Thumbnails row */
.project-thumbs {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap; 
  justify-content: center;
}

.project-thumbs img {
  flex: 1 0 150px;
  max-width: 32%;
  border-radius: 8px;
  object-fit: cover;
}

.project-thumbs img:hover {
    transform: scale(2.4);
    transition: 0.2 ease;
    object-fit: contain;
    border-radius: 8px;
}

/* Info box */
.project-info {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .project-card {
    padding: 15px;
  }

  .project-card h2 {
    font-size: 1.5rem;
  }

  .project-thumbs img {
    width: calc(50% - 10px); /* bigger thumbs on small screens */
  }
}  
  
/* The checklist thumbnail container */
.checklist-thumb {
  background: #f9f9f9; 
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;   
  min-height: 200px;  
}

/* Title */
.checklist-thumb h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

/* Skill list */
.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-list li {
  font-size: 1rem;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Font Awesome checkmark */
.skill-list i {
  color: #2ecc71; 
  font-size: 1.1rem;   
} 
 





#scrollTopBtn {
  position: fixed;
  bottom: 180px;
  right: 20px;
  padding: 12px 15px;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  background: rgb(60, 60, 60);
  color: rgb(255, 255, 255);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

/* Visible state */
#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Slight hover lift */
#scrollTopBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.30);
}  
  
  
  
  
  
  
  
  
  
  
  footer {
background-color: rgb(173, 171, 169);
color: white;
width: 100%;
max-width: 1900px;
position: fixed;
bottom: 0px;
text-align: center;

}



@media (min-width:768px) {
  .nav li.links{
    width: auto;
    padding: 15px 20px;
    text-align: center;
  }
  .nav ul{
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  
  #iconOpen,
  #iconClose {
    display: none;
  }
  .links {
    display: inline-block;
  }
}


/* Programming CSS*/
:root{
  --prg-accent: rgb(88, 166, 255);
}
.PRG-section {
  padding: 4rem 1.5rem;
}

.PRG-container {
  max-width: 800px;
  margin: 0 auto;
}

.PRG-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.PRG-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.PRG-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}



/* Optional subtle separation for longer pages */
.PRG-text:last-of-type {
  margin-bottom: 0;
}

/* Responsive refinement */
@media (max-width: 600px) {
  .PRG-title {
    font-size: 1.8rem;
  }

  .PRG-intro {
    font-size: 1.05rem;
  }
}

/* Checklist */

.PRG-checklist {
  margin-top: 3rem;
  padding-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid var(--prg-accent);
}

.PRG-checklist-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  color: var(--prg-accent);
}

.PRG-checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem 1.5rem;
}

.PRG-checklist-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  display: flex;
  align-items: center;
}

.PRG-checklist-list li:hover {
  transform: translateX(3px);
  opacity: 1;
}

/* Simple checkmark */
.PRG-checklist-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--prg-accent);
}


/* Physical Art Page Styles */

.ART-section {
  padding: 4rem 1.5rem;
}

.ART-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Intro */

.ART-intro {
  margin-bottom: 4rem;
}

.ART-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.ART-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 760px;
  opacity: 0.9;
}

/* Projects */

.ART-project {
  margin-bottom: 4rem;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(0, 0, 0, 0.15);
}

.ART-project-title {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

/* Text */

.ART-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 760px;
  opacity: 0.85;
}

/* Workshop feel: subtle rhythm */

.ART-project:last-of-type {
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 600px) {
  .ART-title {
    font-size: 1.8rem;
  }

  .ART-project {
    padding-left: 1rem;
  }
}

/* PROCESS PAGE STYLES */

.pro-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.pro-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pro-title {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pro-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

.pro-divider {
  border: none;
  height: 1px;
  background-color: rgb(180, 180, 180);
  margin: 3.5rem auto;
  width: 60%;
}

.pro-project {
  margin-bottom: 3rem;
}

.pro-project-title {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.pro-text {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

/* contact.css */
.contact-page {
  font-family: 'Arial', sans-serif;
  background-color: rgb(245, 245, 245);
  padding: 60px 20px;
  color: rgb(50, 50, 50);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 300px;
  text-align: center;
}

.contact-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgb(200, 200, 200);
}

.contact-info h1 {
  margin-bottom: 10px;
  font-size: 2em;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: rgb(80, 120, 200);
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form-container {
  flex: 1 1 400px;
  background-color: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(80, 120, 200);
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid rgb(200, 200, 200);
  font-size: 1em;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  font-size: 1.1em;
  background-color: rgb(80, 120, 200);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: rgb(60, 90, 160);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}