/* ===== ITEM DETAIL PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 40px;
    background-color: var(--black-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li::after {
    content: '›';
    margin-left: 10px;
    color: var(--gold);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.breadcrumb .current {
    color: var(--gray);
}

/* Item Header */
.item-detail-container {
    padding: 0 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.item-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid var(--gold-dark);
    margin-bottom: 40px;
}

.item-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.model-name {
    color: var(--white);
    background-color: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
}

.item-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery & Specifications Layout - FIXED HEIGHTS */
.gallery-specs-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
    min-height: 600px; /* Fixed minimum height */
}

/* Gallery Container - FIXED HEIGHT */
.gallery-container {
    background-color: var(--black-light);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 600px; /* Match section height */
}

/* Main Image Container - FIXED HEIGHT */
.main-image-container {
    position: relative;
    height: 400px; /* Fixed height */
    min-height: 400px; /* Prevents collapse */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: zoom-in;
    flex-shrink: 0; /* Prevents shrinking */
    background-color: #000; /* Black background for consistency */
}

/* Main Image - Maintain aspect ratio within fixed container */
.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show entire image without cropping */
    background-color: #000;
    transition: opacity 0.3s ease; /* Smooth fade between images */
}

.image-zoom {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

/* Thumbnail Gallery - FIXED HEIGHT */
.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    min-height: 80px; /* Fixed thumbnail area height */
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: #000;
    flex-shrink: 0; /* Prevents thumbnail shrinking */
}

.thumbnail:hover {
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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

.thumbnail:hover img {
    transform: scale(1.1);
}

/* Gallery Controls - FIXED HEIGHT */
.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    margin-top: auto;
    height: 60px; /* Fixed height */
    flex-shrink: 0; /* Prevents shrinking */
}

.gallery-btn {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevents button shrinking */
}

.gallery-btn:hover {
    background-color: var(--gold-light);
    transform: scale(1.1);
}

.image-counter {
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0; /* Prevents counter shrinking */
}

/* Specifications Sidebar - FIXED HEIGHT */
.specs-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.specs-table-container {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 600px; /* Match gallery height */
    overflow: hidden; /* Prevents content overflow */
}

.specs-table-container h3 {
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    text-align: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents title from affecting layout */
}

/* Compact Specifications Table - SCROLLABLE CONTENT */
.specs-table-compact {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    flex: 1;
    overflow-y: auto; /* Allows scrolling if content is too tall */
    max-height: 450px; /* Limits table height */
}

.specs-table-compact::-webkit-scrollbar {
    width: 6px;
}

.specs-table-compact::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

.specs-table-compact::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.specs-table-compact tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.specs-table-compact tr:last-child {
    border-bottom: none;
}

.spec-label, .spec-value {
    padding: 12px 15px;
    vertical-align: top;
    font-size: 0.9rem;
    min-height: 44px; /* Fixed row height */
    box-sizing: border-box;
}

.spec-label {
    color: var(--white);
    font-weight: 600;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    background-color: rgba(26, 26, 26, 0.5);
    width: 45%;
}

.spec-value {
    color: var(--gold-light);
    width: 55%;
}

.editable {
    color: var(--gold-light);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 2px 0;
    cursor: text;
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 20px; /* Prevents height changes when editing */
}

.editable:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-bottom-style: solid;
}

.specs-note {
    color: var(--gray);
    font-style: italic;
    font-size: 0.85rem;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: auto;
    flex-shrink: 0; /* Keeps note at bottom */
}

/* Action Buttons Section */
.action-buttons-section {
    margin-bottom: 50px;
    text-align: center;
}

.action-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-book-now {
    background-color: var(--gold);
    color: var(--black);
    padding: 18px 35px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 180px;
    height: 56px; /* Fixed button height */
    box-sizing: border-box;
}

.btn-book-now:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-inquire {
    background-color: transparent;
    color: var(--gold);
    padding: 18px 35px;
    border-radius: 30px;
    border: 2px solid var(--gold);
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 180px;
    height: 56px; /* Fixed button height */
    box-sizing: border-box;
}

.btn-inquire:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-call {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 18px 35px;
    border-radius: 30px;
    border: 2px solid var(--gold);
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 180px;
    height: 56px; /* Fixed button height */
    box-sizing: border-box;
}

.btn-call:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* Description Section */
.description-section {
    background-color: var(--black-light);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.description-section h2 {
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
}

.editable-content {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.editable-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray-light);
}

.editable-content strong {
    color: var(--white);
}

/* Table Sections */
.table-section {
    margin-bottom: 50px;
}

.table-section h2 {
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
}

.table-container {
    background-color: var(--black-light);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow-x: auto;
}

/* Rates Table */
.rates-table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table thead {
    background-color: var(--gold);
    color: var(--black);
}

.rates-table th {
    padding: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    height: 60px; /* Fixed header height */
    box-sizing: border-box;
}

.rates-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: background-color 0.3s ease;
    height: 56px; /* Fixed row height */
}

.rates-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.rates-table td {
    padding: 15px 20px;
    color: var(--gray-light);
    box-sizing: border-box;
    vertical-align: middle;
}

.rates-table td:first-child {
    color: var(--white);
    font-weight: 600;
}

