diff --git a/public/images/baklava.png b/public/images/baklava.png new file mode 100644 index 0000000..c9e482c Binary files /dev/null and b/public/images/baklava.png differ diff --git a/public/images/gold.png b/public/images/gold.png new file mode 100644 index 0000000..925ff7e Binary files /dev/null and b/public/images/gold.png differ diff --git a/public/images/hero_luxury.webp b/public/images/hero_luxury.webp new file mode 100644 index 0000000..0c80c35 Binary files /dev/null and b/public/images/hero_luxury.webp differ diff --git a/public/images/kebab.png b/public/images/kebab.png new file mode 100644 index 0000000..9726880 Binary files /dev/null and b/public/images/kebab.png differ diff --git a/public/images/logo.png b/public/images/logo.png new file mode 100644 index 0000000..650b408 Binary files /dev/null and b/public/images/logo.png differ diff --git a/src/app/favicon.ico b/src/app/favicon.ico index 718d6fe..e9ee432 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/app/globals.css b/src/app/globals.css index 582f1db..211f067 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -35,29 +35,132 @@ h1, h2, h3, h4 { .grand-text { font-family: var(--font-heading); - background: linear-gradient(to bottom, #d3cab3, #c49c5c); + background: linear-gradient( + 45deg, + #d3cab3 0%, + #d28839 25%, + #c49c5c 50%, + #d28839 75%, + #d3cab3 100% + ); + background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; + position: relative; + animation: colorShift 8s linear infinite; } +@keyframes colorShift { + 0% { background-position: 0% center; } + 100% { background-position: 200% center; } +} + + +.shine-effect { + position: relative; + overflow: hidden; +} + +.shine-effect::after { + content: ''; + position: absolute; + top: 0; + left: -100%; + width: 50%; + height: 100%; + background: linear-gradient( + to right, + rgba(255, 255, 255, 0) 0%, + rgba(210, 136, 57, 0.4) 50%, + rgba(255, 255, 255, 0) 100% + ); + transform: skewX(-25deg); + animation: shine 6s infinite; +} + +@keyframes shine { + 0% { left: -100%; } + 20% { left: 100%; } + 100% { left: 100%; } +} + + .glass-card { - background: rgba(20, 20, 20, 0.6); - backdrop-filter: blur(10px); - border: 1px solid rgba(210, 136, 57, 0.2); - border-radius: 20px; - transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); + background: rgba(15, 15, 15, 0.7); + backdrop-filter: blur(15px); + border: 1px solid rgba(210, 136, 57, 0.15); + border-radius: 24px; + transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; position: relative; + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); +} + +.glass-card::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + height: 1px; + background: linear-gradient(90deg, transparent, rgba(210, 136, 57, 0.5), transparent); + z-index: 5; + opacity: 0.5; } .glass-card:hover { - transform: translateY(-10px); - border-color: rgba(210, 136, 57, 0.6); - box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(210, 136, 57, 0.1); + transform: translateY(-12px) scale(1.02); + border-color: rgba(210, 136, 57, 0.8); + box-shadow: + 0 25px 50px rgba(0, 0, 0, 0.7), + 0 0 30px rgba(210, 136, 57, 0.25); } +.glass-card:hover .card-frame { + opacity: 1; + inset: 12px; +} + +.card-frame { + position: absolute; + inset: 24px; + border: 1px solid rgba(210, 136, 57, 0.3); + pointer-events: none; + z-index: 10; + opacity: 0; + transition: all 0.6s ease; + border-radius: 12px; +} + +.nav-link { + color: var(--color-heading); + text-decoration: none; + transition: color 0.3s ease; + position: relative; +} + +.nav-link:hover { + color: var(--color-gold); +} + +.nav-link::after { + content: ''; + position: absolute; + bottom: -4px; + left: 0; + width: 0; + height: 1px; + background-color: var(--color-gold); + transition: width 0.3s ease; +} + +.nav-link:hover::after { + width: 100%; +} + + .overlay { position: absolute; top: 0; @@ -87,3 +190,105 @@ h1, h2, h3, h4 { transform: scale(1.05); box-shadow: 0 10px 20px rgba(210, 136, 57, 0.3); } + +/* Layout Utilities */ +.main-container { + min-height: 100vh; + position: relative; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + padding: 24px; + overflow: hidden; + background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%); +} + +@media (min-width: 768px) { + .main-container { + padding: 48px; + } +} + +.content-wrapper { + position: relative; + z-index: 10; + width: 100%; + max-width: 1152px; /* 6xl */ + margin: 0 auto; +} + +.hero-section { + text-align: center; + margin-bottom: 64px; +} + +.locations-grid { + display: grid; + grid-template-columns: 1fr; + gap: 40px; + margin-top: 48px; +} + +@media (min-width: 768px) { + .locations-grid { + grid-template-columns: 1fr 1fr; + } +} + +@media (min-width: 1024px) { + .locations-grid { + gap: 64px; + } +} + +/* Card Specifics */ +.card-image-container { + position: relative; + height: 384px; /* 24rem / 96 */ + overflow: hidden; +} + +@media (max-width: 767px) { + .card-image-container { + height: 320px; + } +} + +.card-content { + padding: 40px; + border-top: 1px solid rgba(176, 124, 75, 0.1); +} + +/* Text & Typography */ +.text-center { text-align: center; } +.text-gold { color: var(--color-gold); } +.flex-center { display: flex; justify-content: center; align-items: center; } +.flex-col { display: flex; flex-direction: column; } +.gap-2 { gap: 8px; } +.mb-2 { margin-bottom: 8px; } +.mb-3 { margin-bottom: 12px; } +.mb-4 { margin-bottom: 16px; } +.mb-6 { margin-bottom: 24px; } +.mb-8 { margin-bottom: 32px; } +.mt-12 { margin-top: 48px; } +.mt-24 { margin-top: 96px; } + +.footer { + margin-top: 128px; + text-align: center; + padding-bottom: 48px; +} + +.decorative-blob { + position: fixed; + border-radius: 50%; + filter: blur(100px); + pointer-events: none; + background: rgba(210, 136, 57, 0.1); + z-index: 0; +} + +.blob-1 { top: -16px; left: -16px; width: 256px; height: 256px; } +.blob-2 { bottom: -16px; right: -16px; width: 384px; height: 384px; } + diff --git a/src/app/page.tsx b/src/app/page.tsx index 1f35c10..d51df27 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { motion } from "framer-motion"; +import { motion, Variants } from "framer-motion"; import Image from "next/image"; import { MapPin, Globe, ExternalLink, Utensils } from "lucide-react"; @@ -10,19 +10,50 @@ const locations = [ name: "Burlington", address: "2444 New St, Burlington, ON L7R 1J6", image: "/images/burlington.png", - url: "#", // Placeholder URL - description: "Experience the authentic flavors of Turkey in the heart of Burlington. Traditional recipes meet modern elegance.", + url: "#", + description: "Discover the Anatolian fire-kissed flavours in Burlington. Where elegance meets authentic Turkish taste for a truly memorable dining experience.", }, { id: "kitchener", name: "Kitchener", address: "1600 Ottawa St S, Kitchener, ON N2E 3K1", image: "/images/kitchener.png", - url: "#", // Placeholder URL - description: "Our Kitchener location brings you a unique Mediterranean dining experience with a touch of authentic Turkish hospitality.", + url: "#", + description: "Experience the charcoal-grilled kebabs and signature classics in Kitchener. A refined atmosphere meets time-tested traditional Mediterranean recipes.", }, ]; +const titleLetters = "Antalya".split(""); + +const container: Variants = { + hidden: { opacity: 0 }, + visible: (i = 1) => ({ + opacity: 1, + transition: { staggerChildren: 0.12, delayChildren: 0.04 * i }, + }), +}; + +const child: Variants = { + visible: { + opacity: 1, + y: 0, + transition: { + type: "spring", + damping: 12, + stiffness: 100, + }, + }, + hidden: { + opacity: 0, + y: 20, + transition: { + type: "spring", + damping: 12, + stiffness: 100, + }, + }, +}; + export default function Home() { const handleLocationSelect = (url: string) => { if (url !== "#") { @@ -33,127 +64,196 @@ export default function Home() { }; return ( -
+
{/* Background Hero */} -
+
Grand Interior -
+
+
{/* Content */} -
+
-
- - Premium Cuisine -
+
+ + + EXPERIENCE UNFORGETTABLE TURKISH FUSION + +
+ + + + Antalya Logo -

- Antalya -

-

- "Taste the Mediterranean Legacy. Select one of our prestigious locations to begin your journey." -

+ + {titleLetters.map((letter, index) => ( + + {letter} + + ))} + + + + "Savour a journey through Turkish culture crafted on the grill. Traditional charcoal-grilled kebabs, handcrafted dishes, and warm hospitality since 2010." + -
+
{locations.map((loc, index) => ( handleLocationSelect(loc.url)} > -
+
+
{loc.name}
-
+
- +
-
-
- - Signature Spot +
+
+ + + Signature Spot +
-

{loc.name}

-
- - {loc.address} +

+ {loc.name} +

+
+ + {loc.address}
-
-

+

+

{loc.description}

-
- Explore House -
- +
+ + Explore House + +
+
))}
- - -
-

- Turkish Excellence Since 2010 -

- -

- © {new Date().getFullYear()} ANTALYA RESTAURANT GROUP. ALL RIGHTS RESERVED. -

-
{/* Decorative Elements */} -
-
+
+
); }