@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat';
    scroll-behavior: smooth;
}



h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Montserrat';
}




.text-stroke {
    -webkit-text-stroke: 1px white;
    color: transparent;
}

.hero-text {
    background: linear-gradient(90deg, #ffffff, #e5e5e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 100;
    font-style: normal;
    font-size: 45px;
}

.gradient-bg {
    background: linear-gradient(135deg, #000000 0%, #2d3436 100%);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gallery-item {
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: #ffffff;
}

/* .nav-link {
    position: relative;
} */

/* .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
} */

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

/* New styles for pricing section */
.pricing-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.popular-plan {
    position: relative;
    border: 2px solid #000;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.feature-item {
    position: relative;
    padding-left: 25px;
}

.feature-item:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #000;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 3.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

.header-scroll {
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

/* Optimize animations for mobile */
@media (max-width: 640px) {
    .animate-fade-in-up {
        animation: fade-in-up 0.6s ease-out forwards;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

/* Count-up animation */
@keyframes countup {
    from {
        content: "0";
    }

    to {
        content: attr(data-target);
    }
}

.animate-countup {
    font-variant-numeric: tabular-nums;
}



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

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

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

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

@keyframes scaleX {
    from { 
        transform: scaleX(0);
    }
    to { 
        transform: scaleX(1);
    }
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-x {
    animation: scaleX 0.8s ease-out forwards;
    transform-origin: center;
}

.delay-100 {
    animation-delay: 0.1s;
}

/* Hover effects */
.transform {
    transition: transform 0.3s ease-out;
}


.instagram-feed .item {
    padding: 0px; /* Spacing between items */
}

.instagram-feed .owl-stage {
    display: flex;
    align-items: center;
}

.instagram-feed .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.instagram-feed .owl-prev,
.instagram-feed .owl-next {
    pointer-events: auto;
    background: rgba(0,0,0,0.5) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px !important;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.instagram-feed .owl-prev:hover,
.instagram-feed .owl-next:hover {
    background: rgba(251, 191, 36, 0.8) !important;
}

.instagram-feed .owl-dots {
    margin-top: 0px;
}

.instagram-feed .owl-dot span {
    background: #4B5563 !important;
}

.instagram-feed .owl-dot.active span {
    background: #F59E0B !important;
}



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

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

@keyframes scaleX {
    from { 
        transform: scaleX(0);
    }
    to { 
        transform: scaleX(1);
    }
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-x {
    animation: scaleX 0.8s ease-out forwards;
    transform-origin: center;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.nav-link {
    @apply text-white hover:text-gray-200 transition-colors font-medium text-sm uppercase tracking-wider;
}
.nav-underline {
    @apply absolute bottom-0 left-0 w-0 h-0.5 bg-white transition-all duration-300 group-hover:w-full;
}
.mobile-nav-link {
    @apply block px-4 py-3 text-white hover:bg-white/10 rounded-md transition-colors font-medium;
}

.mobile-menu {
    transition: all 0.3s ease;
}

/* Scrolled state */
nav.scrolled {
    background-color: rgba(118, 7, 76, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Cart badge */
.cart-badge {
    font-size: 0.6rem;
    line-height: 1;
}