/* =========================================================
   Josh Plays the Sax – Global Theme
   ========================================================= */

/* CSS Variables - Centralized theme colors */
:root {
    /* Dark stage + brass sax palette */
    --primary-color: #050816;        /* Main dark/nav */
    --secondary-color: #02010a;      /* Footer / deep background */
    --accent-color: #f4c15d;         /* Sax brass gold */
    --accent-soft: #ffe9b8;          /* Soft gold wash */
    --highlight-color: #ee9222;      /* Neon cyan accent */
    --background-color: #02010a;
    --surface-color: #070b16;
    --border-color: #1e293b;
    --text-color: #e5e7eb;
    --muted-text: #a1a5b0;
    --white: #ffffff;
}

/* =========================================================
   Base Styles
   ========================================================= */

html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111827 0%, #020617 55%, #000000 100%);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: left;
    width: 100%;
}

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    color: var(--white);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    font-size: 3rem;
    margin-top: 18px;
    margin-bottom: 24px;
    text-shadow: 0 0 18px rgba(244, 193, 93, 0.55);
}

h2 {
    font-size: 1.9rem;
    margin-top: 18px;
    color: var(--accent-color);
}

h3 {
    font-size: 1.4rem;
    margin-top: 26px;
    color: var(--highlight-color);
}

/* General paragraph styles */
p {
    font-size: 1.05rem;
    margin: 0 0 25px 0;
    line-height: 1.7;
    max-width: 650px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: var(--muted-text);
}

/* Specific paragraph styling for "Hi, I'm Josh." */
.intro-text {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 0.5em;
    color: var(--accent-color);
}

/* Lists */
ul, ol {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 1rem auto;
    padding-left: 0;
    max-width: 650px;
    width: 90%;
    color: var(--muted-text);
}

li {
    margin-bottom: 0.5rem;
}

/* =========================================================
   Images & Media
   ========================================================= */

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Main portrait image (index.html) */
.image-container img {
    width: 75%;
    max-width: 380px;
    height: auto;
    border: 2px solid var(--accent-color);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* Repertoire Page Video */
.repertoire-image-container {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.repertoire-image-container video {
    width: 60%;
    max-width: 400px;
    height: auto;
    border: 2px solid var(--accent-color);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    display: block;
    margin: 0 auto;
}

/* =========================================================
   Layout & Header
   ========================================================= */

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* =========================================================
   Navigation
   ========================================================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #02010a 0%, #050816 40%, #02010a 100%);
    padding: 14px 20px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.3s ease-in-out, background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

/* Hide nav on scroll down */
.nav-hidden {
    transform: translateY(-100%);
}

/* Social Links Container (Instagram / TikTok / Encore) */
.social-links-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.social-icon-link {
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
}

.social-icon-link img {
    width: 32px;
    height: 32px;
    margin: 0;
}

.social-icon-link:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: rgba(15, 23, 42, 0.9);
}

/* Nav Menu (ul) */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    justify-content: center;
}

/* Nav items */
nav ul li {
    margin: 0 12px;
}

/* Nav Links */
nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 16px;
    letter-spacing: 0.16em;
    border-radius: 999px;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease, transform 0.18s ease;
}

nav a::after {
    content: "";
    position: absolute;
    inset-inline: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease-out;
    opacity: 0.95;
}

nav a:hover {
    background: rgba(15, 23, 42, 0.85);
    transform: translateY(-1px);
}

nav a:hover::after {
    transform: scaleX(1);
}


/* Mobile nav open state */
nav ul.show {
    flex-direction: column;
    background: #02010a;
    position: absolute;
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.7);
    animation: slideDown 0.3s ease-in-out;
    align-items: center;
    gap: 10px;
    display: flex;
    height: calc(100vh - 60px);
    overflow-y: auto;
    justify-content: flex-start;
}

/* Slide-down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu Toggle Button */
.menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger icon animation to an "X" */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================================
   Wrapper / Main Content
   ========================================================= */

.wrapper {
    padding-top: 120px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 30px);
    padding-bottom: 60px;
}

/* Dividers - thin stage light line */
.divider {
    width: 100%;
    max-width: 780px;
    height: 2px;
    margin: 48px auto;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(244, 193, 93, 0.8),
        rgba(34, 211, 238, 0.7),
        transparent
    );
}

/* =========================================================
   Call to Action Buttons
   ========================================================= */

.cta-container {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 52px;
    margin-bottom: 60px;
}

.cta-item {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b1120;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-color), #facc15);
    text-decoration: none;
    letter-spacing: 0.14em;
    border: none;
    box-shadow: 0 18px 38px rgba(244, 193, 93, 0.55);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, filter 0.18s ease-out;
}

