<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Giru's Café - Elegância Culinária na Guarda</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body, html {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
color: #333333; /* Dark Gray */
line-height: 1.6;
}
header {
background-color: #FFFFFF; /* White */
position: fixed;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 24px;
font-weight: 600;
}
.nav-links a {
text-decoration: none;
color: #333333; /* Dark Gray */
margin-left: 20px;
font-size: 14px;
text-transform: uppercase;
}
.hero {
height: 100vh;
background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fi.pinimg.com%2Foriginals%2F81%2Fcb%2Fc6%2F81cbc6420485d22e563db40885369c2a.jpg&f=1&nofb=1&ipt=c2bfc053dd0a53be9b5edff3f6222cec54974500d50dc7b53ab8492eda9542d6&ipo=images'); /* Replace with actual image URL */
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}
.hero-content {
text-align: center;
color: #FFFFFF; /* White */
background-color: rgba(0,0,0,0.8);
padding: 40px;
}
h1 {
font-family: 'Cormorant Garamond', serif;
font-size: 48px;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 12px 24px;
background-color: #FFA500; /* Yellow */
color: #FFFFFF; /* White */
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn:hover {
background-color: #FF8C00; /* Darker Yellow */
}
.section {
padding: 80px 40px;
}
h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 36px;
margin-bottom: 40px;
text-align: center;
}
.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}
.menu-item {
text-align: center;
}
.menu-item img {
width: 100%;
height: auto; /* Maintain aspect ratio */
}
.menu-item h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 24px;
margin-top: 10px; /* Space above title */
}
.menu-item p {
margin-bottom: 10px; /* Space below description */
}
footer {
background-color: #333333; /* Dark Gray */
color: #FFFFFF; /* White */
text-align: center;
padding: 40px 20px;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">Giru's Café</div>
<div class="nav-links">
<a href="https://invisuais.overslep.pt/main">Menu</a>
<a href="#contact">Contacto</a>
</div>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h1>Bem-vindo ao Giru's Café</h1>
<p>A sua pausa o nosso café, combinação perfeita</p>
<a href="https://invisuais.overslep.pt/main" class="btn">Descubra o Menu</a>
</div>
</section>
<footer id="contact">
<p>© 2024 Giru's Café. Todos os direitos reservados.</p>
<p>Rua Vasco da Gama, Guarda | Tel.: (271) 123-456 | Email.: [email protected]</p>
</footer>
<!-- Add your JavaScript here if needed -->
</body>
</html>