/* Global settings */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

/* Headline */
h1, .headline {
    font-weight: 800;           /* Extra Bold */
    letter-spacing: -0.02em;    /* -20 tracking */
    text-transform: none;
}

/* Sub-headline */
h2, .sub-headline {
    font-weight: 600;           /* Semi-bold or Medium */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Body Copy */
p, .body-text {
    font-weight: 300;           /* Light */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Specification Label */
.spec-label {
    font-weight: 900;           /* Black */
    font-style: italic;
    letter-spacing: 0.04em;     /* +40 tracking */
    text-transform: none;
}


/* Headline */
h1, .headline {
    font-weight: 800;           /* Extra Bold */
    letter-spacing: -0.02em;    /* -20 tracking */
    text-transform: none;
}

/* Sub-headline */
h2, .sub-headline {
    font-weight: 600;           /* Semi-bold or Medium */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Body Copy */
p, .body-text {
    font-weight: 300;           /* Light */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Specification Label */
.spec-label {
    font-weight: 900;           /* Black */
    font-style: italic;
    letter-spacing: 0.04em;     /* +40 tracking */
    text-transform: none;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures the header stays above other content */
    /* Remove the solid background color to allow the transparent nav to show the image */
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px; /* Adjust the padding to better fit your logo and button */
    background-color: rgba(0, 0, 0, 0.7); /* This provides the dark transparent background */
    height: 40px; /* Adjusted for a thinner header */
    /* Rest of your styles... */
}

.logo-link {
    display: flex;
    align-items: center;
    /* No padding needed if you're using margin on the logo itself */
}

.logo {
    height: 30px; /* Adjust for a visible logo size */
    width: auto; /* Keeps the aspect ratio of the logo */
    /* No negative margin, adjust the actual header height instead */
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center; /* This will vertically center your nav items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    padding: 0 5px;
    margin: 0; /* Ensure there's no additional space from margins */
    line-height: 1;
    /* You can add line-height or padding here if you need to adjust the vertical alignment */
}

/* Navigation links styling */
.nav-links a {
    text-decoration: none; /* Removes underline by default */
    color: #ffffff; /* White text color */
    font-size: 1rem; /* Adjust the font size as needed */
    padding: 10px 15px; /* Padding for better click area */
    display: block; /* Makes the anchor tag fill the list item */
    transition: color 0.3s ease; /* Smooth transition for color changes */
}

/* Hover effect for navigation links */
.nav-links a:hover, .nav-links a:focus {
    color: #1a9e8c; /* Changes text color to aquamarine on hover and focus */
}

header .buy-now, a.buy-now-button {
    display: inline-flex; /* Use flexbox for centering */
    align-items: center; /* Vertically center the text */
    justify-content: center; /* Horizontally center the text */
    background-color: #18B19C !important; /* Green background */
    color: white !important; /* White text */
    text-decoration: none !important; /* Remove underline */
    padding: 5px 15px !important; /* Smaller padding for a smaller button */
    border: none !important; /* Remove border */
    border-radius: 25px !important; /* Rounded corners */
    font-size: 1rem !important; /* Slightly smaller font size */
    font-weight: bold !important; /* Bold text */
    cursor: pointer !important; /* Pointer cursor */
    transition: background-color 0.3s ease, transform 0.3s ease !important; /* Smooth transitions */
    text-align: center !important; /* Ensure centered text */
    line-height: normal; /* Reset line-height for consistency */
}



/* Hover Effect for the Buy Now Button */
header .buy-now:hover, a.buy-now-button:hover {
    background-color: #149483 !important; /* Darker green on hover */
    color: white !important; /* Ensure text remains white */
}

/* Responsive Styling for Smaller Devices */
@media (max-width: 768px) {
    header .buy-now, a.buy-now-button {
        font-size: 1.2rem !important; /* Slightly larger font size for mobile */
        padding: 15px 30px !important; /* Larger padding for tap area */
    }
}

/* Target the Buy Now button in the navbar */
header nav .nav-links .buy-now-button {
    display: inline-block;
    background-color: #18B19C; /* Green background */
    color: white; /* White text */
    text-decoration: none;
    padding: 5px 10px; /* Adjust padding for click area */
    border: 0px solid #18B19C; /* Green border */
    border-radius: 25px; /* Rounded corners */
    font-size: 0.8rem; /* Standard font size */
    font-weight: bold; /* Bold text for emphasis */
    cursor: pointer; /* Pointer cursor for interactivity */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-left: 10px; /* Spacing from other nav items */
    white-space: nowrap; /* Prevents text wrapping */
}

/* Hover effect for the Buy Now button */
header nav .nav-links .buy-now-button:hover {
    background-color: #18B19C; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header nav .nav-links .buy-now-button {
        font-size: 1.2rem; /* Increase font size for smaller screens */
        padding: 15px 40px; /* Larger padding for better tap area */
        width: 100%; /* Take up more width on mobile */
        text-align: center; /* Center-align text */
        margin: 10px auto; /* Center the button in the navbar */
    }
}

/* Hamburger Button */
.hamburger {
    display: none; /* Hidden by default for larger screens */
    cursor: pointer;
    font-size: 30px;
    color: white;
}

/* Navigation Menu */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Horizontal layout by default */
}

.nav-links li {
    margin: 0 -10px; /* Closer spacing for large screens */
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #18B19C; /* Highlight color */
}

/* Mobile Menu Styles */
@media (max-width: 768px) {

    /* Hamburger Button */
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 30px;
        color: white;
        transition: transform 0.3s ease;
        z-index: 2000; /* Ensure it stays above the navbar */
    }

    /* Add a rotation effect or change icon for "open" state */
    .hamburger.open {
        transform: rotate(90deg); /* Rotate for open state (optional) */
    }

    /* Ensure the hamburger is always visible */
    .nav-links {
        z-index: 1500; /* Menu is below the hamburger */
        position: fixed; /* Ensure it doesn't hide the hamburger */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        margin: 15px 0;
        opacity: 0; /* Initially hidden */
        transform: translateY(20px);
        font-size: 4rem; /* Larger text size for mobile titles */
        font-weight: bold; /* Make titles bold */
        animation: fadeInUp 0.5s forwards;
    }

    .nav-links.active li {
        animation: fadeInUp 0.5s forwards; /* Fade-in animation */
    }

    .nav-links.exiting li {
        animation: fadeOutDown 0.5s forwards; /* Reverse fade-out animation */
    }

    .nav-links li a {
        text-decoration: none;
        color: white;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .nav-links li a.clicked {
        transform: scale(1.2); /* Slightly enlarge on click */
        color: #1abc9c; /* Highlight color */
    }

    @keyframes fadeInSmooth {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeOutSmooth {
        0% {
            opacity: 1;
            transform: translateY(0);
        }
        100% {
            opacity: 0;
            transform: translateY(20px);
        }
    }
    
    /* Ensure animations retain their end states */
    .nav-links li {
        animation-fill-mode: forwards; /* Retain the final animation state */
        will-change: opacity, transform; /* Optimize performance */
    }
}

/* Media Query for Larger Screens */
@media (min-width: 769px) {
    .nav-links li {
        margin: 0 5px; /* Closer spacing between links */
    }

    .nav-links li a {
        font-size: 1rem; /* Keep default size on larger screens */
    }
}

/* ================================
   Reel Free • Blog Core Styles
   Scope: MAIN SECTION ONLY
   Now: Full-width on large screens
   ================================ */

/* ---------- Theme Tokens ---------- */
:root {
  --rf-teal: #18B19C;
  --rf-teal-600: #129886;
  --rf-teal-200: #bfe9e3;
  --rf-ink: #0f172a;        /* slate-900-ish */
  --rf-ink-700: #1f2937;    /* gray-800-ish */
  --rf-ink-500: #6b7280;    /* gray-500-ish */
  --rf-bg: #ffffff;
  --rf-bg-2: #f7faf9;
  --rf-glass: 12px;
  --rf-radius: 16px;
  --rf-radius-lg: 24px;
  --rf-shadow: 0 10px 30px rgba(0,0,0,.08);
  --rf-shadow-lg: 0 18px 55px rgba(0,0,0,.12);
  --rf-max: 780px;  /* default reading width on mobile/tablet */
  --rf-wide: 960px;
  --rf-space-1: 8px;
  --rf-space-2: 12px;
  --rf-space-3: 16px;
  --rf-space-4: 24px;
  --rf-space-5: 32px;
  --rf-space-6: 48px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --rf-ink: #e5e7eb;
    --rf-ink-700: #cbd5e1;
    --rf-ink-500: #94a3b8;
    --rf-bg: #0b1015;
    --rf-bg-2: #0f141b;
    --rf-shadow: 0 10px 30px rgba(0,0,0,.45);
    --rf-shadow-lg: 0 18px 55px rgba(0,0,0,.5);
  }
}

/* ---------- Page Container (Article) ---------- */
.blog-post-content {
  box-sizing: border-box;
  max-width: var(--rf-max);
  margin: 0 auto;
  padding: clamp(18px, 2.5vw, 28px);
  color: var(--rf-ink);
}

.rf-article-header,
.rf-hero-wrap {
  max-width: var(--rf-wide);
  margin: 0 auto;
  padding: clamp(18px, 2.5vw, 28px);
}

/* Optional hero image (if you add one) */
.rf-hero {
  width: 100%;
  height: auto;
  border-radius: var(--rf-radius-lg);
  box-shadow: var(--rf-shadow-lg);
  background: radial-gradient(1200px 400px at 50% -20%, rgba(24,177,156,.18), transparent 50%);
  animation: rf-float-in .7s ease-out both;
  will-change: transform, opacity;
}

/* ---------- Breadcrumbs / Meta ---------- */
.rf-breadcrumbs {
  font-size: .92rem;
  color: var(--rf-ink-500);
  margin: 4px 0 var(--rf-space-2);
}
.rf-breadcrumbs a {
  color: var(--rf-teal);
  text-decoration: none;
}
.rf-breadcrumbs a:hover { text-decoration: underline; }

.rf-article-meta {
  color: var(--rf-ink-500);
  font-size: .95rem;
  margin-top: var(--rf-space-2);
}

/* ---------- Typography ---------- */
.blog-post-title,
.blog-post-content h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: var(--rf-space-3) 0 var(--rf-space-2);
  color: var(--rf-ink);
  position: relative;
  isolation: isolate;
}
.blog-post-title::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(24,177,156,.25), transparent 40%, transparent 60%, rgba(24,177,156,.25));
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}
.blog-post-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  margin: var(--rf-space-5) 0 var(--rf-space-2);
  line-height: 1.2;
  color: var(--rf-ink);
  scroll-margin-top: 90px;
}
.blog-post-content h3 {
  font-size: clamp(1.12rem, 2vw, 1.25rem);
  margin: var(--rf-space-4) 0 var(--rf-space-2);
  color: var(--rf-ink-700);
}
.blog-post-body,
.blog-post-content p {
  font-size: clamp(1rem, 1.25vw, 1.06rem);
  line-height: 1.72;
  margin: 0 0 var(--rf-space-3);
  color: var(--rf-ink);
}
.blog-post-content strong { color: var(--rf-ink); font-weight: 700; }
.blog-post-content em { color: var(--rf-ink-700); }

