/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Futura font from Google Fonts (or system) */
@import url('https://fonts.googleapis.com/css2?family=Futura:wght@400;700&display=swap');

/* Body Styling */
body {
    font-family: 'Futura', sans-serif;
    background-color: #2b2b2b;  /* Dark goth background */
    color: #e5e5e5;  /* Light grey text for contrast */
    line-height: 1.6;
    padding-bottom: 50px;
}

/* Cute Goth Colors */
:root {
    --primary-color: #d83668;  /* Cute dark pink */
    --accent-color: #6a0dad;   /* Gothic purple */
    --background-dark: #1c1c1c;
    --background-light: #3d3d3d;
}

/* Header and Hero Section */
header {
    background-color: var(--background-dark);
    color: var(--primary-color);
    text-align: center;
    padding: 20px 0;
    border-bottom: 3px solid var(--accent-color);
}

.hero {
    padding: 50px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    font-style: italic;
}

/* Navigation Menu */
nav ul {
    list-style-type: none;
    margin: 20px 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* About Section */
#about {
    padding: 50px;
    background-color: var(--background-light);
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
}

#about p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #e5e5e5;
}

/* Gallery Section */
#gallery {
    background-color: var(--background-dark);
    padding: 50px 0;
}

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

.card {
    width: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--accent-color);
    border: 3px solid var(--primary-color);
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid var(--primary-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

/* Recipe Section */
#recipes {
    background-color: var(--background-light);
    padding: 50px 0;
}

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

.recipe-card {
    width: 300px;
    padding: 20px;
    background-color: var(--background-dark);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--accent-color);
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 50px;
    background-color: var(--background-dark);
    color: #e5e5e5;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--background-light);
    color: var(--primary-color);
    border-top: 3px solid var(--accent-color);
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Button Hover Effects */
button, a {
    transition: background-color 0.3s ease, color 0.3s ease;
}
