/* --- Global Styles --- */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    /* MIX: Popeyes Orange (#bd0018) to McDonald's Red (#ff8200) */
    background: linear-gradient(135deg, #bd0018 0%, #ff8200 100%);
    background-attachment: fixed; /* Keeps the color smooth as you scroll */
    color: #4a4a4a;
}

/* --- Header --- */
header {
    text-align: center;
	font-family: papyrus;
	font-size: 30px;
    padding: 50px 20px;
    /* McDonald's Gold/Yellow accent */
    background: #ffbc0d; 
    background-image: radial-gradient(#dba00a 1px, transparent 1px);
    background-size: 20px 20px;
    color: #ff0000; /* McDonald's Red Text */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 4px solid #ffffff;
}

/* li style */
.list-style{
	font-family: papyrus; 
	color: #ff0000;
}

/* --- Floating Home Button (Popeyes Blue Accent) --- */
.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #004b8d; /* Popeyes Blue */
    color: white;
    text-decoration: none;
    font-size: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffbc0d; /* Golden Border */
    margin-bottom: 20px;
}

.home-button:hover {
    transform: scale(1.1) rotate(-10deg);
    background-color: #ffbc0d;
    color: #ff8200;
}

/* --- Main Container --- */
main {
    max-width: 800px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.95); /* Slight transparency to see background */
    padding: 30px;
    border-radius: 15px;
    border-top: 10px solid #ffbc0d; /* Golden arch top */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* --- The Recipe List --- */
.recipe-list {
    list-style: none;
    padding: 0;
}

.recipe-list li {
    margin: 15px 0;
    padding: 20px;
    background: white;
    border-left: 5px solid #bd0018; /* Popeyes Orange side strip */
    border-radius: 10px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.recipe-list li:hover {
    transform: translateX(10px);
    background: #fffcf0; /* Light McDonald's Yellow tint */
}

/* --- Icons (5-item rotation) --- */
.recipe-list li:nth-child(5n+1)::before { content: "🍗"; margin-right: 15px; font-size: 1.5rem; }
.recipe-list li:nth-child(5n+2)::before { content: "🥩"; margin-right: 15px; font-size: 1.5rem; }
.recipe-list li:nth-child(5n+3)::before { content: "🧅"; margin-right: 15px; font-size: 1.5rem; }
.recipe-list li:nth-child(5n+4)::before { content: "🧄"; margin-right: 15px; font-size: 1.5rem; }
.recipe-list li:nth-child(5n+5)::before { content: "🐟"; margin-right: 15px; font-size: 1.5rem; }

.recipe-list a {
    text-decoration: none;
    color: #ff8200; /* McDonald's Red for links */
    font-weight: bold;
    font-size: 1.25rem;
}


/* --- Recipe Page Titles --- */
h3 {
    color: #bd0018; /* Popeyes Orange */
    border-bottom: 3px solid #ffbc0d;
    padding-bottom: 5px;
    display: inline-block;
}

.share-btn-big {
    background-color: #ffbc0d; /* McDonald's Gold */
    color: #bd0018; /* McDonald's Red */
    border: 3px solid #004b8d; /* Popeyes Blue Border */
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px; /* Pill shape like a sauce packet */
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0px #bd0018; /* 3D effect */
    text-transform: uppercase;
}

.share-btn-big:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #bd0018;
    background-color: #ff8200; /* Switches to Popeyes Orange on hover */
    color: white;
}

.share-btn-big:active {
    transform: translateY(2px);
    box-shadow: 0 0px 0px #bd0018;
}


.ingredients-list {
    list-style-type: none;
    padding-left: 0;
}

.ingredients-list li {
    background: #fff8e1; /* Soft yellow */
	font-family: papyrus;
    margin-bottom: 5px;
    padding: 8px;
    border-radius: 5px;
    border-left: 4px solid #bd0018; /* McDonald's Red */
}

.prep-steps li {
	background: #fff8e1; /* Soft yellow */
    font-family: papyrus;
	margin-bottom: 15px;
	border-radius: 5px;
	padding: 8px;
    padding-left: 10px;
	border-left: 4px solid #bd0018; /* McDonald's Red */
}