/* =========================================================
   SCALE ERA GLOBAL THEME
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Le Jour Serif', serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #2F2F2F;
    background: #F9F9F7;
}

.section {
    padding: 80px 10%;
    text-align: center;
}

h2 {
    font-family: 'Le Jour Serif', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #0A6F63;
    letter-spacing: 1px;
}

/* =========================================================
   BRAND BUTTON
========================================================= */
.btn {
    padding: 12px 30px;
    background: #0A6F63;
    color: #fff;
    border: none;
    border-radius: 28px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-family: 'Le Jour Serif', serif;
    transition: 0.3s;
}

.btn:hover {
    background: #3BAA9A;
}

/* =========================================================
   HEADER & NAVIGATION
========================================================= */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 8%;
    background: linear-gradient(90deg, #006d5d, #008874);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}


/* LOGO */
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* NAV CONTAINER (DESKTOP) */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

/* NAV LISTS */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-left { order: 1; }
.logo     { order: 2; }
.nav-right{ order: 3; }

/* LINKS */
header nav ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'Le Jour Serif', serif;
    padding: 6px 10px;
}

/* HOVER UNDERLINE */
header nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

/* MENU TOGGLE (HIDDEN ON DESKTOP) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */
@media (max-width: 768px) {

    header {
        padding: 14px 6%;
        position: relative;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* LOGO → LEFT */
    .logo {
        order: 1;
    }

    .logo img {
        height: 42px;
    }

    /* HIDE NAV LINKS INITIALLY */
    .nav-left,
    .nav-right {
        display: none;
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    /* MENU TOGGLE BUTTON */
    .menu-toggle {
        display: block;
        order: 2;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    /* DROPDOWN MENU */
    nav.active {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
    }

    nav.active .nav-left,
    nav.active .nav-right {
        display: flex;
    }
}

/* =========================================================
   HERO SECTION (Full-Screen Slideshow – Cover Background)
========================================================= */
.hero {
    height: calc(100vh + 40px);
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: 'Le Jour Serif', serif;
    margin-top: -40px;
    z-index: 0;
}

/* =========================================================
   SLIDES (FULL IMAGE, COVER ENTIRE HERO)
========================================================= */
.hero-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    will-change: opacity;

    filter: brightness(102%) contrast(108%) saturate(105%);
}

.hero-slide.active {
    opacity: 1;
}

/* Remove overlay completely */
.hero::before {
    display: none;
}

/* Hero content (optional text) */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    margin-bottom: 15px;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-text .btn {
    padding: 14px 32px;
    background-color: #0A6F63;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-text .btn:hover {
    background-color: #074f46;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        height: 100vh;
    }
}

/* =========================================================
   BRAND STATEMENT STRIP
========================================================= */

.brand-statement {
    width: 100%;
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.brand-content {
    max-width: 900px;
    margin: 0 auto;
}

.brand-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0A6F63;
    font-weight: 600;
    margin-bottom: 18px;
}

.brand-statement h2 {
    font-size: 44px;
    font-weight: 600;
    color: #1f1f1f;
    line-height: 1.25;
    margin-bottom: 18px;
}

.brand-sub {
    font-size: 16px;
    color: #666;
    letter-spacing: 0.5px;
}

/* Subtle divider for elegance */
.brand-statement::after {
    content: "";
    width: 70px;
    height: 2px;
    background: #0A6F63;
    display: block;
    margin: 35px auto 0;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-statement {
        padding: 65px 20px;
    }

    .brand-statement h2 {
        font-size: 32px;
    }

    .brand-sub {
        font-size: 15px;
    }
}

/* =========================================================
   OUR STORY SECTION
========================================================= */

.about-section {
    padding: 100px 20px;
    background-color: #ffffff;
    color: #333;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

/* TEXT */
.about-text {
    flex: 1 1 520px;
}

.about-text h2 {
    font-size: 3rem;
    color: #0A6F63;
    margin-bottom: 25px;
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #555;
    max-width: 520px;
}

/* CTA BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 38px;
    border-radius: 30px;
    background: #0A6F63;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #084f47;
    transform: translateY(-2px);
}

/* IMAGE */
.about-image {
    flex: 1 1 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image img {
        height: 420px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 70px 20px;
    }

    .about-text h2 {
        font-size: 2.3rem;
    }
}

/* =======================
   SERVICES SECTION
======================= */
.services-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;

  background-image: url("https://img.freepik.com/premium-photo/spring-green-border-leaves-with-ample-copy-space-text-white-background_817921-1144.jpg");
  background-size: contain;       
  background-position: top center;  
  background-repeat: no-repeat;  
  background-attachment: fixed;   

  min-height: 600px;
  color: #333;
}

/* TOP AND BOTTOM BLENDING */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* CONTENT GRID */
.card-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  align-items: start;
}

