/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New Bold', monospace;
    background-color: white;
    color: black;
    line-height: 1.4;
}

/* ------------------ */
/* Time Ticker Styles */
.ticker-container {
    width: 100%;
    background-color: white;
    border-bottom: 1px solid black;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll 30s linear infinite; /* slower for readability */
}

.ticker-item {
    margin-right: 50px;  /* 👈 adjust gap here */
    white-space: nowrap;
    font-size: 16px;
    font-weight: normal;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* only move halfway (one copy) */
}

@media (max-width: 480px) {
    .ticker-content {
        font-size: 12px;
        letter-spacing: 0.5px;
        animation-duration: 30s;
    }
}

/* ------------- */
/* Main Container */
.container {
    max-width: 100%;        /* remove 1200px limit */
    margin: 0;              /* remove auto centering */
    padding: 0 16px;        /* optional padding */
}

/* ----------------- */
/* Company Info Area */
.company-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
}

@media (min-width: 1024px) {
    .company-section {
        flex-direction: row;
        align-items: flex-start;
    }
}

.company-info {
    flex: 1;
}

.company-info h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 8px;
}

.vat-number {
    font-size: 16px;
    margin-bottom: 16px;
}

/* ------------------- */
/* Navigation Styling  */
.navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 24px;
}

.navigation li {
    padding-bottom: 4px;
}

.navigation li:last-child {
    border-bottom: none;
}

.navigation a {
    color: #0000ff;
    text-decoration: none;
    display: block;
}

.navigation a:hover {
    text-decoration: underline;
}

/* ------------------ */
/* Image Placeholder */
.image-section {
    flex: 1;
    display: flex;
    justify-content: center; /* this centers the child horizontally */
    align-items: center;
}


@media (min-width: 1024px) {
    .image-section {
        justify-content: flex-end;
    }
}

.artistic-placeholder {
    width: 250px;
    height: 250px;
    background-image: url('Images/Basic\ logo\ for\ Webpage.png');
    background-size: contain;      /* fit div */
    background-position: center; /* center image */
    background-repeat: no-repeat; /* prevent tiling */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: 16px;
}

/* --------- */
/* Divider   */
.divider {
    border: none;
    border-top: 1px solid black;
    margin: 32px 0;
}

/* ----------------- */
/* Product Table     */
.table-section {
    padding: 32px 0;
    overflow-x: auto;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 20px;
    min-width: 800px;
}

.product-table th {
    background-color: #e6e6e6;
    border: 1px solid black;
    padding: 16px;
    text-align: left;
    font-weight: normal;
}

.product-table td {
    border: 1px solid black;
    padding: 16px;
}

.product-table tr:nth-child(even) {
    background-color: #fafafa;
}

.product-name {
    font-weight: normal;
}

.link {
    color: #0000ff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* ------------------- */
/* Responsive Design   */

/* Mobile/iPhone: shrink table so it fits on screen */
@media (max-width: 480px) {
  .table-section {
    overflow-x: hidden;   /* disable horizontal scroll */
  }

  .product-table {
    width: 100%;          /* force table to fit screen width */
    min-width: unset;     /* remove min-width constraint */
    table-layout: fixed;  /* columns share available space */
    font-size: 12px;      /* shrink font size */
  }

  .product-table th,
  .product-table td {
    padding: 6px;         /* reduce padding */
    word-wrap: break-word; /* wrap text if needed */
    text-align: left;

  }

  .artistic-placeholder {
        width: 180px;
        height: 112px;
        font-size: 12px;
    }
  }

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    .company-section {
        padding: 16px 0;
        gap: 16px;
    }
    
    .artistic-placeholder {
        width: 200px;
        height: 125px;
    }
    
    .product-table {
        font-size: 12px;
    }
    
    .product-table th,
    .product-table td {
        padding: 10px;
    }

.carousel-container{
    width: 60%;
    margin: auto;
}

.carousel-slider{
    display: flex;
}
}
