* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}


header {
  background: transparent;
  padding: 1rem 2rem;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  color: #fff; 
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: #f39c12; 
}


.main {
  height: 100vh;
  background: url('Pictures/20231215114529_IMG_0698.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;     
  justify-content: flex-start; 
  padding-left: 80px;       
  position: relative;
  color: #fff;
}

.main .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); 
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
}

.main-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
}

.main-content p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 10px;
}

.about {
  background: url('Pictures/DSC00696.JPG') center/cover no-repeat;
  position: relative;
  min-height: 100vh;
  padding: 80px 50px;
  color: #fff;
}

.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  z-index: 1;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

.about-photo {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.about-text {
  flex: 2;
  padding: 20px;
}

.about-text h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #f39c12;
  display: inline-block;
}

.about-text p,
.about-text li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
.about-text ul {
  list-style: square inside;
  margin-bottom: 20px;
}

footer {
  background: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.interests {
  text-align: center;
  padding: 50px 20px;
  background-color: #000000; 
}

.interests h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.interest img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.interests .interest:first-child img {
  object-fit: cover;        
  object-position: center 10%; 
}
  
.interest p {
  margin-top: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
}

.quote-section {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Quicksand', sans-serif;
}

.quote-section blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  max-width: 800px;   
  margin: 0 auto;     
  color: #fff;    
}

.quote-section footer {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #ccc;
}


body {
    font-family: 'Quicksand', sans-serif !important;
    background: #000 !important;
    color: #fff !important;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.portfolio-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
}


.project {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-image img,
.carousel-inner img {
    width: 100%;
    max-height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.project-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.project-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}


.carousel {
    max-width: 550px;
    margin: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 1.2rem;
    height: 1.2rem;
}

.carousel-indicators button {
    background-color: #fff !important;
}


@media (min-width: 768px) {
    .project {
        flex-direction: row;
        align-items: center;
    }

    .project-image {
        flex: 1;
    }

    .project-text {
        flex: 1;
        padding-left: 1rem;
    }
}


body {
  font-family: 'Quicksand', sans-serif;
  background: #000; 
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}


.contact {
  background: url('Pictures/DSC00696.JPG') center/cover no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 50px 20px;
}


.contact-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-container p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #ddd;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-links a img {
  width: 100px;
  height: 100px;
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  border-radius: 12px;
}

.social-links a img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}