/* Detroit Psychedelic Society - Shared Styles */

/* Base styles */
:root {
    --cosmic-blue: #0b1354;
    --cosmic-purple: #4f2d7f;
    --vibrant-purple: #7b2cbf;
    --cosmic-green: #1a472a;
    --earthy-green: #2d6a4f;
    --vibrant-green: #40916c;
    --accent-gold: #d7a82b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(to bottom, var(--cosmic-blue), #000);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
}

/* Sacred geometry background */
.sacred-geometry {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    background: url(https://i.pinimg.com/originals/2e/c2/df/2ec2df78de4bf2c475adac2ce70dad60.gif);
    background-size: cover;
    mix-blend-mode: screen;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: rgba(11, 19, 84, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
}

.nav-shown {
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

@media (hover: hover) {
    .nav-link:hover {
        color: var(--accent-gold);
    }

    .nav-link:hover:before {
        width: 100%;
    }
}

/* Hamburger toggle button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-height: 44px;
    min-width: 44px;
    z-index: 200;
}

.nav-toggle:active {
    opacity: 0.7;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.nav-toggle-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-bar + .nav-toggle-bar {
    margin-top: 6px;
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11, 19, 84, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 45, 127, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: var(--accent-gold);
    background: rgba(79, 45, 127, 0.2);
    border-left-color: var(--accent-gold);
}

/* Hero section */
.hero-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(123, 44, 191, 0.8);
}

.hero-home-title {
    font-size: clamp(1.8rem, 2.5vw + 0.75rem, 2.5rem);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.25vw + 0.5rem, 1.5rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--vibrant-purple), var(--cosmic-purple));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(79, 45, 127, 0.5);
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 45, 127, 0.7);
}

/* Section styles */
.section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
}

.section-title-container {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: clamp(1.75rem, 2vw + 0.75rem, 2.5rem);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    font-size: clamp(0.95rem, 0.75vw + 0.75rem, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Community Cards */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.community-card {
    background: rgba(11, 19, 84, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(79, 45, 127, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.card-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--vibrant-purple), var(--cosmic-purple));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 45, 127, 0.5);
}

/* Medicine Cards */
.medicine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 60px;
}

.medicine-card {
    background: rgba(11, 19, 84, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(29, 106, 79, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.medicine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold);
}

.medicine-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.medicine-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.medicine-safety {
    font-size: 0.9rem;
    padding: 15px;
    background: rgba(29, 106, 79, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--earthy-green);
    margin-top: 20px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(to bottom, var(--cosmic-purple), var(--cosmic-blue));
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 2vw + 0.75rem, 2.5rem);
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.cta-description {
    font-size: clamp(0.95rem, 0.75vw + 0.75rem, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--vibrant-purple), var(--cosmic-purple));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(79, 45, 127, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 45, 127, 0.7);
}

.cta-button.secondary:hover {
    background: rgba(215, 168, 43, 0.1);
    box-shadow: 0 10px 20px rgba(215, 168, 43, 0.3);
}

/* Footer */
.footer {
    background: var(--cosmic-blue);
    padding: 50px 0;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    margin-right: 10px;
    color: var(--accent-gold);
}

.footer-newsletter {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 15px;
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Form row grid */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.breathe {
    animation: breathe 6s infinite ease-in-out;
}

@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Home page header */
.header-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
    perspective: 1200px;
    background: linear-gradient(
        180deg,
        rgba(11, 19, 84, 0.95) 0%,
        rgba(79, 45, 127, 0.6) 30%,
        rgba(11, 19, 84, 0.8) 50%,
        rgba(26, 71, 42, 0.4) 70%,
        rgba(11, 19, 84, 0.9) 100%
    );
    background-size: 100% 300%;
    animation: aurora 20s ease-in-out infinite;
}

@keyframes aurora {
    0%   { background-position: 0% 0%; }
    25%  { background-position: 0% 50%; }
    50%  { background-position: 0% 100%; }
    75%  { background-position: 0% 50%; }
    100% { background-position: 0% 0%; }
}

/* Click burst flash */
.click-flash {
    position: fixed;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin-left: -150px;
    margin-top: -150px;
    background: radial-gradient(circle, rgba(215, 168, 43, 0.6) 0%, rgba(215, 168, 43, 0.2) 40%, transparent 70%);
    pointer-events: none;
    z-index: 50;
    animation: flashPulse 0.8s ease-out forwards;
}

@keyframes flashPulse {
    0%   { transform: scale(0); opacity: 1; }
    50%  { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* Logo 3D tilt */
.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.logo-container h1,
.logo-container p {
    transition: transform 0.15s ease-out;
}

/* Hero bottom gradient dissolve */
.hero-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(11, 19, 84, 0.3) 20%,
        rgba(79, 45, 127, 0.6) 50%,
        rgba(123, 44, 191, 0.4) 75%,
        rgba(215, 168, 43, 0.25) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 70px;
    pointer-events: none;
}

.hero-tagline {
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(215, 168, 43, 0.4);
    opacity: 0.9;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-inner {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    perspective: 1000px;
}

.logo-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    animation: pulse 4s infinite alternate;
}

.logo-circle-1 {
    width: 220px;
    height: 220px;
    border-color: var(--vibrant-purple);
}

.logo-circle-2 {
    width: 180px;
    height: 180px;
    top: 20px;
    left: 20px;
    border-color: var(--vibrant-green);
}

.logo-circle-3 {
    width: 140px;
    height: 140px;
    top: 40px;
    left: 40px;
    border-color: var(--accent-gold);
}

.logo-text {
    position: absolute;
    top: 60px;
    width: 100%;
    text-align: center;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(123, 44, 191, 0.8);
}

.logo-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(123, 44, 191, 0.8);
}

