/* SafariByte - Apple-inspired Professional Website Styles */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-light: #e3e3e3;
    --primary-white: #ffffff;
    --primary-black: #000000;
    
    /* Extended Color Palette */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Accent Colors */
    --accent-blue: #007AFF;
    --accent-green: #34C759;
    --accent-orange: #FF9500;
    --accent-red: #FF3B30;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-weight-bold);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: var(--font-weight-semibold);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-500);
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    color: var(--primary-black) !important;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
    border-radius: var(--radius-sm);
}

.brand-text {
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-black) !important;
    background-color: var(--gray-100);
}

.navbar-nav .nav-link.active {
    color: var(--primary-black) !important;
    background-color: var(--primary-light);
}

.contact-btn {
    background-color: var(--primary-black) !important;
    color: var(--primary-white) !important;
    border-radius: var(--radius-md) !important;
    margin-left: 1rem;
}

.contact-btn:hover {
    background-color: var(--gray-800) !important;
    color: var(--primary-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-md);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border: none;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: var(--gray-800);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background-color: var(--primary-white);
    color: var(--primary-black);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background-color: var(--gray-50);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===== HERO SECTION WITH VIDEO BACKGROUND ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content-container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.hero-content {
    text-align: center;
    color: var(--primary-white);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e3e3e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
}

/* Alternating section backgrounds */
.section-alt-bg {
    background: #e3e3e3 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    overflow: hidden;
    background-color: var(--primary-white);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.card-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ===== PROJECT CARDS ===== */
.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--primary-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.project-link:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
}

.project-info {
    padding: 2rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.project-category {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background-color: var(--primary-light);
    color: var(--primary-black);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

/* ===== SERVICES ===== */
.service-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    background-color: var(--primary-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-black);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* ===== TEAM ===== */
.team-card {
    text-align: center;
    background-color: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-light);
    transition: all var(--transition-normal);
}

.team-card:hover .team-image {
    border-color: var(--primary-black);
    transform: scale(1.05);
}

.team-name {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.team-role {
    color: var(--gray-500);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary-black);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
}

/* ===== STATS ===== */
.stats-section {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-300);
    font-weight: var(--font-weight-medium);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-brand h5 {
    color: var(--primary-white);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-title {
    color: var(--primary-white);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-white);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-800);
    color: var(--gray-400);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.newsletter-description,
.social-description {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input {
    background-color: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--primary-white);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    background-color: var(--gray-800);
    border-color: var(--primary-black);
    color: var(--primary-white);
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: var(--gray-500);
}

.btn-newsletter {
    background-color: var(--primary-black);
    border: 1px solid var(--primary-black);
    color: var(--primary-white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.75rem 1rem;
    transition: all var(--transition-normal);
}

.btn-newsletter:hover {
    background-color: var(--gray-800);
    border-color: var(--gray-800);
    color: var(--primary-white);
    transform: translateY(-1px);
}

.footer-divider {
    border-color: var(--gray-700);
    margin: 3rem 0 2rem;
    opacity: 0.3;
}

.copyright {
    color: var(--gray-500);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    justify-content: end;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-showcase {
    background-color: var(--primary-white);
    padding: var(--section-padding);
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
    transition: all var(--transition-normal);
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-content {
    text-align: center;
    color: var(--primary-white);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.video-container:hover .video-content {
    transform: translateY(0);
}

.video-content h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.video-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.video-play-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.video-play-btn:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: scale(1.05);
}

.video-play-btn i {
    margin-right: 0.5rem;
}

/* Video responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .video-content {
        padding: 1.5rem;
    }
    
    .video-content h3 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }
    
    .video-overlay {
        opacity: 1;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Video Background Mobile Optimization */
    .hero-video {
        object-position: center center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        margin: 0.25rem 0;
    }
    
    .contact-btn {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero {
        text-align: center;
        padding: 2rem 0;
    }
    
    .card-body,
    .service-card,
    .team-card {
        padding: 1.5rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light-gray {
    background-color: var(--gray-50);
}

.border-light {
    border-color: var(--primary-light) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.rounded-custom {
    border-radius: var(--radius-lg);
}

/* ===== NOTIFICATION SYSTEM ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    font-family: var(--font-family);
    font-weight: var(--font-weight-medium);
}

.notification-success {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 1px solid var(--gray-800);
}

.notification-error {
    background-color: var(--accent-red);
    color: var(--primary-white);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}
