
/* --------------------------------------------------
   GLOBAL SCOPE FOR CORKUMS SITE ONLY
-------------------------------------------------- */
.corkums_towing-body {
    font-family: Arial, sans-serif;
    background-color: #1d1c1c;
    color: #ecefef;
    margin: 0;
    padding: 0;
}
.content-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2px;
    background-color: #0a0a0a; /* slightly lighter than pure black */
    border-radius: 4px;
    box-shadow: 0 0 3px rgba(0,0,0,0.6);
}


/* --------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */
.corkums_towing-site h1 {
    font-size: 2.4rem;
    color: #D32F2F;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.corkums_towing-site h2 {
    font-size: 1.8rem;
    color: #cac8c8;
    border-left: 5px solid #D32F2F;
    padding-left: 12px;
    margin-top: 25px;
}

.corkums_towing-site h3 {
    font-size: 1.4rem;
    color: #04aaf8;
    font-style: italic;
}

.intro-text {
    text-align: center;
    margin-top: 20px;
}

/* --------------------------------------------------
   HEADER + LOGO
-------------------------------------------------- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
}

.logo-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40%;
    width: 30%;
}

.logo-tagline {
    font-size: 1rem;
    color: #444;
}
/***** divider *****/
.divider {
    height: 2px;
    background: #0099FF;
    width: 100%;
}

/* --------------------------------------------------
   CALL NOW BUTTON
-------------------------------------------------- */
.dial-btn {
    display: block;
    background: #101010;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 1.0rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    margin-left: auto;
    max-width: 300px;
}

.dial-btn:hover {
    background: #b71c1c;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
    text-align: center;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 2px solid #070707;
    font-size: 0.9rem;
}

footer a {
    margin: 0 10px;
    color: #cac8c8;
    text-decoration: none;
}

footer a:hover {
    color: #D32F2F;
}

/* HEADER BAR (fixed width, centered) */
.header-bar {
    background-color: #050505;
    padding: 12px 0;
    max-width: 601px;
    margin: 0 auto; /* centers the blue bar */
}

/* Inner header container */
.header-inner {
    padding: 0 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-title {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffffff; /* <-- THIS makes it visible */
    letter-spacing: 0.5px;
}

/***********************************/
/*      services section           */
/***********************************/
.services-title {
    text-align: center;
    color: #04aaf8;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.service-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
}

.service-card:hover {
    background: #222;
    transform: translateY(-2px);
}

.service-card img {
    width: 60px;
    height: auto;
    margin-bottom: 8px;
}

.service-card h3 {
    margin: 6px 0 4px 0;
    font-size: 1rem;
    color: #04aaf8;
}

.service-card p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/***********************************/
/* SLIDE SHOW */
/***********************************/
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 601px;
  width: 100%;
  margin: 0 auto;
}
.slideshow-container {
    position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
.mySlides img {
    width: 100%;
    height: auto;
    display: block;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.corkums_towing-body .content-box a {
    color: #0099FF !important;
}

.corkums_towing-body .content-box a:hover {
    color: #add8ff !important;
}
