@font-face {
  font-family: 'MyCustomFont';
  src: url('font/DVN-PTSans-Regular-akflme.ttf') format('truetype'),
       url('font/DVN-PTSans-Bold-pmfufb.ttf') format('truetype');
}

body {
                margin: 0;
                padding: 0;
                
                background-color: #00805d;
                font-family:  'MyCustomFont','PT Sans', sans-serif;
            }
            .header {
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #de0058;
                height: 100px;
                width: 100%;
                top: 0px;
                transition: all 0.2s ease-in-out;
                position: sticky;
                
            }
            
            .Home-button,.Catalog-button,.FAQ-button,
            .About-button,.Contact-button {
                background-color: #de0058;
                color: rgb(224, 224, 224);
                border: 0 solid #6411ff;
                padding: 15px 30px;
                border-radius: 50px;
                font-size: 16px;
                cursor: pointer;
                margin-right: 20px;
                transition: all 0.3s ease;
                backface-visibility: hidden;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                font-weight: 550;
                will-change: transform;
                
            }
            .middle-section {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                gap: 0;
                position: relative;
            }
            a{
                text-decoration: none;
            }
            .Project-logo {
                height: 80px; 
                width: 80px; 
                margin-right: 30px;
                border-radius: 20px;
            }
            .cart-icon {
                height: 30px; 
                width: 30px; 
                margin-left: 30px;
                transition: all 0.3s ease;
                border: 10px solid transparent;
                border-radius: 10px;

            }
            .cart-icon:hover {
                transform: scale(1.1);
            }
            .Home-button:hover,
            .Catalog-button:hover,
            .About-button:hover,.FAQ-button:hover,
            .Contact-button:hover {
                background-color: #ff3a89;
                box-shadow: 0 4px 20px rgba(136, 136, 136, 0.4);
                transform: scale(1.05);
            }
            .Home-button:active,
            .Catalog-button:active,
            .FAQ-button:active,
            .About-button:active,
            .Contact-button:active {
                background-color: #de0058;
                color: #222;
                transition: all 0.1s ease;
            }

            .cart-icon:active {
                background-color: #ff3a89;              
                transition: all 0.1s ease;
            }


            /* Hide menu button on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin-left: 20px;
}

/* Desktop styles */
.middle-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.Project-logo {
    height: 80px;
    width: 80px;
    margin-right: 30px;
    border-radius: 20px;
}

.cart-icon {
    height: 30px;
    width: 30px;
    margin-left: 30px;
    transition: all 0.3s ease;
    border: 10px solid transparent;
    border-radius: 10px;
}
.cart-icon:hover {
    transform: scale(1.1);
}
.main-content {
    padding: 0px;
    background-image: url('Img/523452345234523452345.webp');
                background-repeat: repeat; 
                background-size: cover;
    display: inline-block;
    
}

/* Responsive styles */
@media (max-width: 800px) {
    .header {
        height: auto;
        padding: 10px 0;
    }
    .main-content {
        padding: 0px;
    }
    .middle-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        gap: 0;
    }
    .menu-toggle {
        display: block;
        margin-left: 16px;
        margin-right: 8px;
        padding: 8px 10px;
        z-index: 101;
        background: none;
    }
    .Project-logo {
        margin-left: 0;
        margin-right: 0;
        padding: 6px 0;
        width: 60px;
        height: 60px;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        background: #de0058;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0,0,0,0.10);
        display: none;
        border-radius: 0 0 12px 12px;
    }
    .nav-links.show {
        display: flex;
    }
    .cart-icon {
        margin: 0 16px 0 0;
        width: 28px;
        height: 28px;
        align-self: center;
        /* Keeps it at the right edge with padding */
    }
    .Home-button, .Catalog-button, .FAQ-button,
    .About-button, .Contact-button {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 16px 0;
        font-size: 16px;
        border-radius: 0;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 500px) {
                .middle-section {
                    gap: 8px;
                }
                .Home-button, .Catalog-button, .FAQ-button,
                .About-button, .Contact-button {
                    font-size: 12px;
                    padding: 8px 10px;
                    max-width: 100%;
                }
                .main-content {
                    padding: 10px;
                }
            }

/* Hamburger (menu-toggle) active/clicked style */
.menu-toggle:active {
    background-color: #de0058;
    color: #222;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(136,136,136,0.18);
    outline: none;
    transition: background 0.2s, color 0.2s;
}
.footer-section.links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 8px;
}
.footer-links-list a {
    color: #3f42ff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links-list a:hover {
    color: #fff;
    text-decoration: underline;
}
.hamburger {
    position: fixed;      /* or absolute if you prefer */
    top: 24px;
    right: 24px;
    z-index: 1001;        /* higher than .main-content and overlays */
    background: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 900px) {
    .hamburger {
        display: none;
    }
}
#header-placeholder {
    position: relative;
    z-index: 1000;
}
