/* Custom CSS for EYE❤KENYA */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@400;700&display=swap');

:root {
    --pink-primary: #ff1493;
    --pink-secondary: #ff69b4;
    --pink-light: #ffb6c1;
    --pink-dark: #c71585;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --sparkle-color: #ffffff;
    --sparkle-size: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pink-primary);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Welcome Text Styles */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Allura&family=Parisienne&display=swap');

.welcome-container {
    position: relative;
    text-align: center;
    padding: 1rem 0;
    margin: 0 auto;
    max-width: 90%;
    overflow: hidden;
}

.welcome-text {
    font-family: 'Parisienne', 'Alex Brush', 'Allura', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    color: #ffffff;
    position: relative;
    display: inline-block;
    animation: fadeIn 2s ease-out forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    transform: rotate(-2deg);
    background: linear-gradient(45deg, rgba(199, 21, 133, 0.3), rgba(255, 20, 147, 0.2));
    border-radius: 50%;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-text .highlight {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    transform: rotate(1deg);
    padding: 0 0.5rem;
}

/* Heart emoji styling */
.welcome-text .heart-emoji {
    color: var(--pink-primary);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.7);
    display: inline-block;
    transform: scale(1.2);
    margin: 0 0.2em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Sparkle effect */
.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 2s infinite, float 3s ease-in-out infinite;
    opacity: 0;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0.5s; }
.sparkle:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: 10%; left: 20%; animation-delay: 1.5s; }
.sparkle:nth-child(4) { top: 30%; right: 25%; animation-delay: 0.8s; }

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .welcome-text {
        font-size: 4rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .welcome-text {
        font-size: 3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .sparkle {
        font-size: 1.2rem;
    }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animate.css classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}
.hero-text-animate.delay-3 { animation-delay: 0.9s; }

/* Gallery Styles */
.gallery {
    padding: 60px 0;
    background: #000;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(255, 20, 147, 0.4);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 20)); /* Adjust based on number of items */
    }
}

/* Pause animation on hover */
.gallery:hover .gallery-track {
    animation-play-state: paused;
}

/* Video Carousel Section */
.video-carousel-section {
    background-color: var(--pink-dark);
    padding: 6rem 0 4rem;
    position: relative;
    padding: 0 50px;
}

.video-carousel-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.video-carousel-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Edge */
}

.video-carousel-item {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-carousel-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.video-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 20, 147, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-carousel-nav:hover {
    background: var(--pink-primary);
    transform: translateY(-50%) scale(1.1);
}

.video-carousel-prev {
    left: 10px;
}

.video-carousel-next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .video-carousel-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .video-carousel-item {
        flex: 0 0 100%;
    }
    
    .video-carousel-container {
        padding: 0 30px;
    }
    
    .video-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    background-color: #000;
    max-height: 1000px;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-image {
    height: 100%;
    min-height: 100vh;
}

.hero-image {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 10s ease-in-out;
}

.carousel-item.active .hero-image {
    transform: scale(1.1);
    animation: zoomInOut 15s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    z-index: 2;
}

.carousel-indicators {
    z-index: 2;
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--pink-primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-carousel,
    .hero-image {
        height: 80vh;
        min-height: 500px;
    }
    
    .display-1 {
        font-size: 3.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel,
    .hero-image {
        height: 70vh;
        min-height: 400px;
    }
    
    .display-1 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

.hero-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    animation: zoomIn 15s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-carousel h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-carousel h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-carousel .lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-carousel .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-carousel .btn-pink {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
    color: white;
}

.hero-carousel .btn-pink:hover {
    background-color: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.hero-carousel .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 100%, 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
}

/* Typing Animation */
.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(10) 1s forwards;
    color: var(--pink-primary);
}

@keyframes typing {
    to { width: 100%; }
}

.blink-cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    opacity: 0;
    animation-delay: 3s;
}

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

/* Animation Delays */
.animate__delay-1s {
    animation-delay: 0.5s !important;
}

.animate__delay-1-5s {
    animation-delay: 1s !important;
}

.animate__delay-2s {
    animation-delay: 1.5s !important;
}

/* Navigation */
.navbar {
    background: #000000 !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .text-pink {
    color: var(--pink-primary) !important;
    margin: 0 2px;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 5px 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--pink-primary);
}