/* LEFT SIDE TEXT */
.card-left {
  color: #1b1b1b;
}

.card-left h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.card-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(255,255,255,0.6);
}

/* RIGHT SIDE TEXT */
.card-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.card-right h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1.1;
  background: linear-gradient(90deg, #d4a017, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(255,255,255,0.5);
  margin: 0;
}

.card-right p {
  font-size: 1.05rem;
  color: #1b1b1b;
  line-height: 1.5;
  text-shadow: 1px 1px 4px rgba(255,255,255,0.4);
}

/* BULLETS LIST */
.card-right ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.card-right li {
  font-size: 1rem;
  color: #1b1b1b;
  margin-bottom: 10px;
  position: relative;
  padding-right: 20px;
}

.card-right li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: #d4a017;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Remove bullets from service lists */
.card-right ul {
  list-style: none; /* removes default bullets */
  padding: 0;       /* remove default padding */
  margin: 0;        /* remove default margin */
}

.card-right li {
  position: relative;
  padding-left: 0;  /* remove space for bullets */
  margin-bottom: 10px;
  font-size: 1rem;
  color: #1b1b1b;
}


/* =======================
   RESPONSIVE
======================= */

/* Tablets */
@media (max-width: 1024px) {
  .services-section {
    padding: 100px 15px;
    background-size: cover;        
    background-position: center;
    background-attachment: scroll;
    min-height: auto;              
  }

  .card-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    width: 100%;
  }

  .card-left,
  .card-right {
    text-align: center;
  }

  .card-left h2,
  .card-right h2 {
    font-size: 2.2rem;
  }

  .card-left p,
  .card-right p,
  .card-right li {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-section {
    padding: 80px 15px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }

  .card-left h2,
  .card-right h2 {
    font-size: 1.8rem;
  }

  .card-left p,
  .card-right p,
  .card-right li {
    font-size: 0.95rem;
  }

  .card-content {
    gap: 30px;
  }
}


/* =========================
   GALLERY SECTION
========================= */
.gallery-section {
  padding: 120px 6vw;
  background: #ffffff;
}

/* SECTION HEADER */
.section-header {
  text-align: left; /* Title at top-left */
  max-width: 1200px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  font-family: 'Le Jour Serif', serif;
  color: #0A6F63;
  margin-bottom: 10px;
  position: relative;
}

