/* ============================================================
   Gümüşdamla Soğutma – Main Template Stylesheet
   Works with: Bootstrap 3.3.7, CollagePlus, LightGallery,
               SmartMenus, Headhesive.js
   Color theme applied separately via color/blue.css (#73b2cf)
   ============================================================ */

/* ------------------------------------------------------------------
   1. BASE & TYPOGRAPHY
   ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Karla', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #585858;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  color: #2f2f2f;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .5px;
}
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p {
  margin-bottom: 20px;
}
a {
  text-decoration: none;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}
img {
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0 0 20px;
}
blockquote {
  padding: 12px 20px;
  margin: 0 0 20px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #585858;
}
ul.circled {
  list-style: none;
  padding-left: 0;
}
ul.circled li {
  padding: 3px 0 3px 20px;
  position: relative;
}
ul.circled li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1.5;
}

/* ------------------------------------------------------------------
   2. NAVBAR
   ------------------------------------------------------------------ */
.navbar.default {
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  min-height: 70px;
  z-index: 1030;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.navbar.default .container-fluid {
  position: relative;
}
.navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  float: left;
  padding: 15px;
  height: auto;
  line-height: 1;
}
.navbar-brand a {
  display: block;
}
.navbar-brand img {
  max-height: 40px;
  width: auto;
}
.navbar.default .navbar-nav {
  margin: 0;
}
.navbar.default .navbar-nav > li > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #2f2f2f;
  padding: 25px 18px;
  line-height: 20px;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}
.navbar.default .navbar-nav > li > a .caret {
  display: none;
}

/* Dropdown Menus (multi-level) */
.navbar .dropdown-menu {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  padding: 10px 0;
  min-width: 220px;
  margin-top: 0;
}
.navbar .dropdown-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #585858;
  padding: 8px 20px;
  display: block;
  white-space: nowrap;
  -webkit-transition: color .15s ease;
  transition: color .15s ease;
}
.navbar .dropdown-menu li a:hover {
  background: transparent;
}
/* Sub-dropdown (3rd level) */
.navbar .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -10px;
}
/* Show dropdowns on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav > li:hover > .dropdown-menu {
    display: block;
  }
  .navbar .dropdown-menu li:hover > .dropdown-menu {
    display: block;
  }
}

/* Sticky Header (Headhesive) */
.banner--clone {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  z-index: 1040;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.banner--stick {
  top: 0 !important;
}
.banner--unstick {
  top: -100px !important;
}

/* Hamburger Icon */
.nav-bars-wrapper {
  float: right;
  display: none;
  padding: 18px 15px;
}
.nav-bars-inner {
  display: flex;
  align-items: center;
}
.nav-bars {
  width: 22px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.nav-bars span,
.nav-bars span::before,
.nav-bars span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #2f2f2f;
  position: absolute;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.nav-bars span {
  top: 8px;
}
.nav-bars span::before {
  content: '';
  top: -7px;
}
.nav-bars span::after {
  content: '';
  top: 7px;
}
.nav-bars.is-active span {
  background: transparent;
}
.nav-bars.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-bars.is-active span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------------
   3. LAYOUT WRAPPERS
   ------------------------------------------------------------------ */
.content-wrapper {
  overflow: hidden;
}
.light-wrapper {
  background: #fff;
  padding: 0;
}
.dark-wrapper {
  background: #f5f5f5;
  padding: 0;
}
.inverse-wrapper {
  background: #2f2f2f;
  color: #999;
}
.inverse-wrapper h1,
.inverse-wrapper h2,
.inverse-wrapper h3,
.inverse-wrapper h4,
.inverse-wrapper h5,
.inverse-wrapper h6 {
  color: #fff;
}
.inverse-wrapper a:not(.btn) {
  color: #999;
}
.inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.inner2 {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ------------------------------------------------------------------
   4. PAGE TITLE
   ------------------------------------------------------------------ */
.page-title {
  text-align: center;
}
.page-title h1 {
  margin-bottom: 0;
  font-size: 28px;
  letter-spacing: 1px;
}
.page-title.dark-wrapper {
  background: #f5f5f5;
}

/* ------------------------------------------------------------------
   5. COLLAGE GALLERY (CollagePlus)
   ------------------------------------------------------------------ */
.collage-wrapper {
  overflow: hidden;
}
.collage {
  overflow: hidden;
}
.collage .collage-image-wrapper {
  float: left;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
.collage .collage-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------------------------
   6. OVERLAY / HOVER EFFECTS
   ------------------------------------------------------------------ */
.overlay {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
}
.overlay a {
  display: block;
  position: relative;
}
.overlay img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.overlay a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.overlay .over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay .over span {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
}
.overlay .over span::before,
.overlay .over span::after {
  content: '';
  position: absolute;
  background: #fff;
}
.overlay .over span::before {
  width: 2px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -1px;
}
.overlay .over span::after {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -10px;
}
.overlay a:hover .over {
  opacity: 1;
}

/* ------------------------------------------------------------------
   7. SPACING UTILITIES
   ------------------------------------------------------------------ */
.divide10 { height: 10px; clear: both; }
.divide20 { height: 20px; clear: both; }
.divide30 { height: 30px; clear: both; }
.divide40 { height: 40px; clear: both; }
.divide50 { height: 50px; clear: both; }
.tp0 { padding-top: 0 !important; }
.bp0 { padding-bottom: 0 !important; }
.rp10 { padding-right: 10px !important; }
.rp20 { padding-right: 20px !important; }
.lp10 { padding-left: 10px !important; }
.bm20 { margin-bottom: 20px !important; }

/* ------------------------------------------------------------------
   8. FORMS
   ------------------------------------------------------------------ */
.form-container {
  margin: 0;
}
.vanilla-form .form-field {
  margin-bottom: 15px;
}
.vanilla-form input[type="text"],
.vanilla-form input[type="email"],
.vanilla-form input[type="tel"],
.vanilla-form input[type="url"],
.vanilla-form input[type="password"],
.vanilla-form select,
.vanilla-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #585858;
  outline: none;
  -webkit-transition: border-color .2s ease;
  transition: border-color .2s ease;
  -webkit-appearance: none;
}
.vanilla-form input:focus,
.vanilla-form select:focus,
.vanilla-form textarea:focus {
  border-color: #aaa;
}
.vanilla-form textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 15px;
}
.vanilla-form label {
  display: block;
  font-weight: 400;
  margin-bottom: 0;
}
.custom-select {
  position: relative;
  display: block;
}
.custom-select select {
  width: 100%;
  cursor: pointer;
}
.custom-select span {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
}
.custom-select span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -3px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #999;
}
.notification-box {
  margin-top: 10px;
  padding: 0;
  font-size: 14px;
}

/* ------------------------------------------------------------------
   9. BUTTONS
   ------------------------------------------------------------------ */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 22px;
  border: none;
  border-radius: 0;
  color: #fff;
  background: #2f2f2f;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  display: inline-block;
}
.btn:hover,
.btn:focus {
  color: #fff;
}
.btn-square {
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  text-align: center;
  border-radius: 0;
}