/* Lists */
.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 var(--rf-space-3) var(--rf-space-4);
  padding-left: var(--rf-space-4);
}
.blog-post-content li { margin: 6px 0; }

/* Links inside content */
.blog-post-content a {
  color: var(--rf-teal);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.blog-post-content a:hover { color: var(--rf-teal-600); }

/* Blockquotes / Pull Quotes */
blockquote {
  margin: var(--rf-space-4) 0;
  padding: var(--rf-space-3) var(--rf-space-4);
  border-left: 4px solid var(--rf-teal);
  background: color-mix(in srgb, var(--rf-teal) 6%, var(--rf-bg));
  border-radius: 0 var(--rf-radius) var(--rf-radius) 0;
  box-shadow: var(--rf-shadow);
}

/* Code / Pre / Tables */
pre, code, kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
pre {
  overflow: auto;
  background: var(--rf-bg-2);
  padding: var(--rf-space-3);
  border-radius: var(--rf-radius);
  box-shadow: var(--rf-shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--rf-space-4) 0;
  font-size: .98rem;
}
th, td {
  border: 1px solid color-mix(in srgb, var(--rf-ink) 10%, transparent);
  padding: 10px 12px;
}
th {
  background: color-mix(in srgb, var(--rf-teal) 12%, var(--rf-bg));
  text-align: left;
}

/* ---------- Liquid Glass Utilities ---------- */
.rf-glass {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.22));
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--rf-radius-lg);
  box-shadow: var(--rf-shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(var(--rf-glass)) saturate(110%);
  -webkit-backdrop-filter: blur(var(--rf-glass)) saturate(110%);
}
/* shimmer */
.rf-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 10% -10%, rgba(24,177,156,.18), transparent 60%),
    radial-gradient(80% 50% at 110% 0%, rgba(24,177,156,.12), transparent 60%),
    linear-gradient(120deg, transparent 0 40%, rgba(255,255,255,.18) 50%, transparent 60% 100%);
  transform: translateX(-20%);
  animation: rf-shimmer 5.2s ease-in-out infinite;
  pointer-events: none;
}
.rf-glass-pad { padding: clamp(16px, 2vw, 24px); }

