/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f6f8;
  color: #333;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* Container (Center Content) */
.container {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 20px 40px;
  background-color:#ffffff;
  text-align: center;
}

.homepage-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin: 5rem 5rem;
}

h2.styling-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #222;
  line-height: 1.3;
  margin: 3rem 0;
}


h1 {
  font-size: 2rem;
  color: black;
  margin-bottom: 3rem;
  margin-top: 3rem;
   font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

h2 {

  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin-top: 5.5rem;
  margin-bottom: 15px;
  line-height: 1.4;


}
.zigzag h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  padding-left: 10px;
  line-height: 1.4;
}
.zigzag h3:hover {
  border-left-color: #b4c3c6;
  transition: border-color 0.3s ease;
}


    p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #444;
      margin-bottom: 20px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px 0;
      border-radius: 8px;
    }
   .photo{
        height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
     margin-top: 0.1rem;
} 

.header-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 0;
}

/* List Cleanup */
.content-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.content-list li {
  margin-bottom: 10px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  color: black;
   border-bottom: 1px solid #e1e4e8;
  padding: 8px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);

  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.4px;
}
  


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Brand styling */
.brand-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Georgia', serif;
  gap: 4px;
}

.brand-label img {
  height: 50px;
  width: 50px;
  margin-bottom: -8px;
}

.brand-label span {
  font-size: 2rem;
  font-weight: bold;
  color: #540b0e;
  text-align: center;
  font-family:  'Playfair Display', serif;
}

.brand-label .highlight {
  color: #c90b0b;
  font-style: italic;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin-left: auto;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links li a:hover {
  text-decoration: none;
  color: gray;
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Dark Mode Toggle */
.dark-toggle {
  font-size: 1.2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: 10px;
}
.about-me {
  text-align: center;
  padding: 2rem;
}

.about-me h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.about-me p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}


.caption {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: #333;
}

.about-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-buttons a {
  background-color: #222;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.about-buttons a:hover {
  background-color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in-out;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #540b0e;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: rgb(85, 83, 83);
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #755a5a;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background-color: rgb(85, 83, 83);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color:#755a5a ;
}

.calm-tips {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.calm-tip {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid #cccccc;
  border-radius: 8px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.calm-tip:nth-child(2) {
  animation-delay: 0.2s;
}
.calm-tip:nth-child(3) {
  animation-delay: 0.4s;
}
.calm-tip:nth-child(4) {
  animation-delay: 0.6s;
}

.icon {
  font-size: 2rem;
  flex-shrink: 0;
  color: #777;
}

.calm-tip h3 {
  margin: 0 0 8px;
  font-size: 1.2em;
  color: #222;
}

.calm-tip p {
  margin: 0;
  color: #555;
  font-size: 1em;
  line-height: 1.5;
}

.site-footer {
  background-color: #000;
  color: #f5f5f5;
  padding: 3rem 1rem;
  margin-top: 4rem;
  font-size: 0.95rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 24px;
}

.footer-brand .highlight {
  color: #ffffff;
    font-family:  'Playfair Display', serif;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 1.5rem;
  font-style: italic;
  color: #bbb;
}

.copyright {
  margin-top: 0.5rem;
  color: #888;
  font-size: 0.85rem;
}


/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
    color: black;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
  .nav-links li a {
   color: black;
  }
  
  .container {
    padding: 60px 15px;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-mode .container {
  background-color: #1e1e1e;
}

body.dark-mode .navbar {
  background-color: #111;
}

body.dark-mode .nav-links li a {
  color: #eee;
}



body.dark-mode .nav-links li a:hover {
  color: #ffcc20;
}

/* Scroll Animation */
.section-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Fade animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}