.cta-item:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 24px 52px rgba(244, 193, 93, 0.9);
    filter: brightness(1.06);
}

/* =========================================================
   Listen Links (Spotify / YouTube)
   ========================================================= */

.listen-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.spotify-logo-link,
.youtube-logo-link {
    display: block;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    border-radius: 16px;
}

.spotify-logo-link img,
.youtube-logo-link img {
    width: 104px;
    height: auto;
    display: block;
}

.spotify-logo-link:hover,
.youtube-logo-link:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* =========================================================
   Repertoire Table
   ========================================================= */

.repertoire-table {
    width: 100%;
    max-width: 650px;
    margin-top: 15px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.5;
    table-layout: fixed;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    overflow: hidden;
}

.repertoire-table th,
.repertoire-table td {
    padding: 12px 15px;
    border: 1px solid rgba(31, 41, 55, 0.9);
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
}

.repertoire-table th {
    background: linear-gradient(90deg, #0f172a, #020617);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}

.repertoire-table tbody tr:nth-child(even) {
    background-color: rgba(15, 23, 42, 0.9);
}

.repertoire-table tbody tr:nth-child(odd) {
    background-color: rgba(15, 23, 42, 0.7);
}

.repertoire-table td:hover {
    background-color: rgba(249, 193, 93, 0.12);
}

/* =========================================================
   Footer
   ========================================================= */

footer {
    background: radial-gradient(circle at top, #02010a 0%, #000000 75%);
    color: var(--muted-text);
    padding: 32px 0 18px;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
    text-align: center;
    border-top: 1px solid rgba(15, 23, 42, 0.8);
}

footer p {
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: none;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =========================================================
   Contact Form
   ========================================================= */

.contact-form {
    max-width: 800px;
    width: 100%;
    margin: 50px auto;
    padding: 28px 26px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 18px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(55, 65, 81, 0.8);
}

.contact-form label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.95rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    border-radius: 10px;
    box-sizing: border-box;
    background: #020617;
    color: var(--text-color);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px rgba(244, 193, 93, 0.7);
    background: #020617;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 13px 20px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--accent-color), #facc15);
    color: #111827;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, filter 0.2s ease-out;
    box-shadow: 0 12px 30px rgba(248, 180, 80, 0.6);
}

.contact-form button:hover {
    transform: translateY(-1px) scale(1.03);
    filter: brightness(1.05);
}

/* =========================================================
   Review Slider
   ========================================================= */

.review-slider-container {
    position: relative;
    max-width: 600px;
    width: 90%;
    margin: 60px auto 40px auto;
    box-sizing: border-box;
}

.review-slider-inner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.8);
    aspect-ratio: 16 / 9;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    /* 🔥 White background inside */
    background: #ffffff;

    /* Gold border like the photos */
    border: 2px solid var(--accent-color);
}


.review-slider-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}

.review-slide {
    flex: 0 0 100%;  /* each slide = 100% of container */
    height: 100%;
    object-fit: contain;
}


/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 88%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    font-size: 1.8rem;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: #111827;
    transform: translateY(-52%) scale(1.05);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* =========================================================
   Utility Classes
   ========================================================= */

/* Hide the nav bar when scrolling down (used via JS) */
.hide-nav {
    top: -60px;
}

/* =========================================================
   Media Queries
   ========================================================= */

