/* General Styles */
body {
    font-family: 'Patrick Hand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    font-size: 1.6em;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 50px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 20px;
    background-color: #fff3e6;
}

.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 5px;
}

.hero img {
    max-width: 80%;
    height: auto;
    margin: 20px 0;
}

.hero-buttons button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

/* Other Buttons*/
.hero-buttons button3d {
    background: #ff6f61;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 3px 4px #5AECF4;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-buttons button3d:active {
    transform: translateY(6px);
    box-shadow: 4px 1px #5AECF4;
}

.hero-buttons buttonretro {
    background: #ff6f61;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    border: 2px solid #333;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.hero-buttons buttonretro:hover {
    background: #ffab61;
    transform: scale(1.05);
}



/* Categories Section */
.categories {
    padding: 20px 20px;
    background-color: #f0f8ff;
}

.categories h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.category {
    text-align: center;
    max-width: 400px;
}

.category img {
    width: 100%;
    border-radius: 0px;
}

/* Spotlight Section */
.spotlight {
    padding: 20px 20px;
    background-color: #fff;
    text-align: center;
}

.carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.card img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 20px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.about img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* Testimonials Section */
.testimonials {
    padding: 20px 20px;
    background-color: #fff3e6;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial {
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    padding: 20px 20px;
    background-color: #ffefd5;
    text-align: center;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter input {
    margin: 10px 0;
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.newsletter button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ffefd5;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer .social-media img {
    height: 20px;
    margin: 0 5px;
}