/* ===== Root Variables ===== */
:root {
  --bg-dark: #0d0d0d;
  --text-light: #f4f4f4;
  --accent: #c2185b; /* deep sensual pink */
 --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Merriweather', serif; /* only changed heading font */
  --container-width: 1200px;
  --padding-x: 1rem;
}

/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  position: relative;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  width: 100%;
}

/* Navbar */
.navbar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1100;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
  flex-wrap: wrap;
}

/* Logo */
.logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

/* Contact info */
.contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-info a:hover {
  color: var(--accent);
}

/* Nav links (desktop only) */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-family: var(--font-main);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1200; /* above overlay */
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay menu styles */
.nav-overlay {
  position: fixed;
  top: 0;
  right: -300px; /* hidden offscreen */
  width: 300px;
  height: 100vh;
  background-color: var(--bg-dark);
  box-shadow: -4px 0 12px rgba(0,0,0,0.7);
  transition: right 0.3s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  font-family: var(--font-main);
  overflow-y: auto;
}

.nav-overlay.open {
  right: 0;
}

/* Overlay menu links */
.nav-overlay-content a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.nav-overlay-content a:hover {
  color: var(--accent);
}

/* Dark backdrop behind overlay when menu open */
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  z-index: 1090;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
.nav-overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: 2rem;
  font-family: var(--font-main);
  color: var(--text-light);
}

/* Add some spacing and subtle hover effects for links */
.nav-overlay-content a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.nav-overlay-content a:last-child {
  border-bottom: none;
}

.nav-overlay-content a:hover,
.nav-overlay-content a:focus {
  color: var(--accent);
  outline: none;
}

/* Optional: make font size a bit larger for mobile menu */
.nav-overlay-content a {
  font-size: 1.25rem;
  font-weight: 600;
}
/* ==== Responsive ==== */

/* Mobile & Tablet <= 768px */
@media (max-width: 768px) {
  /* Hide desktop nav links */
  .nav-links {
    display: none;
  }

  /* Hide contact info for space */
  .contact-info {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }
}

/* Desktop and larger > 768px */
@media (min-width: 769px) {
  /* Show desktop nav links */
  .nav-links {
    display: flex;
  }

  /* Hide overlay menu */
  .nav-overlay {
    display: none;
  }

  /* Show contact info */
  .contact-info {
    display: flex;
  }
}

/* Hero Section */
.hero {
  position: relative;
  color: var(--text-light);
  padding: 6rem 0;
  font-family: var(--font-heading);
  overflow: hidden;
  height: 68vh;
  margin: 4rem 6rem;
  border-radius: 16px;
}


.hero-content {
  display: none;
  gap: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.hero-text p {
  font-family: var(--font-main);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(244, 244, 244, 0.85);
  font-weight: 400;
  line-height: 1.5;
}

.btn-cta {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(194, 24, 91, 0.7);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover,
.btn-cta:focus {
  background-color: #a01448;
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.9);
  outline: none;
  cursor: pointer;
}

/* Hero video Container */
.hero-video-container {
  flex: 0 0 auto;
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}


/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

}


@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* About Section */
.about {
  background-color: #121212;
  padding: 6rem 0; /* Updated padding */
}

/* Upper part */
.about-upper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3rem;
  /* Removed min-height */
}

.about-text {
  max-width: 600px;
}
.about-headline{
  width: 52vw;
}
.about-headline span {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: var(--font-heading);
  opacity: 0.2;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-headline span.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lower part - single image on right 35% */
.about-lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Align content at bottom */
  position: relative;
  gap: 2rem;
}

.about-text-lower {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* bottom align paragraph and button */
  color: var(--text-light);
  font-family: var(--font-main);
}

.about-text-lower p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: rgba(244, 244, 244, 0.85);
  max-width: 500px;
}

.about-photo-half {
  width: 35%;
  display: flex;
  justify-content: flex-end;
}
.about-photo-half img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
object-position: top;
}

.btn-cta-about {
  display: none;
  max-width: fit-content;
  width: auto;
  background-color: var(--accent);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(194, 24, 91, 0.7);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-cta-about:hover,
.btn-cta-about:focus {
  background-color: #a01448;
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.9);
  outline: none;
}


.article-section {
  padding: 5rem 0;
}

.article-wrapper {
  background-color: #121212; /* Background on content only */
  border-radius: 16px;
  padding: 3rem;
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.8;
}

.article-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: #ffffff;
}

.article-wrapper p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: rgba(244, 244, 244, 0.9);
}

.article-wrapper ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.article-wrapper ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: rgba(244, 244, 244, 0.9);
  list-style-type: circle;
}

.article-wrapper a {
  color: var(--accent);
  text-decoration: none;
}

.article-wrapper strong {
  font-weight: 700;
  color: #ffffff;
}

.gallery-section {
  padding: 5rem 0;
}

.gallery-heading {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

.portrait-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.portrait-gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
  cursor: pointer;
}

.portrait-gallery-grid img:hover {
  transform: scale(1.05);
  opacity: 1;
  /* object-fit: fill; */
}

 #portrait-gallery img.lazy {
    filter: blur(10px);
  }

.testimonial-section {
  padding: 4rem 0;
  color: var(--text-light);
  font-family: var(--font-main);
  text-align: center;
  background-color: #121212;
}

