diff --git a/src/app/antalya-restaurant-menu/MenuContent.tsx b/src/app/antalya-restaurant-menu/MenuContent.tsx
index 775a730..7171f63 100644
--- a/src/app/antalya-restaurant-menu/MenuContent.tsx
+++ b/src/app/antalya-restaurant-menu/MenuContent.tsx
@@ -136,8 +136,8 @@ export default function MenuPage() {
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
>
-
- All Menu
+
+ All Menu
{/* Category Tabs */}
@@ -153,11 +153,11 @@ export default function MenuPage() {
- {section.category}
+ {section.category}
))}
diff --git a/src/app/antalya-restaurant-menu/menu.module.css b/src/app/antalya-restaurant-menu/menu.module.css
index b7e13cd..da14449 100644
--- a/src/app/antalya-restaurant-menu/menu.module.css
+++ b/src/app/antalya-restaurant-menu/menu.module.css
@@ -89,61 +89,41 @@
.tabs {
display: flex;
justify-content: center;
- gap: 1.5rem;
+ gap: 1rem;
margin-bottom: 5rem;
flex-wrap: wrap;
- padding: 0 1rem;
}
.tab {
background: transparent;
- border: none;
+ border: 2px solid #441109;
color: #441109;
- padding: 10px;
- font-size: 0.95rem;
+ padding: 8px 20px 8px 8px;
+ font-size: 1rem;
cursor: pointer;
- transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
+ transition: all 0.3s ease;
font-family: var(--font-playfair);
text-transform: uppercase;
letter-spacing: 1px;
- font-weight: 700;
- display: flex;
- flex-direction: column;
+ font-weight: 600;
+ border-radius: 50px;
+ display: inline-flex;
align-items: center;
- gap: 12px;
- width: 100px;
+ gap: 10px;
}
.tabImage {
- width: 70px;
- height: 70px;
border-radius: 50%;
object-fit: cover;
- border: 3px solid #fff;
- box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
- transition: all 0.4s ease;
+ border: 2px solid #fff;
}
-.tabText {
- text-align: center;
- line-height: 1.2;
- transition: color 0.3s ease;
-}
-
-.tab:hover .tabImage,
-.activeTab .tabImage {
- transform: scale(1.1) translateY(-5px);
- border-color: #c49c5c;
- box-shadow: 0 8px 25px rgba(196, 156, 92, 0.4);
-}
-
-.tab:hover .tabText,
-.activeTab .tabText {
- color: #c49c5c;
-}
-
-.activeTab .tabImage {
- border-width: 4px;
+.tab:hover,
+.activeTab {
+ background-color: #441109;
+ color: #f5e6d3;
+ transform: translateY(-2px);
+ border: 2px solid #441109;
}
.menuGrid {
@@ -373,19 +353,25 @@
@media (max-width: 768px) {
.tabs {
- gap: 1rem;
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 0.8rem;
margin-bottom: 2.5rem;
+ padding: 0 10px;
}
.tab {
- width: 85px;
- padding: 5px;
+ padding: 6px 10px 6px 6px;
font-size: 0.8rem;
+ justify-content: center;
+ text-align: center;
+ width: 100%;
+ border-radius: 12px;
}
.tabImage {
- width: 60px;
- height: 60px;
+ width: 25px;
+ height: 25px;
}
.sectionHeading {
@@ -395,23 +381,18 @@
@media (max-width: 480px) {
.tabs {
- gap: 0.8rem;
+ grid-template-columns: repeat(2, 1fr);
+ gap: 0.6rem;
}
.tab {
- width: 75px;
- gap: 8px;
font-size: 0.75rem;
+ padding: 5px 8px 5px 5px;
}
.tabImage {
- width: 50px;
- height: 50px;
- border-width: 2px;
- }
-
- .activeTab .tabImage {
- border-width: 3px;
+ width: 22px;
+ height: 22px;
}
.hero {
diff --git a/src/app/book-a-table/ContactContent.tsx b/src/app/book-a-table/ContactContent.tsx
index a4ea2ea..c2a165a 100644
--- a/src/app/book-a-table/ContactContent.tsx
+++ b/src/app/book-a-table/ContactContent.tsx
@@ -301,7 +301,7 @@ export default function ContactContent() {
{formErrors.captcha &&
{formErrors.captcha}}
diff --git a/src/app/catering-services-ontario/catering.module.css b/src/app/catering-services-ontario/catering.module.css
index 4e33c32..81549ec 100644
--- a/src/app/catering-services-ontario/catering.module.css
+++ b/src/app/catering-services-ontario/catering.module.css
@@ -130,7 +130,7 @@
.smallHeading3 {
font-size: var(--small-text-size);
- color: var(--color-paragraph);
+ color: #441109;
font-family: var(--font-lato);
font-weight: 600;
letter-spacing: 2px;
@@ -468,7 +468,7 @@
.mainHeading {
font-family: var(--font-playfair);
font-size: var(--main-heading-size);
- color: #c49c5c;
+ color: #441109;
line-height: 1.3;
font-weight: 700;
margin-bottom: 1.5rem;
@@ -476,7 +476,7 @@
.smallHeading {
font-size: var(--small-text-size);
- color: #441123;
+ color: #c49c5c;
font-family: var(--font-lato);
font-weight: 600;
letter-spacing: 2px;
diff --git a/src/components/BookTable/BookTable.tsx b/src/components/BookTable/BookTable.tsx
index 81027a2..15c7e60 100644
--- a/src/components/BookTable/BookTable.tsx
+++ b/src/components/BookTable/BookTable.tsx
@@ -236,7 +236,7 @@ export default function BookTable() {
{formErrors.captcha && {formErrors.captcha}}
diff --git a/src/components/Menu/Menu.module.css b/src/components/Menu/Menu.module.css
index a2a4961..1784cf6 100644
--- a/src/components/Menu/Menu.module.css
+++ b/src/components/Menu/Menu.module.css
@@ -207,7 +207,7 @@
.description {
font-size: 16px;
- color: #430f0c;
+ color: #f5e6d3;
line-height: 1.5;
font-family: var(--font-lato);
margin: 0;