body {
    background: #fafafa;
    color: #2a2a2a;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.main-container {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.box-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    opacity: 0.1;
}

.header-section {
    background: #ffffff;
    border-bottom: 2px solid #2a2a2a;
    padding: 40px 30px;
    position: relative;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ccc, transparent);
}

.customer-avatar {
    width: 100px;
    height: 100px;
    border: 3px solid #2a2a2a;
    filter: grayscale(100%) contrast(120%);
    object-fit: cover;
    transition: filter 0.3s ease;
}

.customer-avatar:hover {
    filter: grayscale(70%) contrast(110%);
}

.header-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0;
    color: #2a2a2a;
}

.timestamp {
    background: #2a2a2a;
    color: #ffffff;
    padding: 8px 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2a2a2a;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #2a2a2a;
}

.description-card {
    background: transparent;
    border: 2px solid #e0e0e0;
    border-left: 6px solid #2a2a2a;
    padding: 30px;
    position: relative;
    transition: border-color 0.3s ease;
}

.description-card:hover {
    border-color: #999;
}

.description-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    font-family: 'Poppins', sans-serif;
    color: #2a2a2a;
    opacity: 0.1;
}

.description-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.badge-custom {
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    margin: 5px 5px 5px 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    display: inline-block;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: #2a2a2a;
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: contrast(120%);
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: contrast(110%);
}

.gallery-item::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(42, 42, 42, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.link-card {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 42, 42, 0.03), transparent);
    transition: left 0.5s ease;
}

.link-card:hover {
    border-color: #2a2a2a;
    color: #2a2a2a;
    text-decoration: none;
    transform: translateX(10px);
}

.link-card:hover::before {
    left: 100%;
}

.link-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.link-url {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-item {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #999;
    background: rgba(42, 42, 42, 0.02);
}

.info-label {
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2a2a2a;
}

.info-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: #999;
}

.btn-artsy {
    background: transparent;
    border: 2px solid #2a2a2a;
    color: #2a2a2a;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.btn-artsy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-artsy:hover {
    color: #ffffff;
    border-color: #2a2a2a;
}

.btn-artsy:hover::before {
    left: 0;
}

.btn-artsy span {
    position: relative;
    z-index: 1;
}

a.btn.btn-artsy {
    background: transparent;
    border: 2px solid #2a2a2a;
    color: #2a2a2a;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 10px;
    text-decoration: none; /* Remove default link underline */
    display: inline-block; /* Ensure proper box model behavior */
}

a.btn.btn-artsy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    transition: left 0.3s ease;
    z-index: 0;
}

a.btn.btn-artsy:hover {
    color: #ffffff;
    border-color: #2a2a2a;
    text-decoration: none; /* Ensure no underline on hover */
}

a.btn.btn-artsy:hover::before {
    left: 0;
}

a.btn.btn-artsy span {
    position: relative;
    z-index: 1;
}

/* Optional: Handle focus states for accessibility */
a.btn.btn-artsy:focus {
    outline: 2px solid #2a2a2a;
    outline-offset: 2px;
}

.decorative-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 40px 0;
}

.accent-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: #666;
}

/* Navbar -----------------------*/
.artsy-navbar {
    background: #ffffff;
    border-bottom: 2px solid #2a2a2a;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.artsy-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    opacity: 0.1;
}

.artsy-navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ccc, transparent);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #2a2a2a !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2a2a2a;
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.brand-accent {
    background: #2a2a2a;
    color: #ffffff;
    padding: 4px 8px;
    margin-left: 10px;
    font-size: 0.7rem;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #2a2a2a !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    padding: 20px 25px !important;
    transition: all 0.3s ease;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 42, 42, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.navbar-nav .nav-link:hover {
    color: #2a2a2a !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

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

.navbar-nav .nav-link.active {
    color: #2a2a2a !important;
    font-weight: 600;
}

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

.nav-icon {
    margin-right: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.navbar-nav .nav-link:hover .nav-icon {
    opacity: 1;
}

.navbar-toggler {
    border: 2px solid #2a2a2a;
    padding: 8px 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    transition: left 0.3s ease;
    z-index: 0;
}

.navbar-toggler:hover::before {
    left: 0;
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-toggler-icon {
    position: relative;
    z-index: 1;
    transition: filter 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-artsy-nav {
    background: transparent;
    border: 2px solid #2a2a2a;
    color: #2a2a2a;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.btn-artsy-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-artsy-nav:hover {
    color: #ffffff;
    border-color: #2a2a2a;
}

.btn-artsy-nav:hover::before {
    left: 0;
}

.btn-artsy-nav span {
    position: relative;
    z-index: 1;
}

.decorative-accent {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    opacity: 0.2;
}

.navbar-collapse {
    position: relative;
}

.navbar-collapse.show {
    border-top: 1px solid #e0e0e0;
    margin-top: 15px;
    padding-top: 15px;
}

/*Dropdown navbar ----------*/
.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: 0.1em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.artsy-dropdown {
    background: #ffffff;
    border: 2px solid #2a2a2a;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    margin-top: 10px;
    min-width: 280px;
    position: relative;
}

.artsy-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    opacity: 0.1;
}

.artsy-dropdown .dropdown-item {
    color: #2a2a2a;
    padding: 12px 25px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artsy-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 42, 42, 0.05), transparent);
    transition: left 0.4s ease;
}

.artsy-dropdown .dropdown-item:hover {
    background: rgba(42, 42, 42, 0.03);
    color: #2a2a2a;
    border-left-color: #2a2a2a;
    transform: translateX(5px);
}

.artsy-dropdown .dropdown-item:hover::before {
    left: 100%;
}

.artsy-dropdown .dropdown-item.text-danger {
    color: #dc3545 !important;
}

.artsy-dropdown .dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.05);
    border-left-color: #dc3545;
}

.artsy-dropdown .dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 15px 0;
    opacity: 0.5;
}

.artsy-dropdown .badge {
    font-size: 0.65rem;
    padding: 3px 6px;
}

.decorative-accent {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    opacity: 0.2;
}

.navbar-collapse {
    position: relative;
}

.navbar-collapse.show {
    border-top: 1px solid #e0e0e0;
    margin-top: 15px;
    padding-top: 15px;
}


/*Start page----*/

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin: 20px 0 40px 0;
    color: #666;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 50px;
    color: #555;
}

.img-force-fit {
    object-fit: cover;
    object-position: center;
}

/*@media (max-width: 768px) {*/
/*    .header-title {*/
/*        font-size: 2rem;*/
/*    }*/

/*    .section-title {*/
/*        font-size: 1.5rem;*/
/*    }*/

/*    .gallery-container {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/