*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
}

html,body{
    width:100%;
    overflow-x:hidden;
    background:#f5f9ff;
}

:root{
    --primary-color:#071a2d;
    --blue-color:#00b4ff;
    --secondary-color:#f3961c;
    --white:#fff;
}

header{
    background:var(--primary-color);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
    position:relative;
}

.corner-logo{
    height:60px;
}

.nav-menu{
    display:flex;
    list-style:none;
    gap:20px;
}

.nav-menu a{
    text-decoration:none;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s;
}

.nav-menu a:hover{
    background:var(--blue-color);
    transform:translateY(-3px);
}

.language-btn{
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.2);
}

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:white;
}

.fish-hero{
    height:55vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;

    background:
    linear-gradient(rgba(7,26,45,0.8),rgba(7,26,45,0.8)),
    url("pawel-czerwinski-b5D7zjvY184-unsplash.jpg");

    background-size:cover;
    background-position:center;
}

.fish-hero h1{
    font-size:3rem;
    margin-bottom:10px;
}

.search-box{
    max-width:500px;
    margin:40px auto;
    position:relative;
}

.search-box input{
    width:100%;
    padding:16px 50px 16px 20px;
    border:none;
    border-radius:50px;
    font-size:1rem;
    outline:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.search-box i{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    color:var(--blue-color);
}

.fish-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    padding:50px 8%;
    background:
        radial-gradient(circle at 12% 8%, rgba(0,180,255,0.16), transparent 45%),
        radial-gradient(circle at 90% 90%, rgba(0,180,255,0.12), transparent 45%);
}

.fish-card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.fish-card:hover{
    transform:translateY(-8px);
}

.fish-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.fish-info{
    padding:20px;
}

.fish-info h3{
    margin-bottom:10px;
    color:#071a2d;
}

.fish-info p{
    color:#555;
    margin-bottom:10px;
    line-height:1.5;
}

.fish-stock{
    font-weight:bold;
    color:#071a2d;
}

.fish-info span{
    display:inline-block;
    margin-top:10px;
    background:var(--blue-color);
    color:white;
    padding:8px 14px;
    border-radius:20px;
    font-size:0.85rem;
}

.whatsapp-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:14px;
    padding:10px 16px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-size:0.9rem;
    font-weight:bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

.whatsapp-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:45%;
    height:100%;
    background:linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform:skewX(-20deg);
    pointer-events:none;
    transition:left 0.65s ease;
}

.whatsapp-btn:hover::before{
    left:125%;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 6px 16px rgba(37,211,102,0.35);
}

.whatsapp-btn i{
    font-size:1.1rem;
    transition:transform 0.3s ease;
}

.whatsapp-btn:hover i{
    transform:translateX(2px);
}

.wholesale-section{
    padding:70px 8%;
    text-align:center;
    background:var(--primary-color);
    color:white;
}

.wholesale-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 22px;
    background:var(--blue-color);
    color:white;
    text-decoration:none;
    border-radius:8px;
    position:relative;
    overflow:hidden;
    isolation:isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.wholesale-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:45%;
    height:100%;
    background:linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform:skewX(-20deg);
    pointer-events:none;
    transition:left 0.65s ease;
}

.wholesale-btn:hover::before{
    left:125%;
}

.wholesale-btn:hover{
    background:#0095d4;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 8px 20px rgba(0,180,255,0.35);
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-btn, .whatsapp-btn::before, .whatsapp-btn i,
    .wholesale-btn, .wholesale-btn::before {
        transition: none !important;
    }
}

.footer {
    background: #04111f;
    color: white;
    padding-top: 60px;
    margin-top: 0px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section a {
    word-break: break-word;
}

.footer-section h2,
.footer-section h3 {
    color: var(--blue-color);
    margin-bottom: 15px;
    text-align: left;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    word-break: break-word;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--blue-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
   justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--blue-color);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.email {
    white-space: nowrap;
}

.location{
   white-space: nowrap;
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        padding: 0 10px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding: 15px;
    }
}

@media (max-width: 768px) {

    .footer-section h2,
    .footer-section h3 {
        text-align: center;
    }

}

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}


@media(max-width:768px){

    .nav-menu{
        display:none;
        position:absolute;
        top:70px;
        right:0;
        flex-direction:column;
        background:#071a2d;
        width:200px;
        padding:15px;
        z-index:1000;
    }

    .nav-menu.active{
        display:flex;
    }

    .hamburger{
        display:flex;
    }

    .fish-hero h1{
        font-size:2.2rem;
    }
}

/* Windows XP Preloader Styling */
.xp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* XP Boot screen was black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Tahoma", "Verdana", sans-serif;
    transition: opacity 0.7s ease;
}

.xp-wrapper {
    text-align: center;
    width: 300px;
}

.xp-logo {
    color: white;
    margin-bottom: 40px;
    position: relative;
}

.xp-brand {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: left;
    margin-left: 65px;
}

.xp-product {
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: -1px;
}

.xp-product span {
    color: #ff6600;
    font-size: 1rem;
    vertical-align: top;
    margin-left: 5px;
    font-style: normal;
}

/* The Loading Track */
.xp-loader-container {
    width: 200px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 4px;
    margin: 0 auto;
    padding: 2px;
    position: relative;
    overflow: hidden;
}

/* The 3 blue blocks */
.xp-loader-bar {
    display: flex;
    gap: 2px;
    position: absolute;
    height: 14px;
    animation: xp-slide 2s linear infinite;
}

.xp-segment {
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #2d68d2, #6597e8, #2d68d2);
    border-radius: 1px;
}

@keyframes xp-slide {
    0% { left: -50px; }
    100% { left: 210px; }
}

.xp-footer {
    position: absolute;
    bottom: 50px;
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
}

.xp-mini-logo {
    width: 30px;
    filter: grayscale(1) brightness(2); /* Makes logo white/silver for the dark screen */
    margin-bottom: 10px;
}

/* Windows XP Preloader with Logo Integration */
.xp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Tahoma", "Verdana", sans-serif;
    transition: opacity 0.7s ease;
}

.xp-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.xp-main-logo {
    width: 180px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
    /* Optional: Brightens the logo for the black background */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)); 
}

.xp-brand-text {
    color: white;
    text-align: center;
}

.xp-brand {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.xp-product {
    font-size: 2.8rem;
    font-weight: bold;
    font-style: italic;
}

.xp-product span {
    color: #ff6600; /* The classic orange XP text */
    font-size: 1.2rem;
    vertical-align: top;
    font-style: normal;
}

/* Loader Bar Styling */
.xp-loader-container {
    width: 220px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    padding: 2px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.xp-loader-bar {
    display: flex;
    gap: 3px;
    position: absolute;
    height: 16px;
    animation: xp-slide 2s linear infinite;
}

.xp-segment {
    width: 12px;
    height: 100%;
    background: linear-gradient(to bottom, #2d68d2, #6597e8, #2d68d2);
    border-radius: 2px;
}

@keyframes xp-slide {
    0% { left: -60px; }
    100% { left: 230px; }
}

.xp-footer {
    position: absolute;
    bottom: 40px;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.5;
}

.offline-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #b45309;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10000;
    animation: slideDown 0.4s;
}

.offline-banner__dot {
    line-height: 1;
}

.offline-banner__text {
    line-height: 1.4;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}