/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: lavender;
  color: black;
  box-sizing: border-box;
}

/* Header */
.site-header {
  background-color: #999; /* grey background */
  padding: 20px 0;
  text-align: center;
}

.site-title {
  font-family: 'Gagalin', sans-serif; /* Gagalin font */
  font-weight: bold;
  font-size: 36px; /* slightly bigger than About Me */
  margin: 0 0 15px 0;
  color: black;
}

.main-nav {
  margin-top: 15px;
}

.main-nav .nav-link {
  font-family: 'Arimo', sans-serif;
  font-size: 30px;
  text-decoration: none; /* remove underline */
  color: black;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s; /* smooth hover */
}

.main-nav .nav-link:hover {
  color: purple; /* hover effect */
  text-decoration: none; /* no underline */
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  flex-wrap: wrap; /* stacks on smaller screens */
}

.about-text {
  max-width: 500px;
  text-align: left;
  font-size: 30px; /* heading size */
}

.about-text h2 {
  font-family: Arial, sans-serif; /* About Me heading font */
  font-size: 30px;
  margin: 0 0 15px 0;
  color: black;
}

.about-text p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 27px;
  line-height: 1.5;
  margin-top: 10px;
}

.about-image {
  width: 300px;  /* increased size */
  height: 300px;
  object-fit: cover;
  border-radius: 25px; /* rounded edges */
  order: 2; /* image on right */
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

/* Featured Photos Section */
.photos-section {
  padding: 40px 20px;
  text-align: center;
}

.photos-section h2.photos-title {
  font-family: 'Gagalin', sans-serif; /* Gagalin font */
  font-weight: bold;
  font-size: 36px; /* slightly bigger than About Me */
  margin-bottom: 20px;
  color: black;
}

.photo-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.photo {
  width: 200px;  /* increased size */
  height: 200px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
  background-color: #f2f2f2;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}
.site-footer p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
/* About Hero Section */
.about-hero {
  background-image: url('./Images/Bg.jpg'); /* replace with your background photo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-text {
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
  color: white;
  padding: 30px;
  border-radius: 15px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 27px;
  line-height: 1.6;
  text-align: left; /* left-align list for readability */
}

.about-hero-text h3 {
  font-family: Arial, sans-serif;
  font-size: 28px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.about-hero-text .favorite-photos {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 27px;
}
.about-hero-text .favorite-photos li {
  margin-bottom: 10px;
}
/* General Body */
body {
  background-color: lavender;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
}

/* Header */
.site-header {
  background-color: grey;
  padding: 20px 0;
  text-align: center;
}

.site-title {
  font-family: 'Gagalin', sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: black;
  margin: 0;
}

.main-nav .nav-link {
  font-family: 'Arimo', sans-serif;
  font-size: 30px;
  margin: 0 15px;
  color: black;
  text-decoration: none;
}

.main-nav .nav-link:hover {
  color: purple;
  text-decoration: none;
}

/* ------------------- Gallery Section ------------------- */
.gallery-section {
  padding: 50px 20px;
  text-align: center;
  background-color: lavender;
}

.gallery-title {
  font-family: 'Gagalin', sans-serif;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 30px;
  color: black;
}

/* Section 1: Left tall, right stacked */
.section1 .photo-left {
  float: left;
  width: 66%;
  margin-right: 2%;
}

.section1 .photo-left img {
  height: 520px; /* taller left photo */
  object-fit: cover;
}

.section1 .photo-right {
  float: left;
  width: 32%;
}

.section1 .photo-right img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  height: 255px; /* stacked photos half the left height */
  object-fit: cover;
}

/* Section 2: Top long, bottom 2 side by side */
.section2 .photo-top img {
  width: 100%;
  height: 320px; /* taller top photo */
  object-fit: cover;
  margin-bottom: 20px;
}

.section2 .photo-bottom-left img,
.section2 .photo-bottom-right img {
  width: 100%;
  height: 250px; /* equal bottom photos */
  object-fit: cover;
}

.section2 .photo-bottom-left {
  float: left;
  width: 49%;
  margin-right: 2%;
}

.section2 .photo-bottom-right {
  float: left;
  width: 49%;
}

/* Common styling for all gallery photos */
.gallery-photo {
  border-radius: 25px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-photo:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
}

/* Clearfix for float sections */
.section1::after,
.section2::after {
  content: "";
  display: table;
  clear: both;
}
/* Contact Section with Background Image */
.contact-section {
  background: 
    linear-gradient(rgba(230, 230, 250, 0.8), rgba(230, 230, 250, 0.8)),
    url('./Images/Chrome.jpg') center/cover no-repeat;
  color: #000;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  gap: 40px;
  backdrop-filter: blur(1px);
}

.contact-info, .contact-form {
  flex: 1 1 400px;
  background-color: rgba(255, 255, 255, 0.6); /* optional: slightly opaque box */
  padding: 20px;
  border-radius: 15px;
}

.contact-info h2, .contact-form h3 {
  font-family: 'Gagalin', sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-info p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  margin-bottom: 10px;
}

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

.contact-form label {
  margin-top: 10px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

.contact-form input,
.contact-form textarea {
  margin-top: 5px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: 'Times New Roman', Times, serif;
  font-size: 16px;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background-color: #6E1E91; /* purple */
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #4B1470; /* darker purple */
}
/* Footer */
.site-footer {
  background-color: #f2f2f2;
  padding: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}
.site-footer p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