.logo-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(123, 44, 191, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    animation: fadeInUp 2s infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
}

/* Nav logo */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.nav-logo-link:hover .nav-logo {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(215, 168, 43, 0.5);
}

/* Footer logo image */
.footer-logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    display: block;
}

/* Hero logo image */
.logo-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 25px rgba(215, 168, 43, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .nav-list {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding-top: 15px;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-link {
        padding: 12px 20px;
        display: block;
        text-align: center;
        width: 100%;
    }

    .nav-inner {
        flex-direction: column;
        gap: 15px;
        position: relative;
    }

    .medicine-grid, .community-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* =============================================
   Clerk Authentication Theming
   ============================================= */

:root {
  --clerk-card-background-color: rgba(11, 19, 84, 0.95);
  --clerk-card-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --clerk-card-border-radius: 15px;
  --clerk-font-family: 'Montserrat', sans-serif;
  --clerk-font-size: 0.95rem;
  --clerk-color: rgba(255, 255, 255, 0.9);
  --clerk-color-text-secondary: rgba(255, 255, 255, 0.7);
  --clerk-color-text-primary: #ffffff;
  --clerk-header-title-font-family: 'Cormorant Garamond', serif;
  --clerk-header-title-color: #d7a82b;
  --clerk-header-title-font-size: 1.5rem;
  --clerk-header-subtitle-color: rgba(255, 255, 255, 0.7);
  --clerk-input-background-color: rgba(0, 0, 0, 0.3);
  --clerk-input-border-color: rgba(255, 255, 255, 0.2);
  --clerk-input-border-radius: 8px;
  --clerk-input-color: #ffffff;
  --clerk-input-placeholder-color: rgba(255, 255, 255, 0.4);
  --clerk-input-focus-border-color: #d7a82b;
  --clerk-input-focus-box-shadow: 0 0 0 2px rgba(215, 168, 43, 0.2);
  --clerk-button-background-color: linear-gradient(45deg, #7b2cbf, #4f2d7f);
  --clerk-button-text-color: #ffffff;
  --clerk-button-border-radius: 50px;
  --clerk-button-font-weight: 600;
  --clerk-button-hover-transform: translateY(-2px);
  --clerk-button-hover-box-shadow: 0 5px 15px rgba(79, 45, 127, 0.5);
  --clerk-social-button-background-color: rgba(255, 255, 255, 0.05);
  --clerk-social-button-border-color: rgba(255, 255, 255, 0.15);
  --clerk-social-button-hover-background-color: rgba(255, 255, 255, 0.1);
  --clerk-divider-color: rgba(255, 255, 255, 0.15);
  --clerk-divider-text-color: rgba(255, 255, 255, 0.4);
  --clerk-footer-action-link-color: #d7a82b;
  --clerk-error-color: #ff6b6b;
  --clerk-modal-background-color: rgba(11, 19, 84, 0.98);
  --clerk-modal-border-radius: 15px;
  --clerk-modal-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Auth loading spinner */
.auth-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 3px solid rgba(215, 168, 43, 0.2);
  border-top-color: #d7a82b;
  border-radius: 50%;
  animation: auth-spin 0.8s linear infinite;
}

@keyframes auth-spin {
  to { transform: rotate(360deg); }
}

/* Dashboard content visibility */
#dashboard-content {
  animation: dashboardFadeIn 0.4s ease;
}

@keyframes dashboardFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sign-in mount min-height */
#sign-in-mount {
  min-height: 300px;
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
        min-height: auto;
    }

    .section-title-container {
        margin-bottom: 40px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .community-card,
    .medicine-card {
        padding: 20px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-column {
        min-width: 100%;
    }

    .newsletter-input {
        padding: 12px 45px 12px 12px;
        font-size: 0.9rem;
    }

    .newsletter-button {
        width: 45px;
    }

    .logo-inner {
        width: 160px;
        height: 160px;
    }

    .logo-image {
        border-width: 2px;
    }

    .logo-text h1,
    .logo-text h3 {
        font-size: 1.1rem;
    }

    .logo-text h2 {
        font-size: 1.4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-button,
    .card-link {
        padding: 14px 24px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .cta-button {
        width: 100%;
    }

    .page-header {
        padding-top: 100px !important;
        padding-bottom: 30px !important;
    }

    .hero-bottom {
        height: 30%;
        padding-bottom: 60px;
    }

    .hero-tagline {
        letter-spacing: 0.1em;
    }
}
