/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  background: #f5f5f5 url("../images/bg.png") repeat top left;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-family: "Droid Sans", sans-serif;
  font-weight: normal;
  font-size: 22px;
  margin-bottom: 15px;
}

h1 {
  font-size: 28px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}

a {
  color: #d32f2f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
#wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#inner-wrapper {
  min-height: 100vh;
}

/* Header */
#header {
  background: #fff;
  border-bottom: 3px solid #d32f2f;
}

#header-top {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
}

#logo {
  display: flex;
  align-items: center;
}

.site-info {
  display: flex;
  flex-direction: column;
}

#logo img {
  margin: 0 10px;
}

#site-title {
  font-family: "Droid Sans", sans-serif;
  font-weight: bold;
  font-size: 26px;
  color: #333;
  margin: 0;
}

#site-title a {
  color: #333;
  text-decoration: none;
}

.site-info p {
  margin: 0;
}

.site-info p:last-child {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}

/* Navigation */
#navigation {
  background: #d32f2f;
}

.sf-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-menu li {
  position: relative;
}

.sf-menu li a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  transition: background 0.3s;
}

.sf-menu li a:hover,
.sf-menu li.current-menu-item a,
.sf-menu li.current_page_item a {
  background: rgba(0, 0, 0, 0.1);
}

/* Intro Section */
#intro {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.menu-shadow {
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
}

/* Content Area */
#content-wrapper {
  display: flex;
  padding: 30px;
  gap: 30px;
}

#content {
  flex: 1;
}

#sidebar {
  width: 250px;
  flex-shrink: 0;
}

/* Post Styles */
.one-post {
  margin-bottom: 30px;
}

.post-title {
  color: #d32f2f;
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d32f2f;
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 15px;
}

.entry-content ul {
  margin: 15px 0;
  padding-left: 30px;
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}

.entry-content img.aligncenter {
  display: block;
  margin: 15px auto;
}

.entry-content img.alignright {
  float: right;
  margin: 0 0 15px 15px;
}

.entry-content img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}

.entry-content h2 {
  color: #d32f2f;
  margin-top: 30px;
  margin-bottom: 15px;
}

.entry-content strong {
  font-weight: bold;
  color: #333;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.phone-large {
  font-size: 24px;
}

/* Table Styles (for contacts page) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table td {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

/* Sidebar Widgets */
.widget {
  margin-bottom: 25px;
}

.widget img {
  max-width: 100%;
  height: auto;
}

.widget .menu {
  list-style: none;
  padding: 0;
}

.widget .menu li {
  border-bottom: 1px solid #eee;
}

.widget .menu li a {
  display: block;
  padding: 8px 0;
  color: #333;
}

.widget .menu li a:hover {
  color: #d32f2f;
}

#work-hours-title {
    text-align: center;
    margin-top: 15px;
}

#work-hours {
  width: 65%;
  margin: 0 auto;
  border: 3px solid;
  border-style: double;
  border-radius: 30px;
  padding: 5px;
}

#work-hours-inner {
  border-top: 3px solid;
  border-bottom: 3px solid;
  border-style: double;
}

/* Iframe Styles */
iframe {
  max-width: 100%;
  border: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  #content-wrapper {
    flex-direction: column;
    padding: 15px;
  }

  #sidebar {
    width: 100%;
  }

  .sf-menu {
    flex-direction: column;
  }

  .sf-menu li {
    width: 100%;
  }

  .sf-menu li a {
    padding: 12px 15px;
  }

  #header-top {
    flex-direction: column;
    text-align: center;
  }

  #logo {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .site-info p:last-child {
    margin-left: 0;
    margin-top: 5px;
  }

  table {
    font-size: 12px;
  }

  table td {
    padding: 5px;
  }
}
