/* Variables */
:root {
    --bar-black: #000000;
    --bar-white: #FFFFFF;
    --bar-red: #CF2E2E;
    --bar-pink: #FF1493;
    --bar-neon-red: #ff1a1a;
    --bar-neon-pink: #ff00ff;
    --bar-neon-blue: #00ffff;
    --bar-bg: #1a1a1a;
    --bar-gradient-1: linear-gradient(135deg, #ff1a1a 0%, #ff00ff 50%, #00ffff 100%);
    --bar-gradient-2: linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ff1a1a 100%);
    --bar-gradient-3: linear-gradient(135deg, #00ffff 0%, #ff1a1a 50%, #ff00ff 100%);
}

/* Base Styles */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bar-bg);
    color: var(--bar-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.title-font {
    font-family: 'Chakra Petch', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--bar-neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.header-logo {
    height: 3rem;
    width: auto;
    filter: drop-shadow(0 0 10px var(--bar-neon-pink));
}

.hero-nav {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-nav a {
    color: var(--bar-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.hero-nav a:hover {
    color: var(--bar-neon-pink);
    transform: translateY(-2px);
}

.hero-nav a.active {
    color: var(--bar-neon-pink);
}

.hero-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--bar-neon-pink);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--bar-neon-pink);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    transform: scale(1.2);
}

.hero-logo {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 8rem;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    text-shadow: 
        0 0 3px #fff,
        0 0 5px #fff,
        0 0 10px #bc13fe,
        0 0 20px #bc13fe,
        0 0 40px #bc13fe;
    animation: neon-pulse 3s infinite alternate;
    letter-spacing: -0.05em;
    transform: rotate(-5deg);
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--bar-black);
    position: relative;
    overflow: hidden;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--bar-pink), var(--bar-blue));
    transform: translateX(-50%);
    z-index: 1;
}

.story-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.story-card-large:hover {
    transform: translateY(-5px);
}

.story-year {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--bar-pink);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    padding-right: 40px;
}

.story-year::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--bar-pink);
    transform: translateY(-50%);
}

.story-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card-large:hover .story-image img {
    transform: scale(1.05);
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.story-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.story-stats {
    position: relative;
    z-index: 2;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bar-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--bar-white);
}

/* Restaurants Section */
.restaurants-section {
    padding: 6rem 0;
    background: var(--bar-black);
    position: relative;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.restaurant-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.restaurant-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.restaurant-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.1);
}

.restaurant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-info {
    color: var(--bar-white);
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-card:hover .restaurant-info {
    transform: translateY(0);
}

.restaurant-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.restaurant-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--bar-pink);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-card:hover .restaurant-info h3::after {
    width: 100%;
}

.restaurant-details {
    margin: 1rem 0;
}

.restaurant-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restaurant-details i {
    color: var(--bar-pink);
    font-size: 1rem;
}

.restaurant-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-primary {
    padding: 0.8rem 1.5rem;
    background: var(--bar-pink);
    color: var(--bar-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--bar-pink);
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--bar-white);
    text-decoration: none;
    border: 2px solid var(--bar-white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--bar-pink);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: var(--bar-white);
    color: var(--bar-black);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .restaurant-card {
        margin: 0 1rem;
    }

    .restaurant-image {
        height: 300px;
    }

    .restaurant-info h3 {
        font-size: 1.3rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Franchise Section */
.franchise-section {
    padding: 6rem 0;
    background: var(--bar-black);
    position: relative;
}

.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.franchise-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.franchise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.franchise-image:hover img {
    transform: scale(1.05);
}

.franchise-info {
    color: var(--bar-white);
}

.franchise-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--bar-pink);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--bar-black);
    color: var(--bar-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bar-pink), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    text-align: center;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--bar-pink));
}

.footer-logo p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--bar-pink);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-column h4 {
    color: var(--bar-pink);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--bar-pink);
}

.footer-column p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-column i {
    color: var(--bar-pink);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--bar-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.social-link:hover {
    color: var(--bar-pink);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--bar-pink);
    text-decoration: none;
}

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

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bar-pink), transparent);
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background: var(--bar-black);
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.menu-item {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-image {
    height: 250px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 1.5rem;
    color: var(--bar-white);
    background: rgba(0, 0, 0, 0.5);
}

.menu-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bar-pink);
}