.navbar .nav-link.active {
    color: var(--pink-primary);
    font-weight: 600;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 900;
    white-space: nowrap;
}

.navbar-brand .text-white {
    color: #ffffff !important;
}

.navbar-brand .text-red {
    color: #ff0000 !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--pink-primary) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--pink-primary);
    transition: all 0.3s ease;
}

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

/* Text Colors */
.text-pink {
    color: var(--pink-primary) !important;
}

.text-white {
    color: #ffffff !important;
}

.text-red {
    color: #ff0000 !important;
}

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

/* Hero Carousel Styles */
.hero-carousel {
    margin-top: 76px;
    height: 80vh; /* Reduced from 100vh to 80vh */
    min-height: 600px; /* Added minimum height */
    position: relative;
    overflow: hidden;
}

.carousel-inner,
.carousel-item,
.video-container {
    height: 100%;
}

.video-container video,
.video-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to show full video */
    background-color: #000; /* Add black background for letterboxing */
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Add some padding */
    text-align: center;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Page Hero Styles */
.page-hero {
    margin-top: 76px;
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    height: 100%;
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Placeholder Styles */
.video-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 20, 147, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.video-overlay-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 20, 147, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .video-overlay-small {
    opacity: 1;
}

/* Auto Video Section */
.auto-video-section {
    background: rgba(255, 20, 147, 0.8);
    backdrop-filter: blur(5px);
}

/* Endless Gallery Styles */
.endless-gallery {
    background: var(--pink-secondary);
    padding: 4rem 0;
}

.gallery-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gallery-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(300px * 12); /* 6 images * 2 sets */
}

.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    margin-right: 20px;
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 120px)); /* Move by 6 images + margins */
    }
}

/* Card Styles */
.lens-card,
.brand-showcase,
.wedding-showcase,
.festival-card,
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    background: var(--pink-light);
}

.lens-card:hover,
.brand-showcase:hover,
.wedding-showcase:hover,
.festival-card:hover,
.product-card:hover {
    transform: translateY(-10px);
}

.card-overlay,
.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lens-card:hover .card-overlay,
.brand-showcase:hover .showcase-overlay {
    transform: translateY(0);
}

.card-body {
    padding: 1rem;
    background: var(--pink-light);
}

/* Footer Styles */
.footer {
    background: var(--pink-dark);
    margin-top: 4rem;
}

.footer h5 {
    color: var(--pink-primary);
    font-weight: 700;
}

/* Footer Links */
.footer-link {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--pink-primary) !important;
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: var(--pink-primary);
    transition: all 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
    left: 0;
}

/* Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: var(--pink-primary);
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

/* Instagram specific hover */
.social-link:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* TikTok specific hover */
.social-link:nth-child(2):hover {
    background: #000000;
}

/* Facebook specific hover */
.social-link:nth-child(3):hover {
    background: #1877f2;
}

/* Twitter specific hover */
.social-link:nth-child(4):hover {
    background: #1da1f2;
}

/* YouTube specific hover */
.social-link:nth-child(5):hover {
    background: #ff0000;
}

/* Contact Links */
.contact-info a {
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--pink-primary) !important;
    transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        justify-content: center !important;
    }
    
    .social-links {
        justify-content: center !important;
        margin-top: 1rem;
    }
    
    .contact-info {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-info a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin: 1rem 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.8rem;
        margin: 0 0.2rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem !important;
    }
    
    .display-2 {
        font-size: 2.5rem !important;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .hero-carousel {
        height: 70vh;
    }
    
    .page-hero {
        height: 50vh;
    }
    
    .gallery-item {
        width: 250px;
        height: 150px;
    }
    
    .gallery-track {
        width: calc(250px * 12);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        margin: 0.2rem 0;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 6 - 120px));
        }
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .display-1 {
        font-size: 2.5rem !important;
    }
    
    .gallery-item {
        width: 200px;
        height: 120px;
    }
    
    .gallery-track {
        width: calc(200px * 12);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 6 - 120px));
        }
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pink-light);
}

::-webkit-scrollbar-thumb {
    background: var(--pink-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-secondary);
}
