/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  font-size: 1.5rem;
  color: #333;
}

h2 {
 font-size: 3rem;
color: #5083c2;

}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAV */
/* HEADER */
.site-header {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 90px; /* adjust if needed */
  width: auto;
}

/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #005c88;
}

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #222;
  transition: all 0.3s ease;
}

/* MOBILE */
@media (max-width: 900px) {

  .nav-links {
    position: absolute;
    top: 90px;
    right: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

}


/* HERO */
.hero {
  height: 70vh; 
  background: url('../images/advanced-wound-care-consultants.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 20px;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.grid-2 {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width:768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

img {
  width: 100%;
  height: auto;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}

.light-bg {
  background: #f9f9f9;
}

.why-grid {
  display: grid;
  gap: 50px;
  align-items: center;
  grid-template-columns: 1fr;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 6px; /* subtle professional touch */
}

.why-content h2 {
  margin-bottom: 20px;
}

.why-content ul {
  list-style: disc inside;
    line-height: 1.6;
  font-size: 1.5rem;
}

/* Desktop layout */
@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}



.surgery-grid {
  display: grid;
  gap: 50px;
  align-items: center;
  grid-template-columns: 1fr;
}

.surgery-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.surgery-content h2 {
  margin-bottom: 20px;
}

.surgery-content p {
  line-height: 1.6;
  font-size: 1.5rem;
}

/* Desktop */
@media (min-width: 900px) {
  .surgery-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.site-footer {
  background-color: #5083c2;
  color: #ffffff;
  padding: 60px 0;
  font-family: 'Cormorant Garamond', serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  align-items: center;
}

.footer-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 15px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
  padding: 0;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffd700; /* subtle hover color */
}

.footer-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: #f0f0f0;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
    text-align: left;
    align-items: center;
  }

  .footer-logo {
    justify-self: start;
  }

  .footer-nav {
    justify-self: center;
  }

  .footer-copy {
    justify-self: end;
  }
}


.about-dr-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.about-dr-content h2 {
  margin-bottom: 20px;
}

.about-dr-content p {
    line-height: 1.6;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Desktop 2-column layout */
@media (min-width: 900px) {
  .container.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }
}

