:root {
    --primary-color: #E56734;
    --secondary-color: white;
    --accent-color: #f4f4f4;
    --text-color: #333;
    --navbar-height: 90px;
    /* Define navbar height variable */
}

body {
    /* Add padding to the top of the body equal to navbar height */
    padding-top: var(--navbar-height);
}

/* Navbar Base Styling */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%) !important;
    box-shadow: 0 4px 20px rgba(229, 103, 52, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
    font-weight: 800;
    height: var(--navbar-height);
    /* Set fixed height for navbar */
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 6px 30px rgba(229, 103, 52, 0.15);
}

/* Brand Logo */
.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 10px;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #f0824a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Active Link */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(229, 103, 52, 0.25);
}

.navbar-toggler:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E56734' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--secondary-color);
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(229, 103, 52, 0.15);
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: var(--accent-color);
        transform: translateX(10px);
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link:hover::after {
        content: '→';
        position: absolute;
        right: 20px;
        color: var(--primary-color);
        font-weight: bold;
    }

    /* Adjust body padding for mobile */
    body {
        padding-top: 80px;
    }
}

/* Container Responsive */
.navbar .container {
    max-width: 1200px;
    padding: 0 20px;
}

/* Smooth Scroll Effect */
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Animation for navbar items */
.navbar-nav .nav-item {
    animation: fadeInDown 0.6s ease forwards;
    opacity: 0;
}

.navbar-nav .nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.navbar-nav .nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.navbar-nav .nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.navbar-nav .nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.navbar-nav .nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for entire navbar */
.navbar:hover {
    box-shadow: 0 8px 35px rgba(229, 103, 52, 0.2);
}

/* Brand hover effect */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 103, 52, 0.1), transparent);
    transition: left 0.6s ease;
}

.navbar-brand:hover::before {
    left: 100%;
}

.about {
    background-image: linear-gradient(rgba(255, 255, 255, 0.84), rgba(244, 245, 244, 0.84)), url(../img/pexels-photo-911738.webp);

    background-size: cover;
    background-repeat: no-repeat;
}

.collocation{
    background-color: #5a1e33;
}

.photo-gallery {
    display: flex;
    gap: 10px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 33%;
    max-width: 100%;
}

.photo img {

    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;

}

@media(max-width:380px) {
    .photo-gallery {
        flex-direction: column;
    }
}

.textmi {
    margin-top: 20px;
    margin-bottom: 30px;
}


.social-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-info {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-weight: bold;
}

.username {
    font-weight: 600;
    color: #262626;
    margin: 0;
}

.more-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #8e8e8e;
    cursor: pointer;
}

.post-content {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.post-1 {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.post-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    position: relative;
}

.post-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.jabra-badge {
    background: #e84c77;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.connect-badge {
    background: #c41d54;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.post-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.yellow-bars {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.yellow-bar {
    width: 60px;
    height: 8px;
    background: #e84c77;
    border-radius: 4px;
}

.headphones-icon {
    font-size: 80px;
    margin: 20px 0;
    opacity: 0.8;
}

.waveform {
    display: flex;
    align-items: end;
    gap: 3px;
    margin: 20px 0;
}

.wave-bar {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    width: 3px;
    height: 20px;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    width: 3px;
    height: 35px;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    width: 3px;
    height: 25px;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    width: 3px;
    height: 40px;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    width: 3px;
    height: 30px;
    animation-delay: 0.4s;
}

.wave-bar:nth-child(6) {
    width: 3px;
    height: 45px;
    animation-delay: 0.5s;
}

.wave-bar:nth-child(7) {
    width: 3px;
    height: 25px;
    animation-delay: 0.6s;
}

.wave-bar:nth-child(8) {
    width: 3px;
    height: 35px;
    animation-delay: 0.7s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.product-boxes {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.product-box {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-actions {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #262626;
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-btn:hover {
    color: #e91e63;
}

.action-btn.liked {
    color: #e91e63;
}

.bookmark-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #262626;
    cursor: pointer;
    transition: color 0.3s ease;
}

.bookmark-btn:hover {
    color: #ffd700;
}

.dots-indicator {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: white;
}

@media (max-width: 768px) {
    .social-card {
        margin-bottom: 20px;
    }

    .post-content {
        height: 350px;
    }

    .post-title {
        font-size: 20px;
    }
}

.mask {
    height: 660px;
    overflow: hidden;
    /* border-bottom: 8px solid; */
}

.phone-mockup {
    width: 500px;
    height: 812px;
    background: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0px auto 5px;

}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: #333;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.notch::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
}

.notch::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 4px;
    background: #666;
    border-radius: 2px;
}

.profile-content {
    padding: 50px 20px 20px;
    height: 100%;
    overflow-y: auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    padding: 3px;
    margin: 0 20px 5px;
    /* position: relatsive; */
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.username {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 0px;
}

.categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 10px;
}

.category {
    text-align: center;
    flex: 1;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: transform 0.2s;
}

.category-icon:hover {
    transform: scale(1.1);
}

.category-label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 20px;
}

.post-item {
    aspect-ratio: 1;
    /* background: #e9ecef; */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}

.post-item:hover {
    transform: scale(1.02);
}

.post-item img {
    width: 90%;
    height: 80%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 215, 0, 0.9);
    color: #333;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 90vw;
        height: 90vh;
        max-width: 375px;
    }
}

@media (max-width: 1120px) {
    .phone-mockup {
        width: 90vw;
        height: 90vh;
        max-width: 375px;
    }
}

@media (max-width: 815px) {
    .phone-mockup {
        width: 90vw;
        height: 90vh;
        max-width: 375px;
    }
}

@media (max-width: 818px) {
    .phone-mockup {
        width: 90vw;
        height: 90vh;
        max-width: 375px;
    }
}

@media (max-width: 807px) {
    .phone-mockup {
        width: 90vw;
        height: 90vh;
        max-width: 375px;
    }
}