.testimonial-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonial-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  /* min-height: 150px; */
}

.testimonial {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}

.testimonial.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.testimonial p {
  margin-bottom: 1rem;
  font-style: italic;
  color: rgba(244, 244, 244, 0.9);
}

.testimonial h4 {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.faq-section {
  /* background-color: #121212; */
  padding: 5rem 0;
  color: var(--text-light);
  font-family: var(--font-main);
}

.faq-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  padding: 1rem 0;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 1rem;
  color: rgba(244, 244, 244, 0.9);
  padding-right: 1rem;
}


.faq-item.open .faq-answer {
  max-height: 300px;
  /* padding-bottom: 1rem; */
  
}

.site-footer {
  background-color: #121212;
  color: #f4f4f4;
  padding: 4rem 0;
  font-family: var(--font-main);
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-col h4,
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.footer-col p {
  /* font-size: 1rem; */
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.footer-col p a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col p a:hover,
.footer-col p a:focus {
  color: #a01448; /* darker accent for hover */
  outline: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-social .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.85);
  transition: fill 0.3s ease, transform 0.3s ease;
}



.social-icon:hover svg {
  fill: var(--accent); /* Customize this in :root or replace with color code */
  transform: scale(1.2);
}
/* .social-icon.instagram svg {
  transform: scale(1.5);
} */

.footer-bottom strong{
    color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.5rem;
}

.back-to-top {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background-color: var(--accent);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.4rem 1rem 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top:hover {
  background-color: #a01448;
}
.locations-section {
  padding: 5rem 0;
  background-color: #121212; /* matching your about and other dark backgrounds */
  color: var(--text-light);
  font-family: var(--font-main);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.location-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-location {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light);
  background-color: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(194, 24, 91, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  user-select: none;
  text-transform: capitalize;
}

.btn-location:hover,
.btn-location:focus {
  background-color: #a01448;
  box-shadow: 0 6px 16px rgba(194, 24, 91, 0.9);
  transform: scale(1.05);
  outline: none;
  cursor: pointer;
}
/* contact us page */
.contact-main {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-main);
}

.contact-centered h1 {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-centered p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(244, 244, 244, 0.85);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.btn-contact-cta {
  background-color: var(--accent);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(194, 24, 91, 0.5);
}

.btn-contact-cta:hover {
  background-color: #a01448;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.7);
}

.btn-contact-cta i {
  font-size: 1.2rem;
}
/* services page */
.services-hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
}

.services-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.1rem;
  color: rgba(244, 244, 244, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem 0 5rem;
}

.service-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-card img {
  height: 64px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(74%) saturate(749%) hue-rotate(330deg);
  transition: filter 0.3s ease;
}

.service-card:hover img {
  filter: none;
}

.service-card h3 {
  color: var(--accent);
  /* margin-bottom: 0.75rem; */
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(244, 244, 244, 0.85);
  line-height: 1.5;
}
/* Works in Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 8px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track {
  background: #121212;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #a01448;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a01448;
}
.nav-links .active{
  color: var(--accent);
}
/* about us page */
/* ===== About Main Section (with Portrait Image) ===== */

.about-main {
  padding: 5rem 0;
  font-family: var(--font-main);
  color: var(--text-light);
}

/* Hero (Top) Section */
.about-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.about-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(244, 244, 244, 0.85);
  line-height: 1.6;
}

/* Story Section */
.about-story-section {
  background-color: #121212;
  padding: 3rem 2rem;
  border-radius: 16px;
}

.about-story-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* flex-wrap: wrap; */
}

.about-story-text {
  /* flex: 1 1 55%; */
  max-width: 700px;
  display: flex
;
    flex-direction: column;
    gap: 1.6rem;
}

.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-story-text p {
  font-size: 1rem;
  color: rgba(244, 244, 244, 0.9);
  line-height: 1.7;
}
.about-story-list{
      display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-story-list li{
  list-style-type: disc;
   margin-left: 1rem;
}
/* Portrait Image Container */
.about-story-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-story-image img {
  width: 300px;
  height: 400px;
  max-height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp green (can override per icon) */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s;
}

.floating-contact a.call {
  background-color: #007bff; /* Blue for call */
}

.floating-contact a:hover {
  transform: scale(1.1);
}

.floating-contact svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Responsive */
@media (max-width: 768px) {
  .about-story-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-story-text,
  .about-story-image {
    width: 100%;
  }

  .about-story-image img {
    height: auto;
    width: 70%;
    max-width: 280px;
  }

  .services-grid{
    padding: 2rem;
  }

  .about-main{
    padding: 4rem 2rem;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .btn-location {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
  .portrait-gallery-grid img {
      height: 400px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-lower {
    flex-direction: column;
    align-items: center;
  }

  .about-text-lower {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .about-photo-half {
    width: 100%;
    justify-content: center;
  }

  .about-photo-half img {
    width: 90%;
  }
  .article-wrapper{
    padding: 1rem;
  }
  .about-headline{
    width: auto;
  }
  .hero{
        margin: 1rem;
  }
  .top-bar{
    padding: 1rem;
  }
  .floating-contact{
    width: 95%;
    flex-direction: row;
    justify-content: space-between;
    left: 0;
    right: 0;
    bottom: 60px;
    margin: auto;
  }

}