/* ------------------------------------------------------------------
   10. BLOG / POSTS / CERTIFICATES
   ------------------------------------------------------------------ */
.blog {
  margin: 0;
}
.blog-content {
  margin: 0;
}
.blog-posts {
  margin: 0;
}
.grid-view .post {
  margin-bottom: 40px;
}
.post {
  margin-bottom: 30px;
}
.post figure {
  margin-bottom: 20px;
  overflow: hidden;
}
.post figure img {
  width: 100%;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.post figure a:hover img {
  opacity: .85;
}
.post-content {
  padding: 0;
}
.post-title {
  margin-bottom: 8px;
}
.post-title a {
  color: #2f2f2f;
}
.meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}
.meta .date {
  display: inline;
}

/* ------------------------------------------------------------------
   11. SIDEBAR
   ------------------------------------------------------------------ */
.sidebar {
  padding-left: 30px;
}
.sidebox {
  margin-bottom: 30px;
}
.widget {
  margin-bottom: 30px;
}
.widget-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 15px;
}

/* ------------------------------------------------------------------
   12. FOOTER
   ------------------------------------------------------------------ */
footer.inverse-wrapper {
  padding: 0;
}
.sub-footer {
  border-top: 1px solid rgba(255,255,255,.06);
}
.sub-footer .inner {
  padding-top: 25px;
  padding-bottom: 25px;
}
.sub-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 40px;
  color: #999;
}
.social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.social li {
  display: inline-block;
  margin-left: 12px;
}
.social li a {
  font-size: 18px;
  color: #999;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

/* ------------------------------------------------------------------
   13. GOOGLE MAP
   ------------------------------------------------------------------ */
.google-map {
  width: 100%;
  background: #e5e3df;
}
.h450 {
  height: 450px;
}

/* ------------------------------------------------------------------
   14. MISCELLANEOUS
   ------------------------------------------------------------------ */
.parallax {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.parallax.mobile {
  background-attachment: scroll;
}
#scrollUp {
  bottom: 30px;
  right: 30px;
  z-index: 1001;
}
.pageloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.offset {
  padding-top: 70px;
}

/* ------------------------------------------------------------------
   15. RESPONSIVE
   ------------------------------------------------------------------ */

/* Tablet & below */
@media (max-width: 991px) {
  .navbar-header {
    width: 100%;
  }
  .nav-bars-wrapper {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid #eee;
    max-height: 400px;
    overflow-y: auto;
  }
  .navbar.default .navbar-nav > li > a {
    padding: 12px 15px;
  }
  .navbar .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    background: transparent;
  }
  .navbar .dropdown-menu .dropdown-menu {
    position: static !important;
    margin-top: 0;
    padding-left: 15px;
  }
  .sidebar {
    padding-left: 15px;
    margin-top: 30px;
  }
}

/* Small phone */
@media (max-width: 767px) {
  h1 { font-size: 24px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .inner2 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .sub-footer p {
    float: none !important;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .sub-footer .social {
    float: none !important;
    text-align: center;
  }
  .sub-footer .social li {
    margin: 0 6px;
  }
  .collage .collage-image-wrapper {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
  }
  .collage .collage-image-wrapper img {
    width: 100% !important;
    height: auto !important;
  }
  .h450 {
    height: 300px;
  }
  .rp10,
  .lp10 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}