/* ---------- Callouts ---------- */
.rf-callout { margin: var(--rf-space-5) 0; }
.rf-callout .rf-callout-title { font-weight: 700; margin-bottom: 6px; color: var(--rf-teal-600); }
.rf-callout.tip { border-left: 4px solid var(--rf-teal); }
.rf-callout.warn { border-left: 4px solid #fbbf24; }
.rf-callout.note { border-left: 4px solid #60a5fa; }

/* ---------- Media / Figures ---------- */
figure { margin: var(--rf-space-5) 0; }
figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rf-radius-lg);
  box-shadow: var(--rf-shadow-lg);
  transform: translateZ(0);
  transition: transform .4s ease;
}
figure img:hover { transform: translateY(-2px); }
figcaption { text-align: center; color: var(--rf-ink-500); font-size: .95rem; margin-top: 10px; }

/* Simple image grid */
.rf-img-grid {
  display: grid;
  gap: var(--rf-space-3);
  grid-template-columns: 1fr;
  margin: var(--rf-space-5) 0;
}
@media (min-width: 720px) { .rf-img-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- In-View Animations ---------- */
.rf-reveal { opacity: 0; transform: translateY(12px) scale(.995); animation: rf-reveal-up .7s ease-out forwards; }
.rf-reveal.delay-1 { animation-delay: .08s; }
.rf-reveal.delay-2 { animation-delay: .16s; }
.rf-reveal.delay-3 { animation-delay: .24s; }

/* ---------- Article Navigation / Related ---------- */
.rf-post-nav,
.rf-related {
  max-width: var(--rf-max);
  margin: var(--rf-space-6) auto;
  padding: 0 clamp(18px, 2.5vw, 28px);
}
.rf-post-nav a {
  display: inline-block;
  margin-right: var(--rf-space-3);
  color: var(--rf-teal);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--rf-teal) 55%, transparent);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .15s ease, background-color .15s ease;
}
.rf-post-nav a:hover { background: color-mix(in srgb, var(--rf-teal) 12%, var(--rf-bg)); transform: translateY(-1px); }