/* Decorative underline */
.section-header h2::after {
  content: '';
  width: 70px;
  height: 3px;
  background: #0A6F63;
  display: block;
  margin: 8px 0 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

/* =========================
   GALLERY GRID
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
  position: relative;
}

/* STAGGERED ITEMS */
.gallery-item:nth-child(1) { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.gallery-item:nth-child(2) { grid-column: 4 / span 3; grid-row: 1 / span 1; }
.gallery-item:nth-child(3) { grid-column: 4 / span 2; grid-row: 2 / span 1; }
.gallery-item:nth-child(4) { grid-column: 1 / span 2; grid-row: 3 / span 1; }
.gallery-item:nth-child(5) { grid-column: 3 / span 4; grid-row: 3 / span 2; }

/* IMAGE STYLING */
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* =========================
   OVERLAY ALWAYS VISIBLE
========================= */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Overlay Title */
.gallery-overlay h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Overlay Button */
.gallery-btn {
  padding: 10px 22px;
  border-radius: 25px;
  background: #0A6F63;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  width: max-content;
  transition: all 0.3s ease;
  text-align: center;
}

.gallery-btn:hover {
  background: #08806d;
  transform: translateY(-2px);
}


/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item:nth-child(1) { grid-column: 1 / span 3; grid-row: 1 / span 2; }
  .gallery-item:nth-child(2) { grid-column: 1 / span 2; grid-row: 3 / span 1; }
  .gallery-item:nth-child(3) { grid-column: 3 / span 1; grid-row: 3 / span 1; }
  .gallery-item:nth-child(4) { grid-column: 1 / span 1; grid-row: 4 / span 1; }
  .gallery-item:nth-child(5) { grid-column: 2 / span 2; grid-row: 4 / span 2; }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .gallery-overlay {
    padding: 12px 14px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}


/* Quote Section */
.quote-section {
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;

  background-color: #ffffff;

  /* Bold green vertical lines */
  background-image: repeating-linear-gradient(
    to right,
    rgba(10, 111, 99, 0.35) 0px,
    rgba(10, 111, 99, 0.35) 2px,
    transparent 2px,
    transparent 30px
  );
}

/* Wrapper */
.quote-wrap {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

/* Quote Card */
.quote-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

/* Quote Text */
.quote-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  font-style: italic;
}

/* Quote Author */
.quote-author {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A6F63;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-card {
    padding: 30px 20px;
  }

  .quote-text {
    font-size: 1.25rem;
  }
}

/* ==============================
   INSTAGRAM — EDITORIAL STACK
============================== */

.instagram-editorial {
    padding: 120px 6vw;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Text */
.insta-editorial-text h2 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #0A6F63;
    margin-bottom: 18px;
}

.insta-editorial-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 420px;
}

.insta-editorial-text a {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0A6F63;
    text-decoration: none;
    border-bottom: 1px solid rgba(10,111,99,0.4);
}

/* Image stack */
.insta-editorial-stack {
    position: relative;
    height: 520px;
}

.insta-editorial-stack img {
    position: absolute;
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

/* Offsets */
.insta-editorial-stack img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
}

.insta-editorial-stack img:nth-child(2) {
    top: 40px;
    left: 120px;
    z-index: 2;
}

.insta-editorial-stack img:nth-child(3) {
    top: 80px;
    left: 240px;
    z-index: 1;
}

.insta-editorial-stack img:nth-child(4) {
    top: 160px;
    left: 60px;
}

.insta-editorial-stack img:nth-child(5) {
    top: 200px;
    left: 180px;
}

/* Soft interaction */
.insta-editorial-stack img:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

/* Responsive */
@media (max-width: 900px) {
    .instagram-editorial {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .insta-editorial-stack {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .insta-editorial-stack {
        height: 420px; /* smaller container */
    }

    .insta-editorial-stack img {
        width: 200px;   /* smaller cards */
        height: 280px;
    }
}


/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  width: 100%;
  min-height: 100vh; /* fills full screen */
  background-image: url('../images/Lets Talk Bg 2.jpeg');
  background-position: center;
  background-size: cover; /* ensures the bg fully covers */
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional: parallax effect */
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* CONTACT CARD */
.contact-wrap {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 95%;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: 2.2rem;
  color: #0A6F63;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: 'Le Jour Serif', serif;
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.contact-item i {
  margin-right: 12px;
  font-size: 20px;
  color: #0A6F63;
  flex-shrink: 0;
}

/* SOCIAL ICONS IN LEFT PANEL */
.contact-socials {
  margin-top: 30px;
  display: flex;
  flex-direction: column; /* stacked vertically */
  gap: 12px;
}

.contact-socials .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0A6F63;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}

.contact-socials .social-icon i {
  font-size: 20px;
}

.contact-socials .social-icon:hover {
  color: #08806d;
  transform: translateX(4px);
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.email-instructions {
  max-width: 600px;
  text-align: left;
  color: #444;
  margin-bottom: 28px;
}

.email-instructions p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.email-instructions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.email-instructions li {
  font-size: 0.95rem;
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.email-instructions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0A6F63;
  font-weight: bold;
}

/* BUTTON */
.email-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background-color: #0A6F63;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.email-btn:hover {
  background-color: #0e8b7c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .contact-wrap {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 40px 30px;
  }

  .email-instructions {
    text-align: left;
  }

  .email-btn {
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .contact-left h2 {
    font-size: 1.8rem;
  }

  .contact-left p,
  .email-instructions p {
    font-size: 0.95rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .email-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}


/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #0A6F63;
    color: #fff;
    text-align: center;
    padding: 40px 10%;
    margin-top: -1px;
}

footer .socials a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.4rem;
    transition: 0.3s;
}

footer .socials a:hover {
    color: #3BAA9A;
}



