/* Global Styles */
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.css-blur {
  filter: blur(3px); /* Try 3px to 5px for light privacy */
 /* border-radius: 15px; */
  transition: filter 0.3s ease-in-out;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 4rem 2rem;
}

.about-img {
  flex: 1;
  text-align: center;
}

.profile-pic {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 2;
}

.profile-img-container {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Keeps head from being cropped */
  display: block;
}

@media (max-width: 768px) {
  .profile-img-container {
    width: 170px;
    height: 170px;
  }
}



































a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* /* Navbar */ */
/* .navbar { */
  /* display: flex; */
  /* justify-content: space-between; */
  /* align-items: center; */
  /* padding: 1.2rem 2rem; */
  /* position: fixed; */
  /* width: 100%; */
  /* background-color: white; */
  /* box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05); */
  /* z-index: 1000; */
/* } */

/* .nav-links { */
  /* display: flex; */
  /* gap: 1.5rem; */
/* } */


.nav-links a:hover {
  border-bottom: 2px solid #000;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links li {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 1rem;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Color Palette */
:root {
  --green-dark: #677b54;
  --green-sage: #9eae8c;
  --cream: #f6f3e9;
  --beige: #cbbfa3;
}

body {
  background-color: var(--cream);
  font-family: 'Playfair Display', serif;
  color: #333;
}

/* Navbar default */
.navbar {
  position: fixed;
  width: 97%;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* On scroll */
.navbar.scrolled {
  background-color: var(--green-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Navbar links */
.navbar .nav-links a {
  color: var(--green-dark); /* default state over light background */
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--cream); /* light color over green background */
}

/* Navbar link styles */
.navbar .nav-links a {
  font-size: 18px;  /* Increase size */
  font-weight: 600;
  padding: 1rem;
}

/* Logo styling */
.logo {
  font-size: 22px;
  font-weight: 600;
  color:white; !important
}

/* On scroll */
.navbar.scrolled .nav-links a {
  font-size: 18px;
}


/* Hero Section */
.hero {
  height: 100vh;
  background: url('hero-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.5rem;
  color: white;
  margin-top: 0.5rem;
}


.hero-section {
  background: url('Banner.png') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* subtle overlay */
  padding: 2rem;
  border-radius: 8px;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-overlay p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}





/* About Section */
.about {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-img {
  flex: 1;
  text-align: center;
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  width: 100%;
}

.contact-form button {
  padding: 1rem;
  background-color: black;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #333;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive Typography */
h1, h2 {
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
