/* =========================
   GOOGLE FONT
========================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* =========================
   ROOT COLORS
========================= */

:root {
  --primary: #5c4033;
  --secondary: #8b6b4a;
  --dark: #3e2723;
  --gold: #c9a227;
  --light: #f5efe6;
  --white: #faf9f6;
  --text: #2e2e2e;
}

/* =========================
   GENERAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: var(--light);

  color: var(--text);

  line-height: 1.7;
}

a {
  text-decoration: none;
}

section {
  padding: 90px 0;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: rgba(62, 39, 35, 0.95);
  backdrop-filter: blur(8px);
  transition: 0.4s;
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: white !important;
  font-size: 1.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.resort-logo {
  height: 55px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.navbar-brand-text {
  margin-left: 10px;
}

/* Navigation links */

.navbar .nav-link {
  color: white !important;
  margin-left: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
}

/* Mobile hamburger */

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 7px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================
MOBILE NAVBAR
========================= */

@media (max-width: 991.98px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 15px;

    background: rgba(62, 39, 35, 0.98);

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .navbar-nav {
    text-align: center;
    align-items: stretch !important;
    margin-top: 0 !important;
  }

  .navbar .nav-item {
    width: 100%;
  }

  .navbar .nav-link {
    margin-left: 0;
    padding: 12px 10px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }

  /* Book Now */

  .navbar .btn-gold {
    display: block;
    width: 100%;

    margin-top: 12px;

    text-align: center;
  }
}

/* =========================
SMALL PHONES
========================= */

@media (max-width: 576px) {
  .navbar {
    padding: 8px 0;
  }

  .resort-logo {
    height: 45px;
    max-width: 150px;
  }

  .navbar-brand {
    font-size: 1.15rem;
  }

  .navbar-brand-text {
    margin-left: 6px;
  }

  .navbar-toggler {
    padding: 6px 9px;
  }
}

/* =========================
   BUTTONS
========================= */

.btn-gold {
  background: var(--gold);

  color: white;

  border: none;

  border-radius: 30px;

  padding: 12px 28px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-gold:hover {
  background: #b18d22;

  color: white;

  transform: translateY(-2px);
}

.btn-outline-light {
  border-radius: 30px;

  padding: 12px 28px;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  background: linear-gradient(rgba(62, 39, 35, 0.82), rgba(92, 64, 51, 0.82));

  color: white;
}

.hero-tag {
  display: inline-block;

  background: rgba(255, 255, 255, 0.15);

  padding: 10px 20px;

  border-radius: 50px;

  margin-bottom: 25px;

  font-weight: 500;
}

.hero h1 {
  font-size: 4rem;

  font-weight: 800;

  margin-bottom: 25px;
}

.hero p {
  font-size: 1.2rem;

  margin-bottom: 35px;

  max-width: 650px;
}

.hero-buttons a {
  margin-right: 15px;
}

.hero-card {
  background: white;

  color: var(--text);

  border-radius: 20px;

  padding: 35px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
  color: var(--primary);

  margin-bottom: 20px;
}

.hero-card p {
  margin-bottom: 12px;
}

/* =========================
   SECTION TITLES
========================= */

.section-title {
  color: var(--primary);

  font-size: 2.5rem;

  font-weight: 700;
}

.section-subtitle {
  color: #666;
}

/* =========================
   CARDS
========================= */

.card {
  border: none;

  border-radius: 18px;

  transition: 0.3s;

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-8px);
}

.card-body {
  padding: 30px;
}

.card-title {
  color: var(--primary);

  font-weight: 700;
}

/* =========================
   FOOTER
========================= */

footer {
  background: var(--dark);

  color: white;

  padding: 70px 0 25px;
}

footer h4,
footer h5 {
  color: var(--gold);
}

footer a {
  color: #ddd;
}

footer a:hover {
  color: var(--gold);
}

footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

/* =========================
   FORMS
========================= */

.form-control {
  border-radius: 10px;

  padding: 14px;
}

.form-control:focus {
  border-color: var(--primary);

  box-shadow: 0 0 10px rgba(92, 64, 51, 0.25);
}

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