.menu-item-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bar-pink);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }

    .header-logo {
        height: 2.5rem;
    }

    .hero-nav {
        width: 100%;
        padding: 0.5rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 10px;
        position: relative;
        z-index: 100;
    }

    .hero-nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
        white-space: nowrap;
    }

    .hero-logo {
        font-size: 4rem;
        margin-top: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .story-timeline::before {
        display: none;
    }

    .story-card-large {
        grid-template-columns: 1fr;
        margin: 0 -1rem;
        border-radius: 0;
    }

    .story-image {
        height: 250px;
    }

    .story-content {
        padding: 1.5rem;
    }

    .story-year {
        font-size: 1rem;
    }

    .story-content h3 {
        font-size: 1.2rem;
    }

    .story-content p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        margin: 0 -1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .restaurant-card {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .restaurant-image {
        height: 250px;
    }

    .restaurant-info {
        padding: 1.5rem;
    }

    .restaurant-info h3 {
        font-size: 1.3rem;
    }

    .restaurant-info p {
        font-size: 0.9rem;
    }

    .franchise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        margin: 0 -1rem;
        border-radius: 0;
    }

    .franchise-image {
        height: 250px;
    }

    .franchise-info h3 {
        font-size: 1.5rem;
    }

    .benefit-item {
        padding: 0.8rem;
        gap: 1rem;
    }

    .benefit-item i {
        font-size: 1.5rem;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        padding: 1.5rem;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-column {
        padding: 1.5rem;
    }

    .footer-column h4 {
        font-size: 1.2rem;
    }

    .footer-column p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .menu-grid {
        gap: 1.5rem;
    }

    .menu-item {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .menu-item-image {
        height: 200px;
    }

    .menu-item-content {
        padding: 1.2rem;
    }

    .menu-item-content h3 {
        font-size: 1.3rem;
    }

    .menu-item-content p {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .menu-item-footer .btn-primary,
    .restaurant-info .btn-primary,
    .franchise-info .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 2.5rem;
        margin-top: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .story-card-large {
        margin: 0;
    }

    .story-image {
        height: 200px;
    }

    .restaurant-card {
        margin: 0;
    }

    .restaurant-image {
        height: 200px;
    }

    .franchise-content {
        margin: 0;
    }

    .franchise-image {
        height: 200px;
    }

    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-column {
        padding: 1rem;
    }

    .social-link {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .menu-item {
        margin: 0;
    }

    .menu-item-image {
        height: 180px;
    }

    .menu-item-content {
        padding: 1rem;
    }

    .menu-item-content h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .menu-item-footer .btn-primary,
    .restaurant-info .btn-primary,
    .franchise-info .btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Animations pour mobile */
@media (max-width: 768px) {
    .restaurant-card:hover {
        transform: none;
    }

    .restaurant-card:active {
        transform: scale(0.98);
    }

    .menu-item:hover {
        transform: none;
    }

    .menu-item:active {
        transform: scale(0.98);
    }

    .benefit-item:hover {
        transform: none;
    }

    .benefit-item:active {
        transform: scale(0.98);
    }

    .btn-primary:hover {
        transform: none;
    }

    .btn-primary:active {
        transform: scale(0.98);
    }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--bar-pink), var(--bar-red));
    color: var(--bar-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Bandeau de démo */
.demo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bar-black);
    color: var(--bar-white);
    padding: 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-top: 2px solid var(--bar-pink);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.demo-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.demo-banner p {
    margin: 0;
    font-size: 1rem;
    color: var(--bar-white);
}

.demo-banner a {
    color: var(--bar-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-banner a.demo-contact-btn {
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    border: 2px solid var(--bar-pink);
}

.demo-banner a.demo-contact-btn:hover {
    background: var(--bar-pink);
    color: var(--bar-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.demo-banner-close {
    background: transparent;
    border: none;
    color: var(--bar-white);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.demo-banner-close:hover {
    color: var(--bar-pink);
}

.demo-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--bar-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--bar-pink);
}

.demo-contact-btn:hover {
    background: var(--bar-pink);
    color: var(--bar-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.demo-contact-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.demo-contact-btn:hover i {
    transform: translateX(3px);
    color: var(--bar-black);
}

@media (max-width: 768px) {
    .demo-contact-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
} 