File size: 1,238 Bytes
4e5a272 79665d1 4e5a272 79665d1 4e5a272 79665d1 4e5a272 79665d1 4e5a272 79665d1 4e5a272 79665d1 4e5a272 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');
:root {
--primary-color: #92400e;
--secondary-color: #d97706;
--accent-color: #fbbf24;
--light-color: #fef3c7;
--dark-color: #7c2d12;
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #fff;
color: #333;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
color: var(--dark-color);
}
/* Hero section styling */
section:first-of-type {
background-image: url('http://static.photos/pub/1200x630/456');
background-size: cover;
background-position: center;
}
/* Button styling */
.bg-amber-700 {
background-color: #b45309;
}
.bg-amber-700:hover {
background-color: #92400e;
}
/* Menu section styling */
#menu .border-b-2 {
border-color: var(--secondary-color);
}
#menu .font-bold.text-amber-700 {
color: var(--dark-color);
}
/* Events section styling */
#events {
background-color: #ffedd5;
}
/* Responsive design */
@media (max-width: 768px) {
.text-5xl {
font-size: 2.5rem;
}
.text-4xl {
font-size: 2rem;
}
.text-2xl {
font-size: 1.5rem;
}
} |