/* ---------- Buttons inside content ---------- */
.rf-btn {
  display: inline-block;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--rf-teal), var(--rf-teal-600));
  box-shadow: 0 8px 20px rgba(24,177,156,.25);
  text-decoration: none;
  border: 0;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.rf-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(24,177,156,.3); }
.rf-btn:active { transform: translateY(0); filter: brightness(.95); }

/* ---------- Close Button (if kept) ---------- */
.blog-post-close {
  position: sticky;
  top: 12px;
  margin-left: auto;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--rf-ink) 12%, transparent);
  background: var(--rf-bg);
  color: var(--rf-ink);
  box-shadow: var(--rf-shadow);
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease;
  float: right;
}
.blog-post-close:hover { transform: rotate(90deg) scale(1.03); background: var(--rf-bg-2); }

/* ---------- Decorative Top Card ---------- */
.rf-article-card { margin: var(--rf-space-4) 0 var(--rf-space-5); padding: clamp(18px, 2.2vw, 26px); }

/* ---------- Accessibility & Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- Keyframes ---------- */
@keyframes rf-shimmer { 0% {transform: translateX(-25%);} 50% {transform: translateX(5%);} 100% {transform: translateX(-25%);} }
@keyframes rf-float-in { from {opacity:0; transform: translateY(8px) scale(.995);} to {opacity:1; transform: translateY(0) scale(1);} }
@keyframes rf-reveal-up { from {opacity:0; transform: translateY(14px) scale(.995);} to {opacity:1; transform: translateY(0) scale(1);} }

