@font-face {
    font-family: 'LadybirdFont';
    src: url('fonts/NewFont-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'LadybirdFont';
    margin: 0;
   letter-spacing: 0px;
    color: #000;
    background-color: #fff;
}


header {
    background-color: #fff;
    text-align: center;
    padding: 20px 10px;
    color: #000;
}

header h1 {
    font-size: 4rem;
    margin: 0;
    color: #b00505; 
}
header p {
    font-size: 1.5rem;
    margin: 0;
    color: #070707; 
}


nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 2px solid #e0e0e0;
    background-color: #fff;
}

nav a {
    color: #000;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

nav a:hover {
    color: #b00505; 
}

.hero {
    background: url('images/ppp.png') no-repeat center center/cover; 
    height: 500px; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #000; 
    background-color: #fff; 
    position: relative;
    overflow: hidden;
    background-attachment: fixed; 
    background-size: 100%;
    transition: background-size 0.2s ease-out;
}

.hero:hover {
    background-size: 105%; 
}

.hero h2 {
    font-size: 2.5rem; 
    background: rgba(255, 255, 255, 0.7); 
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #e0e0e0; 
}

.intro, .products {
    text-align: center;
}


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

.products img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    border: 3px solid #000;
}

.products h3 {
    color: #b00505; 
}


.btn {
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    background-color: #fff;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 20px;
    font-weight: bold;
}

.btn:hover {
    background-color: #b00505;
    color: #fff;
    border-color: #b00505;
}


footer {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 20px 10px;
    border-top: 2px solid #e0e0e0;
}

footer p {
    margin: 0;
}

footer a {
    color: #b00505; 
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.q { font-family: 'Times New Roman', Times, serif;}