/* BUILD Equality Website Styles */
/* Modern, responsive design for gender equality in construction project */

:root {
    --primary-navy: #1a365d;
    --primary-teal: #2c7a7b;
    --accent-gold: #d4a574;
    --accent-coral: #ed8936;
    --light-teal: #81e6d9;
    --soft-cream: #fffaf0;
    --warm-white: #fafafa;
    --text-dark: #2d3748;
    --text-light: #718096;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ==================== Navbar Styles ==================== */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand img {
    height: 60px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a365d 0%, #2c7a7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0.5rem 0.5rem;
    position: relative;
    transition: color 0.3s;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        margin: 0 1rem;
    }
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-coral) !important;
}

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

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2c7a7b 100%);
    color: white;
    padding: 5rem 1rem 3rem;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 4rem;
        min-height: 80vh;
    }
}

@media (min-width: 992px) {
    .hero {
        padding: 8rem 0;
        min-height: 90vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(129, 230, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--light-teal);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ==================== Buttons ==================== */
.btn-custom-primary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.4);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 768px) {
    .btn-custom-primary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

.btn-custom-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(237, 137, 54, 0.5);
    color: white;
}

.btn-custom-secondary {
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 768px) {
    .btn-custom-secondary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

.btn-custom-secondary:hover {
    background: white;
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* ==================== Partner Logos ==================== */
.partner-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    z-index: 2;
}

@media (min-width: 768px) {
    .partner-logos {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
}

.partner-logo {
    background: rgba(255,255,255,0.08);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 200px;
    height: 80px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

.partner-logo:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.12);
}

@media (min-width: 576px) {
    .partner-logo { 
        min-width: 150px; 
        height: 96px; 
    }
    .partner-logo img { 
        max-height: 70px; 
    }
}

@media (min-width: 992px) {
    .partner-logo { 
        min-width: 180px;
        max-width: 320px;
        height: 112px; 
    }
    .partner-logo img { 
        max-height: 80px; 
    }
}

.partner-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.partner-card-title {
    margin: 0;
    order: 0;
    text-align: left;
    font-size: 1.25rem;
    color: var(--primary-navy);
}

.partner-card-logo {
    order: 1;
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 576px) {
    .partner-card-logo {
        height: 90px;
    }
}

@media (min-width: 992px) {
    .partner-card-logo {
        height: 112px;
    }
}

.partner-card-logo:focus {
    outline: 3px solid rgba(212,165,116,0.9);
    outline-offset: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-radius: 6px;
}

.partner-logo:focus {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 36px rgba(0,0,0,0.22);
    outline: 3px solid rgba(129,230,217,0.9);
    outline-offset: 4px;
}

.footer-partner-logo {
    height: 20px;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
}

/* ==================== Workshop Assets ==================== */
.workshop-speakers {
    max-width: 100%;
    height: auto;
    margin-top:10px;
    max-height: 360px;
    object-fit: fill;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: block;
}

.workshop-flyer-thumb {
    height: 60px;
    width: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
    .workshop-flyer-thumb {
        height: 84px;
        border-radius: 8px;
    }
}

/* ==================== Section Styles ==================== */
section {
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 992px) {
    section {
        padding: 6rem 0;
    }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ==================== About Section ==================== */
.about {
    background: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    border-radius: 15px;
    z-index: -1;
}

@media (min-width: 768px) {
    .about-image::before {
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border-radius: 20px;
    }
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

@media (min-width: 768px) {
    .about-image img {
        border-radius: 20px;
    }
}

.about-image:hover img {
    transform: scale(1.02);
}

/* ==================== Objective Cards ==================== */
.objective-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

@media (min-width: 768px) {
    .objective-card {
        padding: 2.5rem 2rem;
        border-radius: 25px;
    }
}

@media (min-width: 992px) {
    .objective-card {
        padding: 3rem 2rem;
    }
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

/* ==================== Impact Section ==================== */
.impact {
    background: linear-gradient(135deg, #1a365d 0%, #2c7a7b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(129, 230, 217, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 165, 116, 0.15) 0%, transparent 50%);
}

.impact-item {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

@media (min-width: 768px) {
    .impact-item {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
}

@media (min-width: 992px) {
    .impact-item {
        padding: 2.5rem 1rem;
    }
}

.impact-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.impact-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    font-weight: 300;
}

/* ==================== Workshop Cards ==================== */
.workshop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .workshop-card {
        border-radius: 25px;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 992px) {
    .workshop-card {
        border-radius: 30px;
        margin-bottom: 3rem;
    }
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 70px rgba(0,0,0,0.15);
}

.workshop-header {
    background: linear-gradient(135deg, #1a365d 0%, #2c7a7b 100%);
    color: white;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .workshop-header {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 992px) {
    .workshop-header {
        padding: 3rem 2rem;
    }
}

.workshop-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(129, 230, 217, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.workshop-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.workshop-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .workshop-meta {
        gap: 2rem;
    }
}

.workshop-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .workshop-meta span {
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.workshop-content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .workshop-content {
        padding: 2rem;
    }
}

.workshop-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(237, 137, 54, 0.3);
    font-weight: 500;
    margin: 0.5rem;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .resource-link {
        gap: 0.8rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.4);
    color: white;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--soft-cream);
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .video-container {
        margin: 2rem 0;
        border-radius: 20px;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .video-container iframe {
        border-radius: 20px;
    }
}

.photo-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

@media (min-width: 576px) {
    .photo-gallery img {
        height: 200px;
        border-radius: 15px;
    }
}

@media (min-width: 768px) {
    .photo-gallery img {
        height: 220px;
    }
}

@media (min-width: 992px) {
    .photo-gallery img {
        height: 250px;
    }
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ==================== Coming Soon ==================== */
.coming-soon {
    background: linear-gradient(135deg, var(--soft-cream) 0%, rgba(212, 165, 116, 0.1) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    border: 2px dashed var(--accent-gold);
}

@media (min-width: 768px) {
    .coming-soon {
        padding: 3rem 2rem;
        border-radius: 25px;
    }
}

.coming-soon h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

/* ==================== Partner Cards ==================== */
.partner-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border-left: 4px solid var(--accent-gold);
    height: 100%;
}

@media (min-width: 768px) {
    .partner-card {
        padding: 2rem;
        border-radius: 25px;
        border-left: 5px solid var(--accent-gold);
    }
}

.partner-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.partner-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
}

/* ==================== Team Cards ==================== */
.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .team-member {
        border-radius: 25px;
        margin-bottom: 2rem;
    }
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

@media (min-width: 576px) {
    .team-member img {
        height: 320px;
    }
}

@media (min-width: 768px) {
    .team-member img {
        height: 360px;
    }
}

@media (min-width: 992px) {
    .team-member img {
        height: 400px;
    }
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .team-info {
        padding: 2rem;
    }
}

.team-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: 0.5rem;
}

.team-info .role {
    color: var(--accent-coral);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.team-info .institution {
    color: var(--primary-teal);
    font-style: italic;
    margin-bottom: 1rem;
}

/* ==================== Contact Section ==================== */
.contact {
    background: linear-gradient(135deg, #1a365d 0%, #2c7a7b 100%);
    color: white;
}

.contact-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .contact-content {
        padding: 3rem 2rem;
        border-radius: 30px;
    }
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--light-teal);
    margin-bottom: 1.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-info a {
    color: var(--light-teal);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-gold);
}

/* ==================== Footer ==================== */
footer {
    background: var(--primary-navy);
    color: white;
    padding: 3rem 1rem 2rem;
}

@media (min-width: 768px) {
    footer {
        padding: 4rem 0 2rem;
    }
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--light-teal);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
}

/* ==================== Scroll to Top Button ==================== */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ed8936 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(237, 137, 54, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

@media (min-width: 768px) {
    .scroll-top {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.5);
}