@media (max-width: 992px) {
  .hero {
    text-align: center;

    padding-top: 120px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-card {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    display: block;
    margin-bottom: 15px;
  }
}

/* =========================
   ABOUT
========================= */

.about {
  background: white;
}

.about-image {
  height: 420px;

  border-radius: 20px;

  background: linear-gradient(135deg, #5c4033, #8b6b4a);

  display: flex;

  justify-content: center;

  align-items: center;

  color: white;

  font-size: 120px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* =========================
   SERVICES
========================= */

.services {
  background: #f5efe6;
}

.service-icon {
  font-size: 70px;

  color: #c9a227;
}

.services .card {
  padding: 20px;

  transition: 0.4s;
}

.services .card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* =========================
   STATISTICS
========================= */

.statistics {
  background: #5c4033;

  color: white;

  padding: 80px 0;
}

.statistics h2 {
  color: #c9a227;

  font-size: 3rem;

  font-weight: 700;
}

.statistics p {
  font-size: 1.1rem;

  margin-top: 10px;
}

/* =========================
WHY CHOOSE US
========================= */

.why-us {
  background: white;
}

.feature-box {
  background: white;

  padding: 35px;

  border-radius: 15px;

  text-align: center;

  transition: 0.4s;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  font-size: 60px;

  color: #c9a227;

  margin-bottom: 20px;
}

/* =========================
GALLERY
========================= */

.gallery {
  background: #f5efe6;
}

.gallery-item {
  height: 280px;

  background: white;

  border-radius: 15px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

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

.gallery-item i {
  font-size: 90px;

  color: #5c4033;
}

/* =========================
TESTIMONIALS
========================= */

.testimonials {
  background: #5c4033;

  padding: 90px 0;
}

.testimonial-card {
  background: white;

  padding: 30px;

  border-radius: 15px;

  height: 100%;
}

/* =========================
CTA
========================= */

.cta {
  background: linear-gradient(135deg, #5c4033, #8b6b4a);

  color: white;

  text-align: center;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

/* ==========================
BOOKING PAGE
========================== */

.booking-page {
  background: #f5efe6;

  min-height: 100vh;
}

.booking-card {
  background: white;

  padding: 50px;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.progress {
  border-radius: 20px;
}

.progress-bar {
  background: #5c4033;

  transition: 0.4s;
}

.service-details {
  background: #faf8f3;

  padding: 25px;

  border-radius: 12px;

  margin-top: 20px;

  border-left: 5px solid #c9a227;
}

.review-box {
  background: white;

  border-radius: 15px;

  padding: 30px;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* ===========================
   ABOUT SECTION
=========================== */

#about {
  padding: 80px 0;
  background-color: #f8f9fa;
}

#about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f3d2b;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

#about img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

#about img:hover {
  transform: scale(1.03);
}

.btn-gold {
  background-color: #c8a95c;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-gold:hover {
  background-color: #a8893c;
  color: white;
}

/*=============================
ADMIN DASHBOARD
==============================*/

.dashboard-header {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-header h2 {
  font-weight: 700;
  color: #3d2b25;
}

.dashboard-header p {
  color: #777;
  margin-bottom: 0;
}

.stat-card {
  border: none;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 35px;
  color: #c9a34d;
}

.stat-card h3 {
  margin-top: 15px;
  font-size: 32px;
  font-weight: bold;
}

.stat-card p {
  color: #666;
  margin-bottom: 0;
}

.quick-card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.quick-card:hover {
  transform: translateY(-8px);
}

.quick-card .card-body {
  padding: 35px;
  text-align: center;
}

.quick-card i {
  font-size: 50px;
  color: #c9a34d;
  margin-bottom: 20px;
}

.quick-card h4 {
  font-weight: 600;
}

.quick-card .btn {
  margin-top: 20px;
  border-radius: 30px;
}

.table-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =========================
   RESPONSIVE BOOKING FORM
========================= */

.booking-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.form-step {
  animation: fadeIn 0.4s ease;
}

.form-control,
.form-select,
textarea {
  min-height: 50px;
  font-size: 16px;
}

.btn {
  min-height: 48px;
  font-weight: 600;
}

.review-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background: #fafafa;
}

/* Progress bar */

.progress {
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  background: #c8a45d;
}

/* Mobile */

@media (max-width: 768px) {
  .booking-container {
    padding: 20px 15px;
  }

  h2 {
    font-size: 28px;
    text-align: center;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  .row {
    margin: 0;
  }

  .col-md-6 {
    width: 100%;
    padding: 0;
  }

  .form-control,
  .form-select {
    font-size: 16px;
  }

  .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .d-flex .btn {
    width: 100%;
  }

  .review-box {
    font-size: 15px;
  }
}

/* Small phones */

@media (max-width: 480px) {
  .booking-container {
    padding: 15px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .btn {
    width: 100%;
  }

  .progress {
    height: 8px !important;
  }
}

/* ================= RESORT GALLERY ================= */

.gallery-category-section {
  margin-bottom: 60px;
}

/* Category heading */

.gallery-category-heading {
  margin-bottom: 20px;
}

.gallery-category-heading h3 {
  color: #40323a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-category-heading p {
  color: #777;
  margin-bottom: 0;
}

/* ================= HORIZONTAL SCROLL ================= */

.horizontal-gallery {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;

  padding: 10px 5px 20px;

  cursor: grab;

  scrollbar-width: thin;
}

.horizontal-gallery:active {
  cursor: grabbing;
}

/* Hide default scrollbar on WebKit */

.horizontal-gallery::-webkit-scrollbar {
  height: 8px;
}

.horizontal-gallery::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

.horizontal-gallery::-webkit-scrollbar-thumb {
  background: #40323a;
  border-radius: 10px;
}

/* ================= GALLERY CARD ================= */

.gallery-card {
  flex: 0 0 320px;

  height: 240px;

  border-radius: 18px;

  overflow: hidden;

  background: #ffffff;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

/* Images */

.gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {
  .gallery-card {
    flex: 0 0 280px;
    height: 220px;
  }

  .gallery-category-heading h3 {
    font-size: 24px;
  }
}

/* WhatsApp Floating Button */

.whatsapp-button {
  position: fixed;
  right: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  background-color: #180e07;
  color: #ffffff;

  border-radius: 50px;

  text-decoration: none;

  font-family: inherit;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  z-index: 9999;

  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);

  color: #ffffff;

  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
  font-size: 22px;
}

.whatsapp-text {
  white-space: nowrap;
}

/* Mobile */

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;

    right: 16px;
    bottom: 16px;

    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;

    right: 14px;
    bottom: 14px;

    font-size: 23px;
  }
}

@media (max-width: 360px) {
  .whatsapp-float {
    width: 44px;
    height: 44px;

    right: 12px;
    bottom: 12px;

    font-size: 21px;
  }
}

/* =========================
   LOCATION SECTION
========================= */

.location-section {
  padding: 80px 5%;
  background: #f7f5f0;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 50px;
  align-items: center;
}

.location-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #8b6f47;
}

.location-content h2 {
  margin: 10px 0 20px;
  color: #2f5d50;
  font-size: 38px;
}

.location-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 450px;
}

.directions-button {
  display: inline-block;

  padding: 12px 22px;

  background: #2f5d50;
  color: #ffffff;

  border-radius: 6px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.directions-button:hover {
  background: #24483e;
  transform: translateY(-2px);
}

/* =========================
   LOCATION - MOBILE
========================= */

@media (max-width: 600px) {
  .location-section {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
  }

  .location-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .location-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .location-subtitle {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  .location-content h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .location-content p {
    max-width: 400px;
    margin: 0 auto 25px;
    text-align: center;
  }

  .directions-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}

/* =========================
   FLIP CARD
========================= */

.flip-card {
  width: 300px;
  height: 400px;
  perspective: 1000px;
  flex: 0 0 300px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;

  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flip when clicked */
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* =========================
   FRONT & BACK
========================= */

.flip-card-front,
.flip-card-back {
  position: absolute;

  width: 100%;
  height: 100%;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  border-radius: 15px;
  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* =========================
   FRONT
========================= */

.flip-card-front {
  background: #ffffff;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-overlay {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;

  padding: 30px 20px 25px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

  color: white;
}

.flip-card-overlay span {
  font-size: 30px;
}

.flip-card-overlay h3 {
  margin: 5px 0;
  font-size: 24px;
}

.flip-card-overlay p {
  margin: 5px 0 10px;
  font-size: 14px;
}

.flip-card-overlay small {
  font-size: 12px;
  opacity: 0.9;
}

/* =========================
   BACK
========================= */

.flip-card-back {
  background: #ffffff;

  transform: rotateY(180deg);

  padding: 20px;

  text-align: center;
}

.flip-card-back h3 {
  color: #2f5d50;
  margin-bottom: 15px;
}

/* =========================
   MINI GALLERY
========================= */

.chalet-mini-gallery {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;

  height: 280px;
}

.chalet-mini-gallery img {
  width: 100%;
  height: 130px;

  object-fit: cover;

  border-radius: 8px;
}

.flip-card-back p {
  color: #777;
  font-size: 12px;
  margin-top: 12px;
}

/* =========================
   CHALET PHOTO SCROLL
========================= */

.chalet-photo-scroll {
  display: flex;
  gap: 12px;

  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;

  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;
}

/* Each photo */
.chalet-photo {
  flex: 0 0 220px;

  height: 220px;

  scroll-snap-align: center;

  border-radius: 10px;

  overflow: hidden;
}

.chalet-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* Scrollbar */
.chalet-photo-scroll::-webkit-scrollbar {
  height: 5px;
}

.chalet-photo-scroll::-webkit-scrollbar-thumb {
  background: #2f5d50;
  border-radius: 10px;
}

/* Hint */
.flip-hint {
  display: block;

  margin-top: 10px;

  font-size: 12px;

  color: #777;

  text-align: center;
}

@media (max-width: 600px) {
  .chalet-photo-scroll {
    gap: 10px;
  }

  .chalet-photo {
    flex: 0 0 200px;
    height: 210px;
  }
}

/* =========================
   EXPERIENCES
========================= */

.experiences-section {
  padding: 80px 5%;
  background: #f7f5f0;
}

.experiences-heading {
  max-width: 700px;
  margin: 0 auto 45px;
}

.experiences-heading h2 {
  color: #2f5d50;
  font-size: 38px;
  margin: 10px 0 15px;
}

.experiences-heading p {
  color: #777;
}

/* =========================
   EXPERIENCE CARD
========================= */

.experience-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;

  height: 100%;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* =========================
   MAIN IMAGE
========================= */

.experience-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* =========================
   CONTENT
========================= */

.experience-content {
  padding: 25px;
}

.experience-icon {
  font-size: 28px;
}

.experience-content h3 {
  color: #2f5d50;
  font-size: 24px;

  margin: 8px 0 10px;
}

.experience-content p {
  color: #777;

  line-height: 1.7;

  margin-bottom: 18px;
}

/* =========================
   PHOTO SCROLL
========================= */

.experience-gallery {
  display: flex;

  gap: 10px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 5px 0 10px;

  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;
}

.experience-gallery img {
  flex: 0 0 140px;

  width: 140px;
  height: 100px;

  object-fit: cover;

  border-radius: 8px;
}

/* Scrollbar */

.experience-gallery::-webkit-scrollbar {
  height: 5px;
}

.experience-gallery::-webkit-scrollbar-thumb {
  background: #2f5d50;

  border-radius: 10px;
}

/* Hint */

.experience-scroll {
  display: block;

  text-align: center;

  color: #888;

  margin-top: 5px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .experiences-section {
    padding: 60px 15px;
  }

  .experiences-heading h2 {
    font-size: 30px;
  }

  .experience-image {
    height: 220px;
  }

  .experience-content {
    padding: 20px;
  }

  .experience-gallery img {
    flex: 0 0 125px;

    width: 125px;
    height: 90px;
  }
}

.experience-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 15px 0;
}

.experience-details strong {
  color: #6f6f6f;
  font-size: 14px;
}

/* =========================
   SOCIAL MEDIA
========================= */

.social-media {
  margin-top: 20px;
}

.social-media h6 {
  margin-bottom: 12px;
  color: #ffffff;
}

.social-media a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  margin-right: 8px;

  border-radius: 50%;

  background-color: #245e4d;

  color: #ffffff;

  font-size: 18px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.social-media a:hover {
  transform: translateY(-3px);

  background-color: #c9a85c;

  color: #ffffff;
}
