/* ============================================================= */
/* Fonts                                                         */
/* ============================================================= */

/* Main Logo Text */
@font-face {
    font-family: 'Bodoni';
    src: url('../fonts/bodoni.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ============================================================= */
/* Base Styles                                                   */
/* ============================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f5f5f5;
}


/* ============================================================= */
/* Mobile Styles (default)                                       */
/* ============================================================= */


/* ===================================== */
/* Hamburger Menu and Mobile Navigation                          */
/* ===================================== */

/* ----- Hamburger Icon (Default: Mobile) ----- */
#hamburger-menu {
  position: absolute;
  top: 26px;
  right: 21px;
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: flex; /* Default display for mobile */
  flex-direction: column;
  justify-content: space-between;
}

#hamburger-menu span {
  display: block;
  height: 3px;
  background: #f5f5f5;
  border-radius: 2px;
}

/* ----- Mobile Menu (Default: Mobile) ----- */
#mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  background-color: #02075d;
}

#mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 20px;
}

#mobile-menu li {
  margin: 10px 0;
}

#mobile-menu a {
  color: #fff;
  text-decoration: none;
}

/* ----- Header ----- */
#main-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Aligns logo to the left and menu to the right */
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, #02075d, #040caf);
  padding: 0 20px; /* Adds padding to give some space on the left and right */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* ----- Sitewide Announcement ----- */
#sitewide-announcement {
  width: 100%;
  height: 40px;
  background-color: #ffcc00;
}

#sitewide-announcement-text {
  color: #000;
  font-size: 1em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  text-align: center;
}


/* ============================================================= */
/* Hot Topics Section                                            */
/* ============================================================= */

#hot-topics {
  width: 100%;
  height: 40px;
  background-color: #030a8a;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  border-top: 1px solid #ffcc00;
}

#hot-topics-text {
  font-family: 'Roboto-Regular', sans-serif;
  color: #ececec;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  text-align: center;
}

.hot-topics-list {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.hot-topics-list li {
  color: #ececec;
  position: relative;
  padding-left: 15px;
}

.hot-topics-list li::before {
  content: "◆";
  color: #ffcc00;
  position: absolute;
  left: 0;
  font-size: 0.8em;
}


/* ============================================================= */
/* Video Section                                                 */
/* ============================================================= */

#video-title {
  width: 100%;
  padding: 10px 15px;
  background: linear-gradient(180deg, #f9f9f9, #e6e6e6); /* Soft gradient for subtle depth */
  border-bottom: 1px solid #ccc; /* Light border for structure */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Gentle shadow for lift */
}

#video-title-text {
  font-family: 'Roboto-Regular', sans-serif;
  color: #02075d;
  font-size: 1.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.5px; /* Slightly increased spacing for readability */
  opacity: 0.9; /* Slight opacity for elegance */
}



.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ============================================================= */
/* Related Pages Section                                         */
/* ============================================================= */

#related-pages {
  width: 100%;
  background-color: #e6e6ff;
  padding: 20px;
  font-family: 'Roboto-Regular', sans-serif;
}

#related-pages-text h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #02075d;
}

#related-pages ul {
  list-style-type: square;
  padding: 0 10px;
  margin: 0;
}

#related-pages ul li {
  margin-bottom: 10px;
}

#related-pages ul li a {
  color: #0073e6;
}

#related-pages ul li::marker {
  color: #b3b3b3;
}


/* ============================================================= */
/* Second Opinion Section                                        */
/* ============================================================= */

#second-opinion {
  width: 100%;
  background-color: #f5f5f5; /* Light solid background for simplicity */
  padding: 30px 0;
  text-align: center;
}

/* ----- Button Container ----- */
#second-opinion-text {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'Roboto-Regular', sans-serif;
}

/* ----- Request a Second Opinion Button ----- */
.second-opinion-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background-color: #ffcc00;
  color: #262626;
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Stronger shadow for a 3D effect */
}

/* ----- Circular Phone Call Button ----- */
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #28a745;
  color: #f5f5f5;
  font-size: 1.2em;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Consistent shadow for 3D effect */
}


/* ============================================================= */
/* Header Logo                                                   */
/* ============================================================= */

#header-logo-text {
  font-family: 'Bodoni', sans-serif;
  color: #f5f5f5;
  font-size: 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  text-align: center;
}


/* ============================================================= */
/* Page Content                                                  */
/* ============================================================= */

.page-heading {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Roboto-Regular', sans-serif;
  background-color: #02075d;
  color: #f5f5f5;
  font-size: 1em;
  text-align: center;
  border-bottom: 1px solid #b3b3b3;
}

.content {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  color: #333;
  font-size: 1.2em;
  background-color: #f2f2f2;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.content p {
  margin-bottom: 1.5em; /* Adjusted space for better readability */
}

/* ============================================================= */
/* References Section                                            */
/* ============================================================= */

#references-section {
    padding: 15px;
    margin-top: 20px;
    background-color: #f0f0f5; /* Light background color for contrast */
    border-radius: 5px;
}

#references-section h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

#references-section ol {
    padding-left: 20px; /* Adds padding to align the list */
    margin: 0;
}

#references-section li {
    margin: 5px 0; /* Adds vertical spacing between list items */
    line-height: 1.5; /* Increases line height for readability */
}

#references-section a {
    color: #0056b3;
    text-decoration: none;
}

#references-section a:hover {
    text-decoration: underline;
}




/* ============================================================= */
/* Footer                                                        */
/* ============================================================= */

#footer {
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, #040caf, #02075d);
  box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer-text {
  color: #f5f5f5;
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 1em;
  text-align: center;
  padding: 10px 20px; /* Add padding for space inside the footer */
}

#footer-text a {
  color: #9999ff;
}


/* ============================================================= */
/* Tablet Styles                                                 */
/* ============================================================= */

@media (min-width: 768px) {
  /* Add tablet-specific styles here */
}


/* ============================================================= */
/* Desktop Styles                                                */
/* ============================================================= */

@media (min-width: 1024px) {

  #main-header {
    width: 100%;
    height: 60px;
    background-color: #02075d;
  }

  #header-logo-text {
    font-family: 'Bodoni', sans-serif;
    color: #f5f5f5;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    text-align: center;
  }

}