/* ---------- Divider / Highlight ---------- */
.rf-divider { height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--rf-ink) 14%, transparent), transparent); margin: var(--rf-space-5) 0; }
.rf-highlight { background: linear-gradient(180deg, rgba(24,177,156,.18), rgba(24,177,156,.0)); padding: 0 2px; border-radius: 4px; }

/* ---------- Optional TOC ---------- */
.rf-toc { margin: var(--rf-space-5) 0; }
.rf-toc a { text-decoration: none; color: var(--rf-ink-700); }
.rf-toc a:hover { color: var(--rf-teal-600); }

/* ---------- Inline content images ---------- */
.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--rf-radius);
  box-shadow: var(--rf-shadow);
}

/* ---------- Spacing tweaks ---------- */
@media (min-width: 1024px) {
  .blog-post-content { padding-top: 32px; }
}

/* =======================================================
   FULL-WIDTH MODE ON LARGE SCREENS (Article + Footer)
   ======================================================= */
@media (min-width: 1200px) {
  /* Make the article areas span full viewport width */
  .blog-post-content,
  .rf-article-header,
  .rf-hero-wrap,
  .rf-related,
  .rf-post-nav {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    /* keep breathable side padding; lower this to go truly edge-to-edge */
    padding-left: clamp(24px, 8vw, 120px);
    padding-right: clamp(24px, 8vw, 120px);
  }

  /* Optional: make hero media bleed more boldly on desktops */
  .rf-hero { border-radius: 0; }

  /* Footer full-width overrides (in case your footer CSS caps width) */
  .site-footer,
  .site-footer .footer-container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: clamp(24px, 8vw, 120px) !important;
    padding-right: clamp(24px, 8vw, 120px) !important;
  }
}

/* If you ever want true edge-to-edge (no side padding) on desktop:
   add class="rf-bleed" to the body or article wrapper and uncomment below */
/*
@media (min-width: 1200px) {
  .rf-bleed .blog-post-content,
  .rf-bleed .rf-article-header,
  .rf-bleed .rf-hero-wrap,
  .rf-bleed .rf-related,
  .rf-bleed .rf-post-nav,
  .rf-bleed .site-footer .footer-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
*/

  


/* Footer Styles */
.site-footer {
  background-color: #414141; /* Dark grey background */
  color: #fff; /* White text */
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative; /* To ensure footer-bottom can align correctly */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Navigation, Social Media, and Info */
.footer-nav,
.footer-social,
.footer-info {
  flex: 1 1 calc(33.33% - 20px); /* Responsive grid */
  min-width: 200px;
}

.footer-nav h3,
.footer-social h3,
.footer-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li,
.footer-social ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
  color: #ccc; /* Light grey links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
  color: #02917a; /* Green hover color */
}

/* Footer Info Section */
.footer-info {
  font-size: 0.9rem;
  color: #ccc; /* Light grey text */
  line-height: 1.6; /* Better readability */
}

.footer-info p {
  margin: 10px 0; /* Add spacing between lines */
}

.footer-info a {
  color: #18B19C; /* Replace with your brand's specific green color code */
  text-decoration: none; /* Optional: removes underline from the link */
}

.footer-info a:hover {
  color: #016954; /* Darker green for hover, adjust as needed */
  text-decoration: underline; /* Optional: adds underline on hover for better usability */
}


/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #bbb; /* Lighter grey for bottom text */
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  font-size: 1rem; /* Slightly larger for clarity */
  font-weight: bold; /* Make Reel Free stand out */
  color: #fff;
}

.footer-brand {
  font-weight: 700; /* Bold */
  color: #fff;
}

.footer-year {
  font-weight: 500; /* Medium */
  color: #ccc;
}

.footer-rights {
  font-weight: 300; /* Light */
  color: #bbb;
}

.footer-divider {
  margin: 0 0.3rem;
  color: #999;
}

/* Media Query for Footer */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column; /* Stack footer sections vertically */
      align-items: center;
      text-align: center;
  }

  .footer-nav,
  .footer-social,
  .footer-info {
      flex: 1 1 100%; /* Each section takes full width */
      margin-bottom: 20px; /* Add spacing between stacked sections */
  }

  .footer-bottom {
      margin-top: 20px; /* Adjust margin for smaller screens */
  }
}