.rates-table td:nth-child(2) {
    color: var(--gold-light);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Related Items */
.related-items {
    margin-top: 60px;
}

.related-items h2 {
    color: var(--gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.related-item {
    background-color: var(--black-light);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 200px; /* Fixed related item height */
    display: flex;
    flex-direction: column;
}

.related-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-item h4 {
    padding: 15px;
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Updated Footer */
.footer-bottom {
    padding: 25px;
    background-color: #000;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .gallery-specs-section {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
        min-height: 550px;
    }
    
    .gallery-container,
    .specs-table-container {
        min-height: 550px;
    }
    
    .main-image-container {
        height: 350px;
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    /* Tablet: Stack gallery and specs */
    .gallery-specs-section {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto; /* Remove fixed height on mobile */
    }
    
    .gallery-container,
    .specs-table-container {
        min-height: auto; /* Remove fixed height on mobile */
        height: auto;
    }
    
    .specs-table-container {
        max-width: 100%;
    }
    
    .item-detail-container {
        padding: 0 30px 40px;
    }
    
    .item-title {
        font-size: 2.5rem;
    }
    
    .main-image-container {
        height: 400px;
        min-height: 400px;
    }
    
    .specs-table-compact {
        max-height: none; /* Remove scroll on mobile */
        overflow-y: visible;
    }
    
    .action-buttons-container {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 15px 20px;
    }
    
    .item-detail-container {
        padding: 0 20px 30px;
    }
    
    .item-header {
        padding: 30px 0;
    }
    
    .item-title {
        font-size: 2rem;
    }
    
    .item-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-container {
        padding: 15px;
    }
    
    .main-image-container {
        height: 300px;
        min-height: 300px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-controls {
        padding: 10px;
        gap: 15px;
        height: 50px;
    }
    
    .action-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-book-now,
    .btn-inquire,
    .btn-call {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        height: 52px;
    }
    
    .description-section,
    .table-container {
        padding: 20px;
    }
    
    .spec-label, .spec-value {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .rates-table th {
        height: 50px;
    }
    
    .rates-table tbody tr {
        height: 48px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        padding: 10px 15px;
    }
    
    .breadcrumb li {
        font-size: 0.8rem;
    }
    
    .item-detail-container {
        padding: 0 15px 20px;
    }
    
    .item-title {
        font-size: 1.7rem;
    }
    
    .item-subtitle {
        font-size: 1rem;
    }
    
    .main-image-container {
        height: 250px;
        min-height: 250px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-controls {
        flex-wrap: wrap;
    }
    
    .specs-table-container {
        padding: 20px;
    }
    
    .specs-table-container h3 {
        font-size: 1.3rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-item {
        height: 180px;
    }
    
    .related-item img {
        height: 120px;
    }
    
    .related-item h4 {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .main-image-container {
        height: 200px;
        min-height: 200px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .spec-label, .spec-value {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-height: 36px;
    }
    
    .rates-table {
        font-size: 0.85rem;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 10px 12px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .action-buttons-section,
    .gallery-controls,
    .thumbnail-gallery,
    .related-items {
        display: none !important;
    }
    
    .item-detail-container {
        padding: 0 !important;
    }
    
    .gallery-specs-section {
        display: block;
        min-height: auto !important;
    }
    
    .main-image-container {
        height: 300px !important;
        min-height: 300px !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .specs-table-container {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #000 !important;
        min-height: auto !important;
    }
    
    table {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ===== ENHANCED LIGHTBOX MODAL ===== */

.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: block;
    opacity: 1;
}

/* Darkened Overlay Background */
.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92); /* Dark semi-transparent background */
    backdrop-filter: blur(8px); /* Optional blur effect */
}

/* Lightbox Content Container */
.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 2;
}

/* Lightbox Image Container */
.lightbox-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Lightbox Image */
.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background-color: #000;
    animation: lightboxImageFade 0.4s ease;
}

@keyframes lightboxImageFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Lightbox Caption */
.lightbox-caption {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    max-width: 80%;
}

/* Lightbox Counter */
.lightbox-counter {
    color: var(--gray-light);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    text-align: center;
    margin-top: 15px;
}

/* Lightbox Close Button (X icon) */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--gold);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.lightbox-close:hover {
    background-color: var(--gold-light);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--gold);
    color: var(--black);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    opacity: 0.9;
}

.lightbox-nav:hover {
    background-color: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Loading Indicator */
.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 2rem;
}

/* Make main image clickable */
.main-image-container {
    cursor: pointer;
}

/* Gallery thumbnail hover effect for lightbox preview */
.thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Responsive Lightbox */
@media (max-width: 992px) {
    .lightbox-content {
        padding: 20px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .lightbox-counter {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-content {
        padding: 10px;
    }
}

/* Keyboard focus styles for accessibility */
.lightbox-close:focus,
.lightbox-nav:focus {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

/* Prevent body scrolling when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* Added fro dropping the top head in mobile - 30 Jan2026 */

@media (max-width: 768px) {
    .main-header {
        position: fixed;
        width: 100%;
        top: 0;
        transition: transform 0.3s ease;
    }
    
    /* Collapse header on scroll */
    .main-header.hidden {
        transform: translateY(-100%);
    }
    
    /* Add padding to main content to account for fixed header */
    .main-content {
        padding-top: 120px; /* Adjust based on header height */
    }
}