@media (max-width: 768px) {
    nav {
        padding: 0 10px;
        height: 60px;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .wrapper {
        padding-top: 80px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }

    .social-links-container {
        left: 10px;
        gap: 8px;
    }

    .social-icon-link img {
        width: 28px;
        height: 28px;
    }

    /* Mobile Nav UL */
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 60px;
        bottom: 0;
        right: 0;
        left: 0;
        background: #02010a;
        padding-top: 20px;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.7);
        animation: slideDown 0.3s ease-in-out;
        gap: 10px;
        height: calc(100vh - 60px);
        overflow-y: auto;
        justify-content: flex-start;
        z-index: 999;
    }

    nav ul.show {
        display: flex;
    }

    nav a {
        font-size: 0.95rem;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    nav ul.show a {
        display: block;
        width: 90%;
        margin: 0 auto;
        padding: 15px 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    }

    nav ul.show li:last-child a {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
        right: 10px;
    }

    body {
        padding-top: 60px;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
        margin-bottom: 18px;
        width: calc(100% - 40px);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    ul, ol {
        font-size: 0.95rem;
        margin: 0 auto 15px auto;
        width: calc(100% - 40px);
        max-width: 600px;
    }

    .divider {
        margin: 30px auto;
    }

    .cta-item {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .listen-links {
        gap: 15px;
    }

    .spotify-logo-link img,
    .youtube-logo-link img {
        width: 82px;
    }

    .repertoire-image-container {
        margin-top: 10px;
        margin-bottom: 15px;
        max-width: 95%;
    }

    .review-slider-inner {
        min-height: 200px;
    }
}

@media (min-width: 769px) {
    nav {
        justify-content: center;
        padding: 14px 20px;
        position: relative;
        height: auto;
        top: auto;
    }

    .hide-nav {
        top: auto;
    }

    .social-links-container {
        left: 20px;
    }

    nav ul {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        box-shadow: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        height: auto;
        overflow-y: visible;
    }

    nav ul li {
        margin: 0 12px;
    }

    .menu-toggle {
        display: none;
    }

    .wrapper {
        padding-top: 60px;
    }

    body {
        padding-top: 0;
    }
}
/* Center the songs list */
.music-list {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically if needed */
  text-align: center;
  margin: 40px auto;
}

/* Ensure the <ul> takes up only necessary width */
.music-list ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center each song item */
.music-list li {
  text-align: center;
  margin-bottom: 20px;
}

/* Ensure audio player takes full width */
.music-list audio {
  display: block;
  margin: 10px auto;
}

/* Center the pop-out button */
.music-list button {
  display: block;
  margin: 10px auto;
}

/* Center and style Listen While You Browse section */
.listen-music {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
  padding: 30px 20px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px; /* Aligns with CTA sections */
}

/* Heading styling (matches .cta h2 & .music-cta h2) */
.listen-music h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; /* Same as .cta h2 & .music-cta h2 */
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 12px;
}

/* Paragraph styling */
.listen-music p {
  font-size: var(--body-text-size);
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 15px;
}

/* Button styling */
.listen-music button {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: var(--body-text-size);
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.listen-music button:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

/* Responsive styling */
@media (max-width: 768px) {
  .listen-music {
    max-width: 90%;
    padding: 25px;
  }

  .listen-music h2 {
    font-size: 1.6rem; /* Slightly smaller for mobile */
  }
}
/* Container styling */
.music-list audio {
  width: 100%;
  accent-color: var(--accent-color);
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 4px 18px rgba(244, 193, 93, 0.35);
}

/* WebKit (Chrome, Safari, Edge) controls */
.music-list audio::-webkit-media-controls-panel {
  background-color: var(--accent-color);
  color: #111827;
  border-radius: 8px;
}

/* WebKit Play/Pause buttons */
.music-list audio::-webkit-media-controls-play-button,
.music-list audio::-webkit-media-controls-mute-button,
.music-list audio::-webkit-media-controls-volume-slider-container,
.music-list audio::-webkit-media-controls-timeline {
  background-color: var(--accent-color);
}

/* Firefox: Use accent-color to color controls */
@supports (-moz-appearance: none) {
  .music-list audio {
    accent-color: var(--accent-color);
  }
}
.music-list audio {
  display: block;
  width: 300px; /* or any fixed width you prefer */
  max-width: 100%;
  background-color: var(--accent-color);
  accent-color: var(--accent-color);
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 18px rgba(244, 193, 93, 0.35);
}

/* Smooth scrolling for in-page anchor links */
html {
    scroll-behavior: smooth;
}

/* Make sure sections don't hide behind the fixed nav when scrolled to */
.page-section {
    scroll-margin-top: 80px; /* adjust if your nav is taller/shorter */
}

/* Give the main content a bit of space so it's not hidden behind the fixed nav */
.wrapper {
    padding-top: 80px; /* same as above – tweak to taste */
}

/* Nav hide/show animation support */
nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Class added/removed by JS when scrolling */
.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* CONTACT ICONS ROW */
.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

/* Wrapper */
.cta-icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, filter 0.25s ease;
    background: transparent;
}

/* Default icon sizing */
.cta-icon-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Adjust WhatsApp (make slightly bigger) */
.cta-block:nth-child(1) .cta-icon-wrapper img {
    width: 105%;
    height: 105%;
}

/* Adjust Email (make slightly smaller) */
.cta-block:nth-child(2) .cta-icon-wrapper img {
    width: 65%;
    height: 65%;
}

/* Adjust Call (make slightly smaller) */
.cta-block:nth-child(3) .cta-icon-wrapper img {
    width: 72%;
    height: 72%;
}


/* Adjust Instagram (make slightly smaller) */
.cta-block:nth-child(4) .cta-icon-wrapper img {
    width: 65%;
    height: 65%;
}

/* Hover effect */
.cta-block:hover .cta-icon-wrapper {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.9));
}

/* Labels */
.cta-label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}


